Commit cf9bf290 by 黑潮

update: 修改状态

parent e00bc2c7
......@@ -91,8 +91,8 @@ export default {
onlineOptions: [
{ value: '', label: '所有状态' },
{ value: 0, label: '未开始' },
{ value: 1, label: '进行中(待执行)' },
{ value: 2, label: '已结束(执行完毕)' }
{ value: 1, label: '进行中' },
{ value: 2, label: '已结束' }
], // eslint-disable-line
marketingTypeOptions,
listParams: {
......@@ -154,10 +154,10 @@ export default {
result = '<span class="dm-status--primary">未开始</span>';
break;
case 1:
result = row.effectType == 2 ? '<span class="dm-status--primary">待执行</span>' : '<span class="dm-status--primary--flash"></span><span class="vertical-middle">进行中</span>';
result = '<span class="dm-status--primary--flash"></span><span class="vertical-middle">进行中</span>';
break;
case 2:
result = row.effectType == 2 ? '<span class="dm-status--info">执行完毕</span>' : '<span class="dm-status--info">已结束</span>';
result = '<span class="dm-status--info">已结束</span>';
break;
}
return result;
......
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