mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-15 22:06:45 +08:00
始终选中一个关卡
This commit is contained in:
@@ -188,6 +188,8 @@ export default {
|
||||
dataIndex: "name",
|
||||
key: "name",
|
||||
align: "center",
|
||||
ellipsis: true,
|
||||
width:"20%",
|
||||
},
|
||||
|
||||
{
|
||||
@@ -195,7 +197,8 @@ export default {
|
||||
dataIndex: "topName",
|
||||
key: "topName",
|
||||
align: "center",
|
||||
width: "10%",
|
||||
ellipsis: true,
|
||||
width:"20%",
|
||||
customRender: ({ record: { gaName, faName, name } }) => (
|
||||
<div>
|
||||
{faName
|
||||
@@ -211,12 +214,16 @@ export default {
|
||||
dataIndex: "manager",
|
||||
key: "manager",
|
||||
align: "center",
|
||||
ellipsis: true,
|
||||
width:"10%",
|
||||
},
|
||||
{
|
||||
title: "审核状态",
|
||||
dataIndex: "status",
|
||||
key: "status",
|
||||
align: "center",
|
||||
ellipsis: true,
|
||||
width:"10%",
|
||||
customRender: ({ record: { status } }) => (
|
||||
<div>{{ '2': "审核通过", "-5": "未通过" }[status + ""] || '审核通过'}</div>
|
||||
),
|
||||
@@ -226,18 +233,25 @@ export default {
|
||||
dataIndex: "createName",
|
||||
key: "createName",
|
||||
align: "center",
|
||||
ellipsis: true,
|
||||
width:"10%",
|
||||
},
|
||||
{
|
||||
title: "审核时间",
|
||||
dataIndex: "updateTime",
|
||||
key: "updateTime",
|
||||
align: "center",
|
||||
ellipsis: true,
|
||||
width:"10%",
|
||||
},
|
||||
{
|
||||
title: "审核说明",
|
||||
dataIndex: "description",
|
||||
key: "description",
|
||||
align: "center",
|
||||
ellipsis: true,
|
||||
width:"20%",
|
||||
|
||||
customRender: ({ record: { auditList, description } }) => (
|
||||
<div>
|
||||
{auditList.length !== 0
|
||||
@@ -256,6 +270,8 @@ export default {
|
||||
dataIndex: "opt",
|
||||
key: "opt",
|
||||
align: "center",
|
||||
|
||||
width:"10%",
|
||||
customRender: (value) => {
|
||||
return (
|
||||
<div>
|
||||
|
||||
Reference in New Issue
Block a user