修改日志无时间查询异常

This commit is contained in:
haozq 2024-04-23 18:02:29 +08:00
parent f36e564e38
commit d2a3fdabe9
1 changed files with 4 additions and 4 deletions

View File

@ -64,10 +64,10 @@
</el-table-column>
<el-table-column key="nickName" label="登录名" prop="loginName" min-width="40px" align="center" />
<el-table-column key="phone" label="手机号码" align="center" prop="phone" :show-overflow-tooltip="true" />
<el-table-column prop="delFlag" label="状态" align="center">
<el-table-column prop="delFlag" label="状态" align="center">
<template slot-scope="scope">
<el-tag :type="scope.row.delFlag === 0 ? 'primary' : 'danger'" disable-transitions>{{ scope.row.delFlag === 0 ?
'在用' : '注销' }}</el-tag>
<el-tag :type="scope.row.status ==='已注销' || scope.row.status ==='停用' ? 'danger' : 'primary'" disable-transitions>{{ scope.row.status }}</el-tag>
</template>
</el-table-column>
<el-table-column label="操作" align="center" width="300" class-name="small-padding fixed-width">
@ -447,7 +447,7 @@ export default {
})
},
handleDelete(row, index) {
this.$confirm(`确定要删除该数据吗?`, {
this.$confirm(`确定要注销该用户吗?`, {
type: 'warning',
title: '操作提示',
beforeClose: async(action, instance, done) => {