Commit 3fb94260 authored by 徐一鸣's avatar 徐一鸣

服务管理列表优化

parent e7b88dea
......@@ -537,9 +537,8 @@ export default {
width: 160,
actionList: [
{
label: "审批",
disabledRule(item) {
return item.apply_status === "已审批";
getLabel(item) {
return item.apply_status === "已审批" ? "详情" : "审批";
},
callback: this.detailItem,
},
......@@ -841,9 +840,8 @@ export default {
width: 160,
actionList: [
{
label: "审批",
disabledRule(item) {
return item.apply_status === "已审批";
getLabel(item) {
return item.apply_status === "已审批" ? "详情" : "审批";
},
callback: this.detailItem,
},
......
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