Commit 7c6bf28c authored by 徐一鸣's avatar 徐一鸣

流程管理列表交互

parent 0ce6c5de
...@@ -340,7 +340,11 @@ export default { ...@@ -340,7 +340,11 @@ export default {
_self.showMoreActionList = true; _self.showMoreActionList = true;
_self.moreActionList = moreActionList _self.moreActionList = moreActionList
.filter((item) => { .filter((item) => {
return item.showRule && item.showRule(row); if (item.showRule) {
return item.showRule(row);
} else {
return true;
}
}) })
.map((item) => ({ .map((item) => ({
id: row.id, id: row.id,
......
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