Commit 24147b2c authored by 仇晓婷's avatar 仇晓婷

过滤流程

parent 1c2741cc
......@@ -377,10 +377,13 @@ export default {
let data = {
pageIndex: 1,
pageSize: 100,
conditions: [],
conditions: [
{ fieldName: "key", fieldValue: "文档", conditionalType: "name" },
],
};
Api.getpaged(data).then((r) => {
if (r.result) {
console.log(r);
this.workFlows = r.result.items;
}
});
......
......@@ -354,7 +354,9 @@ export default {
let data = {
pageIndex: 1,
pageSize: 100,
conditions: [],
conditions: [
{ fieldName: "key", fieldValue: "文档", conditionalType: "name" },
],
};
Api.getpaged(data).then((r) => {
if (r.result) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment