Commit 462cd086 authored by 徐一鸣's avatar 徐一鸣

服务审批页面-已审批的服务,操作字段可变成'详情'

parent 026097db
......@@ -537,11 +537,12 @@ export default {
width: 160,
actionList: [
{
label: "审批",
getLabel(item) {
return item.service_apply_info.approval_status === 1
? "详情"
: "审批";
},
callback: this.approvalItem,
/* disabledRule(item) {
return item.service_apply_info.approval_status === 1;
}, */
},
],
},
......@@ -805,12 +806,13 @@ export default {
width: 160,
actionList: [
{
label: "审批",
getLabel(item) {
return item.service_apply_info.approval_status === 1
? "详情"
: "审批";
},
callback: this.approvalItem,
/* disabledRule(item) {
return item.service_apply_info.approval_status === 1;
}, */
}
},
],
},
];
......
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