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

过滤流程

parent 1c2741cc
...@@ -377,10 +377,13 @@ export default { ...@@ -377,10 +377,13 @@ export default {
let data = { let data = {
pageIndex: 1, pageIndex: 1,
pageSize: 100, pageSize: 100,
conditions: [], conditions: [
{ fieldName: "key", fieldValue: "文档", conditionalType: "name" },
],
}; };
Api.getpaged(data).then((r) => { Api.getpaged(data).then((r) => {
if (r.result) { if (r.result) {
console.log(r);
this.workFlows = r.result.items; this.workFlows = r.result.items;
} }
}); });
......
...@@ -354,7 +354,9 @@ export default { ...@@ -354,7 +354,9 @@ export default {
let data = { let data = {
pageIndex: 1, pageIndex: 1,
pageSize: 100, pageSize: 100,
conditions: [], conditions: [
{ fieldName: "key", fieldValue: "文档", conditionalType: "name" },
],
}; };
Api.getpaged(data).then((r) => { Api.getpaged(data).then((r) => {
if (r.result) { 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