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 6e321c4 commit c105f31Copy full SHA for c105f31
src/views/system/sms/template/index.vue
@@ -166,12 +166,7 @@
166
width="180"
167
:formatter="dateFormatter"
168
/>
169
- <el-table-column
170
- label="操作"
171
- align="center"
172
- width="210"
173
- fixed="right"
174
- >
+ <el-table-column label="操作" align="center" width="210" fixed="right">
175
<template #default="scope">
176
<el-button
177
link
@@ -241,7 +236,7 @@ const queryParams = reactive({
241
236
createTime: []
242
237
})
243
238
const exportLoading = ref(false) // 导出的加载中
244
-const channelList = ref([]) // 短信渠道列表
239
+const channelList = ref<SmsChannelApi.SmsChannelVO[]>([]) // 短信渠道列表
245
240
246
/** 查询列表 */
247
const getList = async () => {
0 commit comments