From 0ac2d43fce4d74f6eea5a51a2e16af4e6a536c7c Mon Sep 17 00:00:00 2001 From: WXL <1785969728@qq.com> Date: 星期三, 14 八月 2024 14:19:24 +0800 Subject: [PATCH] 11 --- src/views/project/fund/ethicalExpertFeeApply/index.vue | 14 ++++++++++---- 1 files changed, 10 insertions(+), 4 deletions(-) diff --git a/src/views/project/fund/ethicalExpertFeeApply/index.vue b/src/views/project/fund/ethicalExpertFeeApply/index.vue index 87efc48..e88de4b 100644 --- a/src/views/project/fund/ethicalExpertFeeApply/index.vue +++ b/src/views/project/fund/ethicalExpertFeeApply/index.vue @@ -247,10 +247,11 @@ " size="mini" type="text" - icon="el-icon-delete" @click="handleDelete(scope.row)" v-hasPermi="['project:ethicalfund:delete']" - >鍒犻櫎</el-button + ><span class="button-delete" + ><i class="el-icon-delete"></i>鍒犻櫎</span + ></el-button > <el-button size="mini" @@ -704,7 +705,9 @@ type="text" size="small" > - 鍒犻櫎 + <span class="button-delete" + ><i class="el-icon-delete"></i>鍒犻櫎</span + > </el-button> </template> </el-table-column> @@ -2054,7 +2057,7 @@ this.detailInfoDialogShow = false; }, rowClassName({ row, column, rowIndex, columnIndex }) { - if (row.recordstatus == -1 && row.backflowlevel >= 0) { + if (row.recordstatus == -1 && row.backflowlevel != null) { return "error-row"; } return ""; @@ -2086,6 +2089,9 @@ </script> <style lang="scss" scoped> /* @import url(); 寮曞叆鍏叡css绫� */ +.button-delete { + color: rgb(236, 69, 69); +} ::v-deep.el-table .error-row { background: #fcebeb; } -- Gitblit v1.9.3