From d387848d15a40fb16c8a6eefb007d5f7411c5dbc Mon Sep 17 00:00:00 2001 From: ZhangXianQiang <1135831638@qq.com> Date: 星期日, 28 四月 2024 13:32:27 +0800 Subject: [PATCH] fix:修改图片浏览组件 --- src/views/system/calculate/order/index.vue | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/views/system/calculate/order/index.vue b/src/views/system/calculate/order/index.vue index ceabfcd..6cba56b 100644 --- a/src/views/system/calculate/order/index.vue +++ b/src/views/system/calculate/order/index.vue @@ -57,6 +57,7 @@ icon="el-icon-delete" size="mini" :disabled="multiple" + v-hasPermi="['system:result:remove']" @click="handleDelete" >鍒犻櫎</el-button> </el-col> @@ -66,6 +67,7 @@ plain icon="el-icon-download" size="mini" + v-hasPermi="['system:result:export']" @click="handleExport" >瀵煎嚭</el-button> </el-col> @@ -75,7 +77,8 @@ <el-card class="box-card" v-for="(item) in checkResultList"> <div slot="header" class="clearfix"> <span>{{ checkUnitName }}</span> - <el-button style="float: right; padding: 3px 0" type="text" @click="handleDetail(item)">璇︽儏</el-button> + <el-button style="float: right; padding: 3px 6px" type="text" @click="handleDetail(item)">璇︽儏</el-button> + <el-button style="float: right; padding: 3px 0" type="text" @click="handleDetail(item)">鎵撳垎</el-button> </div> <div class="text item">鑰冩牳<span class="time">{{ examineName }}</span></div> <div class="text item">鑰冩牳棰戠巼<span class="time">{{ "瀛e害鑰冩牳" }}</span></div> @@ -349,7 +352,7 @@ handleDetail(row) { this.detail = row; this.detail.carOnlineRate = '97%'; - this.detailTitle = row.checkUnitName + '鑰冩牳缁撴灉'; + this.detailTitle = '鑰冩牳缁撴灉'; this.detailOpen = true; }, -- Gitblit v1.8.0