We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 581b301 commit c462bbaCopy full SHA for c462bba
src/views/system/sms/template/SmsTemplateForm.vue
@@ -44,7 +44,7 @@
44
<el-radio
45
v-for="dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
46
:key="dict.value"
47
- :label="parseInt(dict.value)"
+ :label="parseInt(dict.value as string)"
48
>
49
{{ dict.label }}
50
</el-radio>
@@ -96,7 +96,7 @@ const formRules = reactive({
96
channelId: [{ required: true, message: '短信渠道编号不能为空', trigger: 'change' }]
97
})
98
const formRef = ref() // 表单 Ref
99
-const channelList = ref([]) // 短信渠道列表
+const channelList = ref<SmsChannelApi.SmsChannelVO[]>([]) // 短信渠道列表
100
101
const open = async (type: string, id?: number) => {
102
modelVisible.value = true
0 commit comments