mirror of
				https://gitee.com/hhyykk/ipms-sjy-ui.git
				synced 2025-11-04 12:18:43 +08:00 
			
		
		
		
	update:添加类型解决ts报错
This commit is contained in:
		@@ -44,7 +44,7 @@
 | 
			
		||||
          <el-radio
 | 
			
		||||
            v-for="dict in getIntDictOptions(DICT_TYPE.COMMON_STATUS)"
 | 
			
		||||
            :key="dict.value"
 | 
			
		||||
            :label="parseInt(dict.value)"
 | 
			
		||||
            :label="parseInt(dict.value as string)"
 | 
			
		||||
          >
 | 
			
		||||
            {{ dict.label }}
 | 
			
		||||
          </el-radio>
 | 
			
		||||
@@ -96,7 +96,7 @@ const formRules = reactive({
 | 
			
		||||
  channelId: [{ required: true, message: '短信渠道编号不能为空', trigger: 'change' }]
 | 
			
		||||
})
 | 
			
		||||
const formRef = ref() // 表单 Ref
 | 
			
		||||
const channelList = ref([]) // 短信渠道列表
 | 
			
		||||
const channelList = ref<SmsChannelApi.SmsChannelVO[]>([]) // 短信渠道列表
 | 
			
		||||
 | 
			
		||||
const open = async (type: string, id?: number) => {
 | 
			
		||||
  modelVisible.value = true
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user