From 2518e47a3ac999978fbf14612c967c3bbf421d25 Mon Sep 17 00:00:00 2001 From: zss <zss@example.com> Date: 星期五, 17 十一月 2023 13:31:46 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- src/views/plan/outsourcingorder/index.vue | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/plan/outsourcingorder/index.vue b/src/views/plan/outsourcingorder/index.vue index e710c6d..2a82f99 100644 --- a/src/views/plan/outsourcingorder/index.vue +++ b/src/views/plan/outsourcingorder/index.vue @@ -21,9 +21,9 @@ <template v-for="item in stateTagArr"> <el-dropdown-item :command="item.command" - :disabled="item.disabled" - >{{ item.eventName }}</el-dropdown-item - > + :disabled="item.disabled"> + {{ item.eventName }} + </el-dropdown-item> </template> </el-dropdown-menu> </el-dropdown> @@ -33,7 +33,7 @@ </el-button> <el-dropdown-menu slot="dropdown"> <template v-for="item in oaStateTagArr"> - <el-dropdown-item :command="item.command" v-if="item.isShow" + <el-dropdown-item :key="item" :command="item.command" v-if="item.isShow" >{{ item.eventName }} </el-dropdown-item> </template> -- Gitblit v1.9.3