From d8d1e7443938a79d096f88331f5ca424784a5ce8 Mon Sep 17 00:00:00 2001 From: licp <lichunping@guanfang.com.cn> Date: 星期四, 26 十二月 2024 10:52:07 +0800 Subject: [PATCH] 修改cnas --- src/components/caorui/ZTTable/index.vue | 18 +++++++++--------- 1 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/components/caorui/ZTTable/index.vue b/src/components/caorui/ZTTable/index.vue index 17864dd..9e7374d 100644 --- a/src/components/caorui/ZTTable/index.vue +++ b/src/components/caorui/ZTTable/index.vue @@ -8,19 +8,19 @@ <template> <div> <!-- 琛ㄦ牸 --> - <el-table - ref="multipleTable" - v-loading="tableLoading" - :border="border" + <el-table + ref="multipleTable" + v-loading="tableLoading" + :border="border" :data="tableData" - :header-cell-style="{ background: '#0e3372', color: '#cccccc' }" + :header-cell-style="{ background: '#0e3372', color: '#cccccc' }" :height="height" - :highlight-current-row="highlightCurrentRow" + :highlight-current-row="highlightCurrentRow" :row-class-name="rowClassName" :row-style="rowStyle" :row-key="rowKey" stripe - style="width: 100%; " + style="width: 100%; " tooltip-effect="dark" @row-click="rowClick" @current-change="currentChange" @@ -82,9 +82,9 @@ :disabled="o.disabled ? o.disabled(scope.row) : false" :icon="o.icon | iconFn(scope.row)" :plain="o.plain" :size="o.size" - :style="{ 'color': o.color }" + :style="{ 'color': o.color }" :type="o.type | typeFn(scope.row)" - @click="o.clickFun(scope.row)"> + @click.stop="o.clickFun(scope.row)"> {{ o.name }} </el-button> <el-upload -- Gitblit v1.9.3