From b8e9171376dc9d43a48ee09a29e9142e77b2e303 Mon Sep 17 00:00:00 2001 From: yuxc <yuxc@vci-tech.com> Date: 星期一, 06 一月 2025 16:22:56 +0800 Subject: [PATCH] 1、对操作类型返回增加图标信息。 2、增加导出用户信息excel接口。 --- Source/plt-web/plt-web-ui/src/views/modelingMenu/ui/Aciton/index.vue | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Source/plt-web/plt-web-ui/src/views/modelingMenu/ui/Aciton/index.vue b/Source/plt-web/plt-web-ui/src/views/modelingMenu/ui/Aciton/index.vue index a93c5c3..b403bec 100644 --- a/Source/plt-web/plt-web-ui/src/views/modelingMenu/ui/Aciton/index.vue +++ b/Source/plt-web/plt-web-ui/src/views/modelingMenu/ui/Aciton/index.vue @@ -71,13 +71,13 @@ @refresh-change="handleRefresh" @selection-change="selectChangeHandler" @row-click="rowClickHandler"> - <template slot="plCSClass" slot-scope="{row}"> + <template slot="plImage" slot-scope="{row}"> <span class="avue-icon"> - <icon-show :name="row.plCSClass"></icon-show> + <icon-show :name="row.plImage"></icon-show> </span> </template> - <template slot-scope="{type,disabled}" slot="plCSClassForm"> - <input-icon :disabled="disabled" v-model="form.plCSClass"></input-icon> + <template slot-scope="{type,disabled}" slot="plImageForm"> + <input-icon :disabled="disabled" v-model="form.plImage"></input-icon> </template> <template slot="plTypeType" slot-scope="{row}"> <el-tag :type="row.plTypeType === 'business' ? '' : 'success'"> @@ -298,7 +298,7 @@ }, { label: '鍥炬爣', - prop: 'plCSClass', + prop: 'plImage', width: 80, rules: [ { @@ -487,7 +487,7 @@ this.lastIndex = newIndex; }, () => { - this.selectList = []; + this.selectList = [row]; } ); -- Gitblit v1.9.3