mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-10 03:16:42 +08:00
Compare commits
6 Commits
feature/20
...
master-202
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3d7ca1cc20 | ||
|
|
ebae7f6c0b | ||
|
|
91f06d4ed6 | ||
|
|
9b3b3b94ef | ||
|
|
427ff20531 | ||
|
|
6c5e189448 |
@@ -123,6 +123,16 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="创建人" prop="sysCreateBy"></el-table-column>
|
<el-table-column label="创建人" prop="sysCreateBy"></el-table-column>
|
||||||
<el-table-column label="创建时间" prop="sysCreateTime" width="230px" show-overflow-tooltip></el-table-column>
|
<el-table-column label="创建时间" prop="sysCreateTime" width="230px" show-overflow-tooltip></el-table-column>
|
||||||
|
<el-table-column label="审核人" prop="auditUser" width="130px" show-overflow-tooltip>
|
||||||
|
<template slot-scope="scope">
|
||||||
|
{{ scope.row.auditUser || '-' }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="审核时间" prop="auditTime" width="230px" show-overflow-tooltip>
|
||||||
|
<template slot-scope="scope">
|
||||||
|
{{ scope.row.auditTime || '-' }}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
<el-table-column label="是否停用" width="130px">
|
<el-table-column label="是否停用" width="130px">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
{{ scope.row.enabled == true ? '启用' : '停用' }}
|
{{ scope.row.enabled == true ? '启用' : '停用' }}
|
||||||
|
|||||||
Reference in New Issue
Block a user