Commit db6ffbfa by caoyanzhi

update: 调整发布状态

parent 1d57f726
......@@ -174,15 +174,15 @@ export default {
formatPublishStatus(row, col, val) {
// 0:成功, 1:发布中,2:原创失败, 3: 常规失败, 4:平台审核不通过, 5:成功后用户删除所有文章, 6: 成功后系统封禁所有文章 100:老图文 , 101:草稿
const status = new Map();
status.set(0, '成功');
// status.set(0, '成功');
status.set(1, '发布中');
status.set(2, '原创失败');
status.set(3, '常规失败');
status.set(4, '平台审核不通过');
status.set(5, '成功后用户删除所有文章');
status.set(6, '成功后系统封禁所有文章');
status.set(100, '老图文');
status.set(101, '草稿');
// status.set(100, '老图文');
// status.set(101, '草稿');
return status.get(typeof val == 'string' ? Number(val) : val) || '--';
},
onPublic(row) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment