fix(任务中心): 后台任务状态筛选
This commit is contained in:
parent
7466d1b3ac
commit
ad200bdac3
|
@ -419,6 +419,12 @@
|
|||
#{value}
|
||||
</foreach>
|
||||
</when>
|
||||
<when test="key=='status'">
|
||||
and task.enable in
|
||||
<foreach collection="values" item="value" separator="," open="(" close=")">
|
||||
b#{value}
|
||||
</foreach>
|
||||
</when>
|
||||
</choose>
|
||||
</if>
|
||||
</foreach>
|
||||
|
|
|
@ -177,11 +177,11 @@
|
|||
options: [
|
||||
{
|
||||
label: t('common.open'),
|
||||
value: 'enable',
|
||||
value: 1,
|
||||
},
|
||||
{
|
||||
label: t('common.close'),
|
||||
value: 'disable',
|
||||
value: 0,
|
||||
},
|
||||
],
|
||||
filterSlotName: FilterSlotNameEnum.GLOBAL_TASK_CENTER_SYSTEM_TASK_STATUS,
|
||||
|
|
Loading…
Reference in New Issue