|
@@ -1,7 +1,7 @@
|
|
|
<template>
|
|
<template>
|
|
|
<StatisticsTemplate
|
|
<StatisticsTemplate
|
|
|
- title="规则统计"
|
|
|
|
|
- :list="state.TaskCount"
|
|
|
|
|
|
|
+ title="规则统计"
|
|
|
|
|
+ :list="state.TaskCount"
|
|
|
/>
|
|
/>
|
|
|
<a-card style="margin-top: 20px;" >
|
|
<a-card style="margin-top: 20px;" >
|
|
|
<a-row justify="space-between" >
|
|
<a-row justify="space-between" >
|
|
@@ -12,6 +12,7 @@
|
|
|
</a-form-item>
|
|
</a-form-item>
|
|
|
<a-form-item label='任务状态' >
|
|
<a-form-item label='任务状态' >
|
|
|
<a-select
|
|
<a-select
|
|
|
|
|
+ allowClear
|
|
|
style="width: 170px"
|
|
style="width: 170px"
|
|
|
v-model:value="queryParamsState.status"
|
|
v-model:value="queryParamsState.status"
|
|
|
>
|
|
>
|
|
@@ -240,8 +241,7 @@ const useForm = Form.useForm
|
|
|
|
|
|
|
|
const statusList = [
|
|
const statusList = [
|
|
|
{ key: true, label: '开启' },
|
|
{ key: true, label: '开启' },
|
|
|
- { key: false, label: '关闭' },
|
|
|
|
|
- { key: true, label: '' }
|
|
|
|
|
|
|
+ { key: false, label: '关闭' }
|
|
|
]
|
|
]
|
|
|
|
|
|
|
|
const queryParamsState = reactive({
|
|
const queryParamsState = reactive({
|