mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-13 12:56:45 +08:00
-- bug
This commit is contained in:
@@ -217,7 +217,7 @@ export default {
|
|||||||
key: "status",
|
key: "status",
|
||||||
align: "center",
|
align: "center",
|
||||||
customRender: ({ record: { status } }) => (
|
customRender: ({ record: { status } }) => (
|
||||||
<div>{status == -2 ? "未通过" : "已通过"}</div>
|
<div>{{ '2': "审核通过", "-5": "未通过" }[status + ""] || '审核通过'}</div>
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -286,7 +286,7 @@ export default {
|
|||||||
key: "status",
|
key: "status",
|
||||||
align: "center",
|
align: "center",
|
||||||
customRender: ({ record: { status } }) => (
|
customRender: ({ record: { status } }) => (
|
||||||
<div>{{ 2: "审核通过", "-2": "审核拒绝" }[status + ""]}</div>
|
<div>{{ '2': "审核通过", "-5": "审核拒绝" }[status + ""] || '审核通过'}</div>
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user