|
|
|
<template>
|
|
|
|
<ContentWrap>
|
|
|
|
<!-- 搜索工作栏 -->
|
|
|
|
<el-form class="-mb-15px" :model="queryParams" ref="queryFormRef" :inline="true" label-width="100px">
|
|
|
|
<el-form-item label="手机号" prop="mobile">
|
|
|
|
<el-input v-model="queryParams.mobile" placeholder="请输入手机号" clearable @keyup.enter="handleQuery"
|
|
|
|
class="!w-240px" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="短信渠道" prop="channelId">
|
|
|
|
<el-select v-model="queryParams.channelId" placeholder="请选择短信渠道" clearable class="!w-240px">
|
|
|
|
<el-option v-for="channel in channelList" :key="channel.id" :value="channel.id" :label="channel.signature +
|
|
|
|
`【 ${getDictLabel(DICT_TYPE.SYSTEM_SMS_CHANNEL_CODE, channel.code)}】`
|
|
|
|
" />
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="模板编号" prop="templateId">
|
|
|
|
<el-input v-model="queryParams.templateId" placeholder="请输入模板编号" clearable @keyup.enter="handleQuery"
|
|
|
|
class="!w-240px" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="发送状态" prop="sendStatus">
|
|
|
|
<el-select v-model="queryParams.sendStatus" placeholder="请选择发送状态" clearable class="!w-240px">
|
|
|
|
<el-option v-for="dict in getIntDictOptions(DICT_TYPE.SYSTEM_SMS_SEND_STATUS)" :key="dict.value"
|
|
|
|
:label="dict.label" :value="dict.value" />
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="发送时间" prop="sendTime">
|
|
|
|
<el-date-picker v-model="queryParams.sendTime" value-format="YYYY-MM-DD HH:mm:ss" type="daterange"
|
|
|
|
start-placeholder="开始日期" end-placeholder="结束日期" class="!w-240px" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="接收状态" prop="receiveStatus">
|
|
|
|
<el-select v-model="queryParams.receiveStatus" placeholder="请选择接收状态" clearable class="!w-240px">
|
|
|
|
<el-option v-for="dict in getIntDictOptions(DICT_TYPE.SYSTEM_SMS_RECEIVE_STATUS)" :key="dict.value"
|
|
|
|
:label="dict.label" :value="dict.value" />
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="接收时间" prop="receiveTime">
|
|
|
|
<el-date-picker v-model="queryParams.receiveTime" value-format="YYYY-MM-DD HH:mm:ss" type="daterange"
|
|
|
|
start-placeholder="开始日期" end-placeholder="结束日期" class="!w-240px" />
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item>
|
|
|
|
<el-button type="info" plain @click="handleQuery">
|
|
|
|
<Icon icon="ep:search" class="mr-5px" /> 搜索
|
|
|
|
</el-button>
|
|
|
|
<el-button type="info" plain @click="resetQuery">
|
|
|
|
<Icon icon="ep:refresh" class="mr-5px" /> 重置
|
|
|
|
</el-button>
|
|
|
|
<el-button type="success" @click="handleExport" :loading="exportLoading" v-hasPermi="['system:sms-log:export']">
|
|
|
|
<Icon icon="ep:download" class="mr-5px" /> 导出
|
|
|
|
</el-button>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
</ContentWrap>
|
|
|
|
|
|
|
|
<!-- 列表 -->
|
|
|
|
<ContentWrap>
|
|
|
|
<el-table v-loading="loading" :data="list">
|
|
|
|
<el-table-column label="编号" align="center" prop="id" />
|
|
|
|
<el-table-column label="创建时间" align="center" prop="createTime" width="180" :formatter="dateFormatter" />
|
|
|
|
<el-table-column label="手机号" align="center" prop="mobile" width="120">
|
|
|
|
<template #default="scope">
|
|
|
|
<div>{{ scope.row.mobile }}</div>
|
|
|
|
<div v-if="scope.row.userType && scope.row.userId">
|
|
|
|
<dict-tag :type="DICT_TYPE.USER_TYPE" :value="scope.row.userType" />
|
|
|
|
{{ '(' + scope.row.userId + ')' }}
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="短信内容" align="center" prop="templateContent" width="300" />
|
|
|
|
<el-table-column label="发送状态" align="center" width="180">
|
|
|
|
<template #default="scope">
|
|
|
|
<dict-tag :type="DICT_TYPE.SYSTEM_SMS_SEND_STATUS" :value="scope.row.sendStatus" />
|
|
|
|
<div>{{ formatDate(scope.row.sendTime) }}</div>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="接收状态" align="center" width="180">
|
|
|
|
<template #default="scope">
|
|
|
|
<dict-tag :type="DICT_TYPE.SYSTEM_SMS_RECEIVE_STATUS" :value="scope.row.receiveStatus" />
|
|
|
|
<div>{{ formatDate(scope.row.receiveTime) }}</div>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="短信渠道" align="center" width="120">
|
|
|
|
<template #default="scope">
|
|
|
|
<div>
|
|
|
|
{{ channelList.find((channel) => channel.id === scope.row.channelId)?.signature }}
|
|
|
|
</div>
|
|
|
|
<dict-tag :type="DICT_TYPE.SYSTEM_SMS_CHANNEL_CODE" :value="scope.row.channelCode" />
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="模板编号" align="center" prop="templateId" />
|
|
|
|
<el-table-column label="短信类型" align="center" prop="templateType">
|
|
|
|
<template #default="scope">
|
|
|
|
<dict-tag :type="DICT_TYPE.SYSTEM_SMS_TEMPLATE_TYPE" :value="scope.row.templateType" />
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="操作" align="center" fixed="right" width="120" class-name="fixed-width">
|
|
|
|
<template #default="scope">
|
|
|
|
<el-button link type="primary" @click="openDetail(scope.row)" v-hasPermi="['system:sms-log:query']">
|
|
|
|
<Icon icon="ep:document-copy" />
|
|
|
|
详情
|
|
|
|
</el-button>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
<!-- 分页 -->
|
|
|
|
<Pagination :total="total" v-model:page="queryParams.pageNo" v-model:limit="queryParams.pageSize"
|
|
|
|
@pagination="getList" />
|
|
|
|
</ContentWrap>
|
|
|
|
|
|
|
|
<!-- 表单弹窗:详情 -->
|
|
|
|
<SmsLogDetail ref="detailRef" />
|
|
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { DICT_TYPE, getIntDictOptions, getDictLabel } from '@/utils/dict'
|
|
|
|
import { dateFormatter, formatDate } from '@/utils/formatTime'
|
|
|
|
import download from '@/utils/download'
|
|
|
|
import * as SmsChannelApi from '@/api/system/sms/smsChannel'
|
|
|
|
import * as SmsLogApi from '@/api/system/sms/smsLog'
|
|
|
|
import SmsLogDetail from './SmsLogDetail.vue'
|
|
|
|
import { usePageLoading } from '@/hooks/web/usePageLoading'
|
|
|
|
const { loadStart, loadDone } = usePageLoading()
|
|
|
|
defineOptions({ name: 'SystemSmsLog' })
|
|
|
|
|
|
|
|
const message = useMessage() // 消息弹窗
|
|
|
|
|
|
|
|
const loading = ref(false) // 列表的加载中
|
|
|
|
const total = ref(0) // 列表的总页数
|
|
|
|
const list = ref([]) // 列表的数据
|
|
|
|
const queryFormRef = ref() // 搜索的表单
|
|
|
|
const queryParams = reactive({
|
|
|
|
pageNo: 1,
|
|
|
|
pageSize: 10,
|
|
|
|
channelId: null,
|
|
|
|
templateId: null,
|
|
|
|
mobile: '',
|
|
|
|
sendStatus: null,
|
|
|
|
receiveStatus: null,
|
|
|
|
sendTime: [],
|
|
|
|
receiveTime: []
|
|
|
|
})
|
|
|
|
const exportLoading = ref(false) // 导出的加载中
|
|
|
|
const channelList = ref([]) // 短信渠道列表
|
|
|
|
|
|
|
|
/** 查询列表 */
|
|
|
|
const getList = async () => {
|
|
|
|
loading.value = true
|
|
|
|
try {
|
|
|
|
const data = await SmsLogApi.getSmsLogPage(queryParams)
|
|
|
|
list.value = data.list
|
|
|
|
total.value = data.total
|
|
|
|
} finally {
|
|
|
|
loading.value = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
const handleQuery = () => {
|
|
|
|
queryParams.pageNo = 1
|
|
|
|
getList()
|
|
|
|
}
|
|
|
|
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
const resetQuery = () => {
|
|
|
|
queryFormRef.value.resetFields()
|
|
|
|
handleQuery()
|
|
|
|
}
|
|
|
|
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
const handleExport = async () => {
|
|
|
|
try {
|
|
|
|
// 导出的二次确认
|
|
|
|
await message.exportConfirm()
|
|
|
|
// 发起导出
|
|
|
|
loadStart()
|
|
|
|
const data = await SmsLogApi.exportSmsLog(queryParams)
|
|
|
|
download.excel(data, '短信日志.xlsx')
|
|
|
|
} catch {
|
|
|
|
} finally {
|
|
|
|
loadDone()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** 详情操作 */
|
|
|
|
const detailRef = ref()
|
|
|
|
const openDetail = (data: SmsLogApi.SmsLogVO) => {
|
|
|
|
detailRef.value.open(data)
|
|
|
|
}
|
|
|
|
|
|
|
|
/** 初始化 **/
|
|
|
|
onMounted(async () => {
|
|
|
|
await getList()
|
|
|
|
// 加载渠道列表
|
|
|
|
channelList.value = await SmsChannelApi.getSimpleSmsChannelList()
|
|
|
|
})
|
|
|
|
</script>
|