用户登录问题修改

This commit is contained in:
jiang 2024-10-29 15:48:18 +08:00
parent 7e6ecd0dba
commit df9a8e0253
1 changed files with 5 additions and 0 deletions

View File

@ -105,6 +105,11 @@
></el-switch> ></el-switch>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="审批状态" align="center">
<template slot-scope="scope">
<span>{{scope.row.approvalStatus==0?"未审批":"已审批" }}</span>
</template>
</el-table-column>
<el-table-column label="创建时间" align="center" prop="createTime" v-if="columns[6].visible" width="160"> <el-table-column label="创建时间" align="center" prop="createTime" v-if="columns[6].visible" width="160">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ parseTime(scope.row.createTime) }}</span> <span>{{ parseTime(scope.row.createTime) }}</span>