潘志宝
20 小时以前 0cae456a355877d1e89494b3b436bda3afde48c9
预测项运行状态查询
已修改1个文件
16 ■■■■■ 文件已修改
src/views/model/pre/item/index.vue 16 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/model/pre/item/index.vue
@@ -49,6 +49,20 @@
          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"/>
@@ -144,7 +158,7 @@
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'})