From 631a83160955bd1bebff28cc88fab790464726a1 Mon Sep 17 00:00:00 2001 From: LiuHao <liuhaoai545@gmail.com> Date: 星期日, 02 四月 2023 22:01:28 +0800 Subject: [PATCH] fix button style --- src/views/system/role/index.vue | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/system/role/index.vue b/src/views/system/role/index.vue index f64c697..ce5a4fa 100644 --- a/src/views/system/role/index.vue +++ b/src/views/system/role/index.vue @@ -354,13 +354,13 @@ <template #header> <el-row :gutter="10"> <el-col :span="1.5"> - <el-button type="primary" @click="handleAdd()" icon="Plus" v-hasPermi="['system:role:add']">鏂板</el-button> + <el-button type="primary" plain @click="handleAdd()" icon="Plus" v-hasPermi="['system:role:add']">鏂板</el-button> </el-col> <el-col :span="1.5"> - <el-button type="success" @click="handleUpdate()" :disabled="single" icon="Edit" v-hasPermi="['system:role:edit']">淇敼</el-button> + <el-button type="success" plain @click="handleUpdate()" :disabled="single" icon="Edit" v-hasPermi="['system:role:edit']">淇敼</el-button> </el-col> <el-col :span="1.5"> - <el-button type="danger" :disabled="ids.length === 0" @click="handleDelete()" v-hasPermi="['system:role:delete']">鍒犻櫎</el-button> + <el-button type="danger" plain :disabled="ids.length === 0" @click="handleDelete()" v-hasPermi="['system:role:delete']">鍒犻櫎</el-button> </el-col> <el-col :span="1.5"> <el-button type="warning" plain icon="Download" @click="handleExport" v-hasPermi="['system:role:export']">瀵煎嚭</el-button> -- Gitblit v1.9.3