| | |
| | | class="!w-240px" |
| | | /> |
| | | </el-form-item> |
| | | <el-form-item label="运行状态" prop="runStatus"> |
| | | <el-select |
| | | v-model="queryParams.runStatus" |
| | | placeholder="请选择" |
| | | clearable |
| | | class="!w-240px"> |
| | | <el-option |
| | | v-for="dict in getIntDictOptions(DICT_TYPE.ITEM_RUN_STATUS)" |
| | | :key="dict.value" |
| | | :label="dict.label" |
| | | :value="dict.value" |
| | | /> |
| | | </el-select> |
| | | </el-form-item> |
| | | <el-form-item> |
| | | <el-button @click="handleQuery"> |
| | | <Icon icon="ep:search" class="mr-5px"/> |
| | |
| | | import MmPredictItemChart from './MmPredictItemChart.vue' |
| | | import * as MmItemType from '@/api/model/pre/type' |
| | | import * as MmPredictItem from '@/api/model/pre/item' |
| | | import {DICT_TYPE} from "@/utils/dict"; |
| | | import {DICT_TYPE, getIntDictOptions} from "@/utils/dict"; |
| | | |
| | | defineOptions({name: 'DataMmPredictItem'}) |
| | | |