🐛 修复 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

@ -24,7 +24,7 @@
<el-select v-model="formData.type" placeholder="请选择短信类型">
<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"
/>
@ -43,7 +43,7 @@
<el-radio-group v-model="formData.status">
<el-radio
v-for="dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
:key="dict.value"
:key="dict.value as number"
:label="parseInt(dict.value as string)"
>
{{ dict.label }}
@ -79,15 +79,15 @@ const dialogTitle = ref('') // 弹窗的标题
const formLoading = ref(false) // 表单的加载中1修改时的数据加载2提交的按钮禁用
const formType = ref('') // 表单的类型
const formData = ref<SmsTemplateApi.SmsTemplateVO>({
id: null,
type: null,
id: undefined,
type: undefined,
status: CommonStatusEnum.ENABLE,
code: '',
name: '',
content: '',
remark: '',
apiTemplateId: '',
channelId: null
channelId: undefined
})
const formRules = reactive({
type: [{ required: true, message: '短信类型不能为空', trigger: 'change' }],
@ -148,15 +148,15 @@ const submitForm = async () => {
/** 重置表单 */
const resetForm = () => {
formData.value = {
id: null,
type: null,
id: undefined,
type: undefined,
status: CommonStatusEnum.ENABLE,
code: '',
name: '',
content: '',
remark: '',
apiTemplateId: '',
channelId: null
channelId: undefined
}
formRef.value?.resetFields()
}