This commit is contained in:
cun-nan 2024-07-08 08:34:36 +08:00
parent 4f7abd2c45
commit efb33ec2fb
2 changed files with 26 additions and 11 deletions

View File

@ -117,3 +117,11 @@
font-weight: bold;
}
}
.el-switch.is-checked .el-switch__core{
background-color: #0DC291 !important;
border-color: #0DC291 !important;
}
.el-switch__core{
background-color: #FF4347 !important;
border-color: #FF4347 !important;
}

View File

@ -69,22 +69,29 @@
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
type="warning"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
>新增
>新增用户
</el-button>
</el-col>
</el-row>
</el-form-item>
</el-form>
<!-- <el-row :gutter="10" class="mb8">-->
<!-- <el-col :span="1.5">-->
<!-- <el-button-->
<!-- type="warning"-->
<!-- plain-->
<!-- size="mini"-->
<!-- @click="handleAdd"-->
<!-- >新增用户-->
<!-- </el-button>-->
<!-- </el-col>-->
<!-- </el-row>-->
<!-- </el-card>-->
<!-- <el-card >-->
<el-table v-loading="loading" :data="userList" @selection-change="handleSelectionChange">
@ -1871,7 +1878,7 @@ export default {
handleStatusChange(row) {
let text = row.status === "0" ? "启用" : "停用";
this.$modal.confirm('确认要"' + text + '""' + row.realName + '"用户吗?').then(function () {
return changeUserStatus(row.userId, row.status);
return updateUser(row);
}).then(() => {
this.$modal.msgSuccess(text + "成功");
}).catch(function () {