File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 17
17
<el-select v-model =" formData.type" clearable placeholder =" 请选择公告类型" >
18
18
<el-option
19
19
v-for =" dict in getIntDictOptions(DICT_TYPE.SYSTEM_NOTICE_TYPE)"
20
- :key =" parseInt(dict.value)"
20
+ :key =" parseInt(dict.value as any )"
21
21
:label =" dict.label"
22
- :value =" parseInt(dict.value)"
22
+ :value =" parseInt(dict.value as any )"
23
23
/>
24
24
</el-select >
25
25
</el-form-item >
26
26
<el-form-item label =" 状态" prop =" status" >
27
27
<el-select v-model =" formData.status" clearable placeholder =" 请选择状态" >
28
28
<el-option
29
29
v-for =" dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
30
- :key =" parseInt(dict.value)"
30
+ :key =" parseInt(dict.value as any )"
31
31
:label =" dict.label"
32
- :value =" parseInt(dict.value)"
32
+ :value =" parseInt(dict.value as any )"
33
33
/>
34
34
</el-select >
35
35
</el-form-item >
You can’t perform that action at this time.
0 commit comments