From b87927b75d9c7c962be0a22e94ec7fa0bb046f31 Mon Sep 17 00:00:00 2001 From: RuoYi <yzz_ivy@163.com> Date: 星期三, 07 十二月 2022 20:24:23 +0800 Subject: [PATCH] 修复树形下拉不能默认选中(I64ESN) --- src/views/monitor/job/index.vue | 35 +++++------------------------------ 1 files changed, 5 insertions(+), 30 deletions(-) diff --git a/src/views/monitor/job/index.vue b/src/views/monitor/job/index.vue index b93e9df..519760d 100644 --- a/src/views/monitor/job/index.vue +++ b/src/views/monitor/job/index.vue @@ -111,44 +111,19 @@ <el-table-column label="鎿嶄綔" align="center" width="200" class-name="small-padding fixed-width"> <template #default="scope"> <el-tooltip content="淇敼" placement="top"> - <el-button - type="text" - icon="Edit" - @click="handleUpdate(scope.row)" - v-hasPermi="['monitor:job:edit']" - ></el-button> + <el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)" v-hasPermi="['monitor:job:edit']"></el-button> </el-tooltip> <el-tooltip content="鍒犻櫎" placement="top"> - <el-button - type="text" - icon="Delete" - @click="handleDelete(scope.row)" - v-hasPermi="['monitor:job:remove']" - ></el-button> + <el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)" v-hasPermi="['monitor:job:remove']"></el-button> </el-tooltip> <el-tooltip content="鎵ц涓�娆�" placement="top"> - <el-button - type="text" - icon="CaretRight" - @click="handleRun(scope.row)" - v-hasPermi="['monitor:job:changeStatus']" - ></el-button> + <el-button link type="primary" icon="CaretRight" @click="handleRun(scope.row)" v-hasPermi="['monitor:job:changeStatus']"></el-button> </el-tooltip> <el-tooltip content="浠诲姟璇︾粏" placement="top"> - <el-button - type="text" - icon="View" - @click="handleView(scope.row)" - v-hasPermi="['monitor:job:query']" - ></el-button> + <el-button link type="primary" icon="View" @click="handleView(scope.row)" v-hasPermi="['monitor:job:query']"></el-button> </el-tooltip> <el-tooltip content="璋冨害鏃ュ織" placement="top"> - <el-button - type="text" - icon="Operation" - @click="handleJobLog(scope.row)" - v-hasPermi="['monitor:job:query']" - ></el-button> + <el-button link type="primary" icon="Operation" @click="handleJobLog(scope.row)" v-hasPermi="['monitor:job:query']"></el-button> </el-tooltip> </template> </el-table-column> -- Gitblit v1.9.3