|
@@ -78,7 +78,7 @@
|
|
|
v-if="item.type === 'enum' && item.description !== null"
|
|
|
style="width: 200px">
|
|
|
<el-option
|
|
|
- v-for="dict in getIntDictOptions(item.description)"
|
|
|
+ v-for="dict in getStrDictOptions(item.description)"
|
|
|
:key="dict.label"
|
|
|
:label="dict.label"
|
|
|
:value="dict.value"
|
|
@@ -107,7 +107,7 @@
|
|
|
style="width: 200px"
|
|
|
filterable>
|
|
|
<el-option
|
|
|
- v-for="dict in getIntDictOptions(item.description)"
|
|
|
+ v-for="dict in getStrDictOptions(item.description)"
|
|
|
:key="dict.label"
|
|
|
:label="dict.label"
|
|
|
:value="dict.value"
|
|
@@ -147,7 +147,7 @@ import { ElMessage } from 'element-plus'
|
|
|
import moment from 'moment';
|
|
|
import { format } from 'date-fns';
|
|
|
import {cx} from "@fullcalendar/core/internal-common";
|
|
|
-import { DICT_TYPE, getIntDictOptions} from '@/utils/dict'
|
|
|
+import { DICT_TYPE, getIntDictOptions,getStrDictOptions} from '@/utils/dict'
|
|
|
|
|
|
/** 运行记录填报 列表 */
|
|
|
defineOptions({ name: 'FillOrderInfo' })
|