init
This commit is contained in:
227
src/views/tools/message/sms/form.vue
Normal file
227
src/views/tools/message/sms/form.vue
Normal file
@@ -0,0 +1,227 @@
|
||||
<template>
|
||||
<el-dialog :title="form.id ? '编辑' : '新增'" v-model="visible"
|
||||
:close-on-click-modal="false" draggable>
|
||||
<el-form ref="dataFormRef" :model="form" :rules="dataRules" formDialogRef label-width="100px" v-loading="loading">
|
||||
<el-form-item label="业务名称" prop="configName">
|
||||
<el-input v-model="form.configName" placeholder="请输入业务名称"/>
|
||||
</el-form-item>
|
||||
<el-form-item label="业务编码" prop="configKey">
|
||||
<template #label>业务编码
|
||||
<tip content="代码中通过业务编码发送"/>
|
||||
</template>
|
||||
<el-input v-model="form.configKey" placeholder="请输入业务编码"/>
|
||||
</el-form-item>
|
||||
<el-form-item label="云厂商" prop="configValue.supplier">
|
||||
<el-select v-model="form.configValue.supplier" placeholder="请选择云厂商">
|
||||
<el-option v-for="item in supplierList" :key="item.value" :label="item.label" :value="item.value"/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="AK" prop="configValue.accessKeyId">
|
||||
<el-input v-model="form.configValue.accessKeyId" placeholder="请输入accessKey"/>
|
||||
</el-form-item>
|
||||
<el-form-item label="SK" prop="configValue.accessKeySecret">
|
||||
<el-input v-model="form.configValue.accessKeySecret" placeholder="请输入accessKeySecret"/>
|
||||
</el-form-item>
|
||||
<el-form-item label="签名" prop="configValue.signature">
|
||||
<el-input v-model="form.configValue.signature" placeholder="请输入模板签名"/>
|
||||
</el-form-item>
|
||||
<el-form-item label="模板ID" prop="configValue.templateId">
|
||||
<el-input v-model="form.configValue.templateId" placeholder="请输入模板ID"/>
|
||||
</el-form-item>
|
||||
<el-form-item label="启用状态" prop="configStatus">
|
||||
<el-radio-group v-model="form.configStatus">
|
||||
<el-radio :key="index" :label="item.value" border v-for="(item, index) in yes_no_type">{{
|
||||
item.label
|
||||
}}
|
||||
</el-radio>
|
||||
</el-radio-group>
|
||||
</el-form-item>
|
||||
<el-form-item prop="configValue.extParams">
|
||||
<template #label>扩展参数
|
||||
<tip content="参考 sms4j 文档配置json格式"/>
|
||||
</template>
|
||||
<json-editor
|
||||
ref="jsonEditorRef"
|
||||
v-model="form.configValue.extParams"
|
||||
/>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<template #footer>
|
||||
<span class="dialog-footer">
|
||||
<el-button @click="visible = false">取消</el-button>
|
||||
<el-button type="primary" @click="onSubmit" :disabled="loading">确认</el-button>
|
||||
</span>
|
||||
</template>
|
||||
</el-dialog>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts" name="SysMessageSmsDialog">
|
||||
// @ts-ignore
|
||||
import JsonEditor from '@axolo/json-editor-vue'
|
||||
import {useDict} from '/@/hooks/dict';
|
||||
import {useMessage} from "/@/hooks/message";
|
||||
import {addObj, getObj, putObj, validateExist} from '/@/api/admin/config'
|
||||
import {rule} from "/@/utils/validate";
|
||||
|
||||
const emit = defineEmits(['refresh']);
|
||||
|
||||
// 定义变量内容
|
||||
const dataFormRef = ref();
|
||||
const visible = ref(false)
|
||||
const loading = ref(false)
|
||||
// 定义字典
|
||||
const {yes_no_type} = useDict('yes_no_type')
|
||||
|
||||
// 云厂商
|
||||
const supplierList = ref([{
|
||||
value: 'alibaba',
|
||||
label: '阿里云'
|
||||
}, {
|
||||
value: 'cloopen',
|
||||
label: '容联云'
|
||||
}, {
|
||||
value: 'ctyun',
|
||||
label: '天翼云'
|
||||
}, {
|
||||
value: 'emay',
|
||||
label: '亿美软通'
|
||||
}, {
|
||||
value: 'huawei',
|
||||
label: '华为云短信'
|
||||
}, {
|
||||
value: 'netease',
|
||||
label: '网易云信'
|
||||
}, {
|
||||
value: 'tencent',
|
||||
label: '腾讯云短信'
|
||||
}, {
|
||||
value: 'unisms',
|
||||
label: '合一短信'
|
||||
}, {
|
||||
value: 'yunpian',
|
||||
label: '云片短信'
|
||||
}, {
|
||||
value: 'zhutong',
|
||||
label: '助通短信'
|
||||
}, {
|
||||
value: 'dingzhong',
|
||||
label: '鼎众短信'
|
||||
}, {
|
||||
value: 'yunpian',
|
||||
label: '联麓短信'
|
||||
}, {
|
||||
value: 'qiniu',
|
||||
label: '七牛云短信'
|
||||
}])
|
||||
|
||||
// 提交表单数据
|
||||
const form = reactive({
|
||||
configType: 'sms',
|
||||
id: '',
|
||||
configKey: '',
|
||||
configName: '',
|
||||
configValue: {
|
||||
supplier: '',
|
||||
accessKeyId: '',
|
||||
accessKeySecret: '' || undefined,
|
||||
signature: '',
|
||||
templateId: '',
|
||||
extParams: ''
|
||||
},
|
||||
configStatus: '1',
|
||||
});
|
||||
|
||||
// 定义校验规则
|
||||
const dataRules = ref({
|
||||
configName: [
|
||||
{required: true, message: '业务名称不能为空', trigger: 'blur'}, {validator: rule.overLength, trigger: 'blur'},
|
||||
],
|
||||
configKey: [
|
||||
{required: true, message: '业务编码不能为空', trigger: 'blur'},
|
||||
{validator: rule.validatorCapital, trigger: 'blur'},
|
||||
{
|
||||
validator: (rule: any, value: any, callback: any) => {
|
||||
validateExist(rule, value, callback, form.id !== '');
|
||||
},
|
||||
trigger: 'blur',
|
||||
},
|
||||
],
|
||||
'configValue.supplier': [
|
||||
{required: true, message: '厂商不能为空', trigger: 'blur'}
|
||||
],
|
||||
'configValue.accessKeyId': [
|
||||
{required: true, message: 'AK 不能为空', trigger: 'blur'}
|
||||
],
|
||||
'configValue.accessKeySecret': [
|
||||
{required: true, message: 'SK 不能为空', trigger: 'blur'}
|
||||
],
|
||||
'configValue.signature': [
|
||||
{required: true, message: '签名不能为空', trigger: 'blur'}
|
||||
],
|
||||
'configValue.templateId': [
|
||||
{required: true, message: '模板不能为空', trigger: 'blur'}
|
||||
],
|
||||
'configValue.extParams': [
|
||||
{validator: rule.json, trigger: 'blur'}
|
||||
]
|
||||
})
|
||||
|
||||
// 打开弹窗
|
||||
const openDialog = (id: string) => {
|
||||
visible.value = true
|
||||
form.id = ''
|
||||
|
||||
// 重置表单数据
|
||||
nextTick(() => {
|
||||
dataFormRef.value?.resetFields();
|
||||
});
|
||||
|
||||
// 获取sysMessage信息
|
||||
if (id) {
|
||||
form.id = id
|
||||
getConfigData(id)
|
||||
}
|
||||
};
|
||||
|
||||
// 提交
|
||||
const onSubmit = async () => {
|
||||
const valid = await dataFormRef.value.validate().catch(() => {
|
||||
});
|
||||
if (!valid) return false;
|
||||
|
||||
try {
|
||||
loading.value = true;
|
||||
if (form.configValue.accessKeySecret?.includes('******')) {
|
||||
form.configValue.accessKeySecret = undefined
|
||||
}
|
||||
form.configValue = JSON.stringify(form.configValue) as any
|
||||
form.id ? await putObj(form) : await addObj(form);
|
||||
useMessage().success(form.id ? '修改成功' : '添加成功');
|
||||
visible.value = false;
|
||||
emit('refresh');
|
||||
} catch (err: any) {
|
||||
useMessage().error(err.msg);
|
||||
} finally {
|
||||
loading.value = false;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
// 初始化表单数据
|
||||
const getConfigData = (id: string) => {
|
||||
// 获取数据
|
||||
loading.value = true
|
||||
getObj({id}).then((res: any) => {
|
||||
Object.assign(form, res.data[0])
|
||||
form.configValue = JSON.parse(res.data[0].configValue)
|
||||
form.configValue.accessKeySecret = '******' as any
|
||||
}).finally(() => {
|
||||
loading.value = false
|
||||
})
|
||||
};
|
||||
|
||||
// 暴露变量
|
||||
defineExpose({
|
||||
openDialog, supplierList
|
||||
});
|
||||
</script>
|
||||
155
src/views/tools/message/sms/index.vue
Normal file
155
src/views/tools/message/sms/index.vue
Normal file
@@ -0,0 +1,155 @@
|
||||
<template>
|
||||
<div>
|
||||
<el-row v-show="showSearch">
|
||||
<el-form :model="state.queryForm" ref="queryRef" :inline="true" @keyup.enter="getDataList">
|
||||
<el-form-item label="业务名称" prop="configName">
|
||||
<el-input placeholder="请输入业务名称" v-model="state.queryForm.configName"/>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button icon="search" type="primary" @click="getDataList">
|
||||
查询
|
||||
</el-button>
|
||||
<el-button icon="Refresh" @click="resetQuery">重置</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</el-row>
|
||||
<el-row>
|
||||
<div class="mb8" style="width: 100%">
|
||||
<el-button icon="folder-add" type="primary" class="ml10" @click="formDialogRef.openDialog()"
|
||||
v-auth="'sys_message_add'">
|
||||
新 增
|
||||
</el-button>
|
||||
<el-button plain :disabled="multiple" icon="Delete" type="primary"
|
||||
v-auth="'sys_message_del'" @click="handleDelete(selectObjs)">
|
||||
删除
|
||||
</el-button>
|
||||
<right-toolbar v-model:showSearch="showSearch" :export="'admin_sysMessage_export'"
|
||||
@exportExcel="exportExcel" class="ml10 mr20" style="float: right;"
|
||||
@queryTable="getDataList"></right-toolbar>
|
||||
</div>
|
||||
</el-row>
|
||||
<el-table :data="state.dataList" v-loading="state.loading" border
|
||||
:cell-style="tableStyle.cellStyle" :header-cell-style="tableStyle.headerCellStyle"
|
||||
@selection-change="selectionChangHandle"
|
||||
@sort-change="sortChangeHandle">
|
||||
<el-table-column type="selection" width="40" align="center"/>
|
||||
<el-table-column type="index" label="#" width="40"/>
|
||||
<el-table-column prop="configName" label="业务名称" show-overflow-tooltip/>
|
||||
<el-table-column prop="configKey" label="业务标识" show-overflow-tooltip/>
|
||||
<el-table-column prop="configValue.supplier" label="厂商" show-overflow-tooltip>
|
||||
<template #default="scope">
|
||||
{{ formDialogRef?.supplierList.find((item: any) => item.value === JSON.parse(scope.row.configValue).supplier)?.label}}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="configStatus" label="启用状态" show-overflow-tooltip width="100">
|
||||
<template #default="scope">
|
||||
<dict-tag :options="yes_no_type" :value="scope.row.configStatus"></dict-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" width="300">
|
||||
<template #default="scope">
|
||||
<el-button icon="view" text type="primary" v-auth="'sys_message_edit'"
|
||||
@click="senderDialogRef.openDialog(scope.row.id)">测试
|
||||
</el-button>
|
||||
<el-button icon="edit-pen" text type="primary" v-auth="'sys_message_edit'"
|
||||
@click="formDialogRef.openDialog(scope.row.id)">编辑
|
||||
</el-button>
|
||||
<el-button icon="delete" text type="primary" v-auth="'sys_message_del'"
|
||||
@click="handleDelete([scope.row.id])">删除
|
||||
</el-button>
|
||||
<el-button icon="Tickets" text type="primary" v-auth="'sys_message_del'"
|
||||
@click="handleLog">日志
|
||||
</el-button>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<pagination @size-change="sizeChangeHandle" @current-change="currentChangeHandle" v-bind="state.pagination"/>
|
||||
|
||||
<!-- 编辑、新增 -->
|
||||
<form-dialog ref="formDialogRef" @refresh="getDataList(false)"/>
|
||||
<sender-dialog ref="senderDialogRef"/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts" name="systemSmsMessage">
|
||||
import {BasicTableProps, useTable} from "/@/hooks/table";
|
||||
import {delObjs, fetchList} from "/@/api/admin/config";
|
||||
import {useMessage, useMessageBox} from "/@/hooks/message";
|
||||
import {useDict} from '/@/hooks/dict';
|
||||
|
||||
// 引入组件
|
||||
const FormDialog = defineAsyncComponent(() => import('./form.vue'));
|
||||
const SenderDialog = defineAsyncComponent(() => import('./sender.vue'));
|
||||
// 定义查询字典
|
||||
const {yes_no_type} = useDict('yes_no_type')
|
||||
// 定义变量内容
|
||||
const formDialogRef = ref()
|
||||
const senderDialogRef = ref()
|
||||
// 搜索变量
|
||||
const queryRef = ref()
|
||||
const showSearch = ref(true)
|
||||
// 多选变量
|
||||
const selectObjs = ref([]) as any
|
||||
const multiple = ref(true)
|
||||
|
||||
const state: BasicTableProps = reactive<BasicTableProps>({
|
||||
queryForm: {
|
||||
configType: 'sms',
|
||||
configName: ''
|
||||
},
|
||||
pageList: fetchList
|
||||
})
|
||||
|
||||
// table hook
|
||||
const {
|
||||
getDataList,
|
||||
currentChangeHandle,
|
||||
sizeChangeHandle,
|
||||
sortChangeHandle,
|
||||
downBlobFile,
|
||||
tableStyle
|
||||
} = useTable(state)
|
||||
|
||||
// 清空搜索条件
|
||||
const resetQuery = () => {
|
||||
// 清空搜索条件
|
||||
queryRef.value?.resetFields()
|
||||
// 清空多选
|
||||
selectObjs.value = []
|
||||
getDataList()
|
||||
}
|
||||
|
||||
// 导出excel
|
||||
const exportExcel = () => {
|
||||
downBlobFile('/admin/sysMessage/export', Object.assign(state.queryForm, {ids: selectObjs}), 'sysMessage.xlsx')
|
||||
}
|
||||
|
||||
// 多选事件
|
||||
const selectionChangHandle = (objs: { id: string }[]) => {
|
||||
selectObjs.value = objs.map(({id}) => id);
|
||||
multiple.value = !objs.length;
|
||||
};
|
||||
|
||||
// 删除操作
|
||||
const handleDelete = async (ids: string[]) => {
|
||||
try {
|
||||
await useMessageBox().confirm('此操作将永久删除');
|
||||
} catch {
|
||||
return;
|
||||
}
|
||||
|
||||
try {
|
||||
await delObjs(ids);
|
||||
getDataList();
|
||||
useMessage().success('删除成功');
|
||||
} catch (err: any) {
|
||||
useMessage().error(err.msg);
|
||||
}
|
||||
};
|
||||
|
||||
// 跳转日志
|
||||
const router = useRouter();
|
||||
const handleLog = () => {
|
||||
router.push({path: '/admin/log/index', query: {serviceId: 'sms'}})
|
||||
}
|
||||
</script>
|
||||
128
src/views/tools/message/sms/sender.vue
Normal file
128
src/views/tools/message/sms/sender.vue
Normal file
@@ -0,0 +1,128 @@
|
||||
<template>
|
||||
<el-dialog title="短信发送测试" v-model="visible"
|
||||
:close-on-click-modal="false" draggable>
|
||||
<el-form ref="dataFormRef" :model="form" :rules="dataRules" formDialogRef label-width="100px" v-loading="loading">
|
||||
<el-form-item label="业务名称" prop="configName">
|
||||
<el-input v-model="form.configName" placeholder="请输入业务名称" disabled/>
|
||||
</el-form-item>
|
||||
<el-form-item label="业务编码" prop="configKey">
|
||||
<template #label>业务编码
|
||||
<tip content="代码中通过业务编码发送"/>
|
||||
</template>
|
||||
<el-input v-model="form.configKey" placeholder="请输入业务编码" disabled/>
|
||||
</el-form-item>
|
||||
<el-form-item label="接收手机号" prop="mobiles">
|
||||
<tag-list v-model="form.mobiles" buttonText="+手机号"/>
|
||||
</el-form-item>
|
||||
<el-form-item prop="data">
|
||||
<template #label>参数
|
||||
<tip content="参考短信模板参数配置 "/>
|
||||
</template>
|
||||
<json-editor
|
||||
ref="jsonEditorRef"
|
||||
v-model="form.data"
|
||||
/>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<template #footer>
|
||||
<span class="dialog-footer">
|
||||
<el-button @click="visible = false">取消</el-button>
|
||||
<el-button type="primary" @click="onSubmit" :disabled="loading">确认</el-button>
|
||||
</span>
|
||||
</template>
|
||||
</el-dialog>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts" name="SmsSenderDialog">
|
||||
// @ts-ignore
|
||||
import JsonEditor from '@axolo/json-editor-vue'
|
||||
import {useMessage} from "/@/hooks/message";
|
||||
import {getObj} from '/@/api/admin/config'
|
||||
import {sendSms} from '/@/api/admin/message'
|
||||
import {rule} from "/@/utils/validate";
|
||||
|
||||
const emit = defineEmits(['refresh']);
|
||||
|
||||
// 定义变量内容
|
||||
const dataFormRef = ref();
|
||||
const visible = ref(false)
|
||||
const loading = ref(false)
|
||||
|
||||
// 提交表单数据
|
||||
const form = reactive({
|
||||
configType: 'sms',
|
||||
configKey: 'sms',
|
||||
configName: '',
|
||||
mobiles: [],
|
||||
bizCode: '',
|
||||
id: '',
|
||||
params: {},
|
||||
data: `{
|
||||
"code": "1234"
|
||||
}`
|
||||
});
|
||||
|
||||
// 定义校验规则
|
||||
const dataRules = ref({
|
||||
data: [
|
||||
{required: true, message: '参数名称不能为空', trigger: 'blur'}, {validator: rule.json, trigger: 'blur'}
|
||||
],
|
||||
mobiles: [
|
||||
{required: true, message: '手机号不能为空', trigger: 'blur'}, {validator: rule.validatePhone, trigger: 'blur'},
|
||||
]
|
||||
})
|
||||
|
||||
// 打开弹窗
|
||||
const openDialog = (id: string) => {
|
||||
visible.value = true
|
||||
form.id = ''
|
||||
|
||||
// 重置表单数据
|
||||
nextTick(() => {
|
||||
dataFormRef.value?.resetFields();
|
||||
});
|
||||
|
||||
// 获取sysMessage信息
|
||||
if (id) {
|
||||
form.id = id
|
||||
getConfigData(id)
|
||||
}
|
||||
};
|
||||
|
||||
// 提交
|
||||
const onSubmit = async () => {
|
||||
const valid = await dataFormRef.value.validate().catch(() => {
|
||||
});
|
||||
if (!valid) return false;
|
||||
|
||||
try {
|
||||
loading.value = true;
|
||||
form.params = JSON.parse(form.data)
|
||||
await sendSms(form)
|
||||
useMessage().success('发送成功');
|
||||
} catch (err: any) {
|
||||
useMessage().error(err.msg);
|
||||
} finally {
|
||||
form.data = JSON.stringify(form.params)
|
||||
loading.value = false;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
// 初始化表单数据
|
||||
const getConfigData = (id: string) => {
|
||||
// 获取数据
|
||||
loading.value = true
|
||||
getObj({id}).then((res: any) => {
|
||||
Object.assign(form, res.data[0])
|
||||
form.bizCode = form.configKey
|
||||
}).finally(() => {
|
||||
loading.value = false
|
||||
})
|
||||
};
|
||||
|
||||
// 暴露变量
|
||||
defineExpose({
|
||||
openDialog
|
||||
});
|
||||
</script>
|
||||
Reference in New Issue
Block a user