From a0431deb4d557cd50d304df885a275edf1390f56 Mon Sep 17 00:00:00 2001
From: yuxc <yuxc@vci-tech.com>
Date: 星期四, 16 一月 2025 17:34:32 +0800
Subject: [PATCH] 1、修改属性报错修护。 2、修改用户信息增加个人信息处修改判断处理。
---
Source/plt-web/plt-web-ui/src/components/dynamic-components/dynamic-button.vue | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/Source/plt-web/plt-web-ui/src/components/dynamic-components/dynamic-button.vue b/Source/plt-web/plt-web-ui/src/components/dynamic-components/dynamic-button.vue
index e7b8b47..2bc22b3 100644
--- a/Source/plt-web/plt-web-ui/src/components/dynamic-components/dynamic-button.vue
+++ b/Source/plt-web/plt-web-ui/src/components/dynamic-components/dynamic-button.vue
@@ -7,6 +7,7 @@
<el-button :key="item.oid"
:type="item.paramVOS && item.paramVOS.btnType ? item.paramVOS.btnType : 'primary'" plain
size="small"
+ class="button-custom-icon"
@click="buttonClick(item)">
<icon-show :name="item.iconPath"></icon-show>{{ item.name }}
</el-button>
@@ -19,6 +20,7 @@
<el-button :key="item.oid"
:type="item.paramVOS.btnType || 'text'" plain
size="small"
+ class="button-custom-icon"
@click="buttonClick(item,scope.row)">
<icon-show v-if="item.iconPath" :name="item.iconPath"></icon-show>
<i v-else :class="item.id === 'edit' ? 'el-icon-edit' : (item.id === 'delete' ||item.id === 'del' ? 'el-icon-delete' : '')"></i>
@@ -36,6 +38,7 @@
:type="item.paramVOS && item.paramVOS.btnType ? item.paramVOS.btnType : 'primary'" plain
plain
size="small"
+ class="button-custom-icon"
@click="buttonClick(item)">
<icon-show :name="item.iconPath"></icon-show>{{ item.name }}
</el-button>
@@ -47,6 +50,7 @@
:type="item.paramVOS && item.paramVOS.btnType ? item.paramVOS.btnType : 'primary'" plain
plain
size="small"
+ class="button-custom-icon"
@click="buttonClick(item)">
<icon-show :name="item.iconPath"></icon-show>{{ item.name }}
</el-button>
@@ -54,6 +58,7 @@
<el-button type="primary"
plain
size="small"
+ class="button-custom-icon"
@click="$emit('refresh')">鍒锋柊</el-button>
</div>
</div>
--
Gitblit v1.9.3