🐛 修复 sms 在 IDEA 报错的问题
This commit is contained in:
@ -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) // 导出的加载中
|
||||
|
||||
Reference in New Issue
Block a user