From 8611a1ba1696e76cced04ff5d658ba138a05dafd Mon Sep 17 00:00:00 2001
From: zenglf <18502938215@163.com>
Date: 星期六, 19 八月 2023 14:37:32 +0800
Subject: [PATCH] 设备管理前端代码提交 截止 20230819 13:55 分
---
src/components/jeecg/JVxeTable/components/cells/JVxeUserSelectCell.vue | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/src/components/jeecg/JVxeTable/components/cells/JVxeUserSelectCell.vue b/src/components/jeecg/JVxeTable/components/cells/JVxeUserSelectCell.vue
index 4099d53..7e6f237 100644
--- a/src/components/jeecg/JVxeTable/components/cells/JVxeUserSelectCell.vue
+++ b/src/components/jeecg/JVxeTable/components/cells/JVxeUserSelectCell.vue
@@ -21,7 +21,7 @@
@initComp="initComp"/>
<span style="display: inline-block;height:100%;padding-left:14px" v-if="userIds" >
<span @click="openSelect" style="display: inline-block;vertical-align: middle">{{ userNames }}</span>
- <a-icon style="margin-left:5px;vertical-align: middle" type="close-circle" @click="handleEmpty" title="娓呯┖"/>
+ <a-icon v-if="!componentDisabled" style="margin-left:5px;vertical-align: middle" type="close-circle" @click="handleEmpty" title="娓呯┖"/>
</span>
</div>
@@ -119,6 +119,10 @@
},
methods: {
openSelect() {
+ // disabled 涓嶅脊绐�
+ if (this.componentDisabled) {
+ return
+ }
this.$refs.selectModal.showModal()
},
selectOK(rows, idstr) {
--
Gitblit v1.9.3