🐛 修复 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 @@ export const getSmsChannelPage = (params: PageParam) => {
// 获得短信渠道精简列表 // 获得短信渠道精简列表
export function getSimpleSmsChannelList() { export function getSimpleSmsChannelList() {
return request.get({ url: '/system/sms-channel/list-all-simple' }) return request.get({ url: '/system/sms-channel/simple-list' })
} }
// 查询短信渠道详情 // 查询短信渠道详情

View File

@ -1,15 +1,15 @@
import request from '@/config/axios' import request from '@/config/axios'
export interface SmsTemplateVO { export interface SmsTemplateVO {
id: number | null id?: number
type: number | null type?: number
status: number status: number
code: string code: string
name: string name: string
content: string content: string
remark: string remark: string
apiTemplateId: string apiTemplateId: string
channelId: number | null channelId?: number
channelCode?: string channelCode?: string
params?: string[] params?: string[]
createTime?: Date createTime?: Date

View File

@ -14,7 +14,7 @@
<el-select v-model="formData.code" clearable placeholder="请选择渠道编码"> <el-select v-model="formData.code" clearable placeholder="请选择渠道编码">
<el-option <el-option
v-for="dict in getStrDictOptions(DICT_TYPE.SYSTEM_SMS_CHANNEL_CODE)" v-for="dict in getStrDictOptions(DICT_TYPE.SYSTEM_SMS_CHANNEL_CODE)"
:key="dict.value" :key="dict.value as number"
:label="dict.label" :label="dict.label"
:value="dict.value" :value="dict.value"
/> />
@ -24,7 +24,7 @@
<el-radio-group v-model="formData.status"> <el-radio-group v-model="formData.status">
<el-radio <el-radio
v-for="dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)" v-for="dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
:key="dict.value" :key="dict.value as number"
:label="dict.value" :label="dict.value"
> >
{{ dict.label }} {{ dict.label }}

View File

@ -21,7 +21,7 @@
<el-select v-model="queryParams.status" placeholder="请选择启用状态" clearable> <el-select v-model="queryParams.status" placeholder="请选择启用状态" clearable>
<el-option <el-option
v-for="dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)" v-for="dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
:key="dict.value" :key="dict.value as number"
:label="dict.label" :label="dict.label"
:value="dict.value" :value="dict.value"
/> />

View File

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

View File

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