🐛 修复 sms 在 IDEA 报错的问题

This commit is contained in:
YunaiV
2023-12-02 22:39:52 +08:00
parent dd4a77ff22
commit 3407cc66a9
6 changed files with 20 additions and 20 deletions

View File

@ -19,7 +19,7 @@
>
<el-option
v-for="dict in getIntDictOptions(DICT_TYPE.SYSTEM_SMS_TEMPLATE_TYPE)"
:key="dict.value"
:key="dict.value as number"
:label="dict.label"
:value="dict.value"
/>
@ -34,7 +34,7 @@
>
<el-option
v-for="dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
:key="dict.value"
:key="dict.value as number"
:label="dict.label"
:value="dict.value"
/>
@ -232,12 +232,12 @@ const queryFormRef = ref() // 搜索的表单
const queryParams = reactive({
pageNo: 1,
pageSize: 10,
type: null,
status: null,
type: undefined,
status: undefined,
code: '',
content: '',
apiTemplateId: '',
channelId: null,
channelId: undefined,
createTime: []
})
const exportLoading = ref(false) // 导出的加载中