From 1177e0550f0e80e759664d98d83b2bcef5a6acc0 Mon Sep 17 00:00:00 2001 From: 王震 <10952869+daywangzhen@user.noreply.gitee.com> Date: 星期一, 25 十二月 2023 17:24:09 +0800 Subject: [PATCH] Merge branch 'master' of http://114.132.189.42:9002/r/mes-ocea-before --- src/views/technology/routing/index.vue | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/technology/routing/index.vue b/src/views/technology/routing/index.vue index 748d0bb..8c9a5b9 100644 --- a/src/views/technology/routing/index.vue +++ b/src/views/technology/routing/index.vue @@ -16,13 +16,13 @@ <el-button v-if="permissions.technology_routing_add" type="primary" @click="addOrUpdateHandle">鏂板</el-button> <el-button @click="() => {this.approveHandle('ACCEPT')}" - :disabled="uniqueStateArr.includes('01draft')" + :disabled="!uniqueStateArr.includes('01draft')" v-if="permissions.technology_routing_accept">鎵瑰噯</el-button> <el-button @click="() => {this.approveHandle('REVOKE')}" - :disabled="uniqueStateArr.includes('02accepted')" + :disabled="!uniqueStateArr.includes('02accepted')" v-if="permissions.technology_routing_revoke">鎾ゅ洖</el-button> <el-button @click="() => {this.approveHandle('CANCEL')}" - :disabled="uniqueStateArr.includes('02accepted')" + :disabled="!uniqueStateArr.includes('02accepted')" v-if="permissions.technology_routing_cancel">鎷掔粷</el-button> <el-button @click="copyRouting" v-if="permissions.technology_routing_cancel">澶嶅埗</el-button> -- Gitblit v1.9.3