feat: vue3 add sensms
parent
b4ee434289
commit
9983590fdf
|
@ -1,5 +1,5 @@
|
||||||
import { useAxios } from '@/hooks/web/useAxios'
|
import { useAxios } from '@/hooks/web/useAxios'
|
||||||
import type { SmsTemplateVO, SmsSendVO } from './types'
|
import type { SmsTemplateVO } from './types'
|
||||||
|
|
||||||
const request = useAxios()
|
const request = useAxios()
|
||||||
|
|
||||||
|
@ -29,7 +29,7 @@ export const deleteSmsTemplateApi = (id: number) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
// 发送短信
|
// 发送短信
|
||||||
export function sendSms(data: SmsSendVO) {
|
export const sendSmsApi = (data) => {
|
||||||
return request.post({ url: '/system/sms-template/send-sms', data })
|
return request.post({ url: '/system/sms-template/send-sms', data })
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { reactive, ref, unref } from 'vue'
|
import { ref, unref } from 'vue'
|
||||||
import dayjs from 'dayjs'
|
import dayjs from 'dayjs'
|
||||||
import { ElMessage } from 'element-plus'
|
import { ElMessage, ElForm, ElFormItem, ElInput } from 'element-plus'
|
||||||
import { DICT_TYPE } from '@/utils/dict'
|
import { DICT_TYPE } from '@/utils/dict'
|
||||||
import { useTable } from '@/hooks/web/useTable'
|
import { useTable } from '@/hooks/web/useTable'
|
||||||
import { useI18n } from '@/hooks/web/useI18n'
|
import { useI18n } from '@/hooks/web/useI18n'
|
||||||
|
@ -82,23 +82,45 @@ const handleDetail = async (row: SmsTemplateVO) => {
|
||||||
detailRef.value = row
|
detailRef.value = row
|
||||||
setDialogTile('detail')
|
setDialogTile('detail')
|
||||||
}
|
}
|
||||||
const sendSmsForm = reactive({
|
// ========== 测试相关 ==========
|
||||||
|
const sendSmsForm = ref({
|
||||||
content: '',
|
content: '',
|
||||||
params: '',
|
params: {},
|
||||||
mobile: '',
|
mobile: '141',
|
||||||
templateCode: '',
|
templateCode: '',
|
||||||
templateParams: {}
|
templateParams: {}
|
||||||
})
|
})
|
||||||
// TODO 发送短信
|
const sendSmsRules = ref({
|
||||||
// ========== 测试相关 ==========
|
mobile: [{ required: true, message: '手机不能为空', trigger: 'blur' }],
|
||||||
|
templateCode: [{ required: true, message: '手机不能为空', trigger: 'blur' }],
|
||||||
|
templateParams: {}
|
||||||
|
})
|
||||||
|
const sendVisible = ref(false)
|
||||||
|
|
||||||
const handleSendSms = (row: any) => {
|
const handleSendSms = (row: any) => {
|
||||||
sendSmsForm.content = row.content
|
sendSmsForm.value.content = row.content
|
||||||
sendSmsForm.params = row.params
|
sendSmsForm.value.params = row.params
|
||||||
sendSmsForm.templateCode = row.code
|
sendSmsForm.value.templateCode = row.code
|
||||||
sendSmsForm.templateParams = row.params.reduce(function (obj, item) {
|
sendSmsForm.value.templateParams = row.params.reduce(function (obj, item) {
|
||||||
obj[item] = undefined
|
obj[item] = undefined
|
||||||
return obj
|
return obj
|
||||||
}, {})
|
}, {})
|
||||||
|
sendSmsRules.value.templateParams = row.params.reduce(function (obj, item) {
|
||||||
|
obj[item] = { required: true, message: '参数 ' + item + ' 不能为空', trigger: 'change' }
|
||||||
|
return obj
|
||||||
|
}, {})
|
||||||
|
sendVisible.value = true
|
||||||
|
}
|
||||||
|
|
||||||
|
const sendSmsTest = () => {
|
||||||
|
const data = {
|
||||||
|
mobile: sendSmsForm.value.mobile,
|
||||||
|
templateCode: sendSmsForm.value.templateCode,
|
||||||
|
templateParams: sendSmsForm.value.templateParams
|
||||||
|
}
|
||||||
|
SmsTemplateApi.sendSmsApi(data)
|
||||||
|
ElMessage.info('发送成功')
|
||||||
|
sendVisible.value = false
|
||||||
}
|
}
|
||||||
|
|
||||||
// ========== 初始化 ==========
|
// ========== 初始化 ==========
|
||||||
|
@ -213,4 +235,37 @@ getList()
|
||||||
<el-button @click="dialogVisible = false">{{ t('dialog.close') }}</el-button>
|
<el-button @click="dialogVisible = false">{{ t('dialog.close') }}</el-button>
|
||||||
</template>
|
</template>
|
||||||
</Dialog>
|
</Dialog>
|
||||||
|
<Dialog v-model="sendVisible" title="测试">
|
||||||
|
<el-form :model="sendSmsForm" :rules="sendSmsRules" label-width="140px">
|
||||||
|
<el-form-item label="模板内容" prop="content">
|
||||||
|
<el-input
|
||||||
|
v-model="sendSmsForm.content"
|
||||||
|
type="textarea"
|
||||||
|
placeholder="请输入模板内容"
|
||||||
|
readonly
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="手机号" prop="mobile">
|
||||||
|
<el-input v-model="sendSmsForm.mobile" placeholder="请输入手机号" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item
|
||||||
|
v-for="param in sendSmsForm.params"
|
||||||
|
:key="param"
|
||||||
|
:label="'参数 {' + param + '}'"
|
||||||
|
:prop="'templateParams.' + param"
|
||||||
|
>
|
||||||
|
<el-input
|
||||||
|
v-model="sendSmsForm.templateParams[param]"
|
||||||
|
:placeholder="'请输入 ' + param + ' 参数'"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
<!-- 操作按钮 -->
|
||||||
|
<template #footer>
|
||||||
|
<el-button type="primary" :loading="loading" @click="sendSmsTest">
|
||||||
|
{{ t('action.test') }}
|
||||||
|
</el-button>
|
||||||
|
<el-button @click="sendVisible = false">{{ t('dialog.close') }}</el-button>
|
||||||
|
</template>
|
||||||
|
</Dialog>
|
||||||
</template>
|
</template>
|
||||||
|
|
Loading…
Reference in New Issue