426 lines
13 KiB
Vue
Raw Normal View History

<template>
2023-04-09 18:14:58 +08:00
<doc-alert title="自动回复" url="https://doc.iocoder.cn/mp/auto-reply/" />
2023-04-09 11:59:15 +08:00
2023-04-09 18:14:58 +08:00
<!-- 搜索工作栏 -->
<ContentWrap>
2023-04-12 13:29:24 +08:00
<el-form class="-mb-15px" :model="queryParams" :inline="true" label-width="68px">
<el-form-item label="公众号" prop="accountId">
<WxMpSelect @change="onAccountChanged" />
</el-form-item>
</el-form>
2023-04-09 18:14:58 +08:00
</ContentWrap>
2023-04-09 11:59:15 +08:00
2023-04-09 18:14:58 +08:00
<!-- tab 切换 -->
<ContentWrap>
2023-04-12 13:29:24 +08:00
<el-tabs v-model="msgType" @tab-change="handleTabChange">
2023-04-09 18:14:58 +08:00
<!-- 操作工具栏 -->
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
plain
@click="handleAdd"
v-hasPermi="['mp:auto-reply:create']"
2023-04-12 13:29:24 +08:00
v-if="msgType !== MsgType.Follow || list.length <= 0"
2023-04-09 18:14:58 +08:00
>
<Icon icon="ep:plus" />新增
</el-button>
</el-col>
</el-row>
<!-- tab -->
2023-04-12 13:29:24 +08:00
<el-tab-pane :name="MsgType.Follow">
2023-04-09 18:14:58 +08:00
<template #label>
2023-04-12 13:29:24 +08:00
<span><Icon icon="ep:star" /> 关注时回复</span>
2023-04-09 18:14:58 +08:00
</template>
</el-tab-pane>
2023-04-12 13:29:24 +08:00
<el-tab-pane :name="MsgType.Message">
2023-04-09 18:14:58 +08:00
<template #label>
<span><Icon icon="ep:chat-line-round" /> 消息回复</span>
</template>
</el-tab-pane>
2023-04-12 13:29:24 +08:00
<el-tab-pane :name="MsgType.Keyword">
2023-04-09 18:14:58 +08:00
<template #label>
2023-04-12 13:29:24 +08:00
<span><Icon icon="fa:newspaper-o" /> 关键词回复</span>
2023-04-09 18:14:58 +08:00
</template>
</el-tab-pane>
</el-tabs>
2023-04-09 13:41:14 +08:00
<!-- 列表 -->
2023-04-09 18:14:58 +08:00
<el-table v-loading="loading" :data="list">
<el-table-column
label="请求消息类型"
align="center"
prop="requestMessageType"
2023-04-12 13:29:24 +08:00
v-if="msgType === MsgType.Message"
2023-04-09 18:14:58 +08:00
/>
2023-04-12 13:29:24 +08:00
<el-table-column
label="关键词"
align="center"
prop="requestKeyword"
v-if="msgType === MsgType.Keyword"
/>
<el-table-column
label="匹配类型"
align="center"
prop="requestMatch"
v-if="msgType === MsgType.Keyword"
>
2023-04-09 18:14:58 +08:00
<template #default="scope">
<dict-tag :type="DICT_TYPE.MP_AUTO_REPLY_REQUEST_MATCH" :value="scope.row.requestMatch" />
</template>
</el-table-column>
<el-table-column label="回复消息类型" align="center">
<template #default="scope">
<dict-tag :type="DICT_TYPE.MP_MESSAGE_TYPE" :value="scope.row.responseMessageType" />
</template>
</el-table-column>
<el-table-column label="回复内容" align="center">
<template #default="scope">
<div v-if="scope.row.responseMessageType === 'text'">{{ scope.row.responseContent }}</div>
<div v-else-if="scope.row.responseMessageType === 'voice'">
2023-04-12 13:29:24 +08:00
<WxVoicePlayer v-if="scope.row.responseMediaUrl" :url="scope.row.responseMediaUrl" />
2023-04-09 18:14:58 +08:00
</div>
<div v-else-if="scope.row.responseMessageType === 'image'">
<a target="_blank" :href="scope.row.responseMediaUrl">
<img :src="scope.row.responseMediaUrl" style="width: 100px" />
</a>
</div>
<div
v-else-if="
scope.row.responseMessageType === 'video' ||
scope.row.responseMessageType === 'shortvideo'
"
>
2023-04-12 13:29:24 +08:00
<WxVideoPlayer
v-if="scope.row.responseMediaUrl"
:url="scope.row.responseMediaUrl"
style="margin-top: 10px"
/>
2023-04-09 18:14:58 +08:00
</div>
<div v-else-if="scope.row.responseMessageType === 'news'">
<WxNews :articles="scope.row.responseArticles" />
</div>
<div v-else-if="scope.row.responseMessageType === 'music'">
<WxMusic
:title="scope.row.responseTitle"
:description="scope.row.responseDescription"
:thumb-media-url="scope.row.responseThumbMediaUrl"
:music-url="scope.row.responseMusicUrl"
:hq-music-url="scope.row.responseHqMusicUrl"
2023-04-09 11:59:15 +08:00
/>
2023-04-09 18:14:58 +08:00
</div>
</template>
</el-table-column>
<el-table-column
label="创建时间"
align="center"
prop="createTime"
:formatter="dateFormatter"
width="180"
/>
<el-table-column label="操作" align="center">
<template #default="scope">
<el-button
type="primary"
link
@click="handleUpdate(scope.row)"
v-hasPermi="['mp:auto-reply:update']"
>
修改
</el-button>
<el-button
type="danger"
link
@click="handleDelete(scope.row)"
v-hasPermi="['mp:auto-reply:delete']"
>
删除
</el-button>
</template>
</el-table-column>
</el-table>
2023-04-09 11:59:15 +08:00
2023-04-09 18:14:58 +08:00
<!-- 添加或修改自动回复的对话框 -->
2023-04-12 13:29:24 +08:00
<el-dialog :title="title" v-model="showReplyFormDialog" width="800px" append-to-body>
<el-form ref="formRef" :model="replyForm" :rules="rules" label-width="80px">
<el-form-item label="消息类型" prop="requestMessageType" v-if="msgType === MsgType.Message">
<el-select v-model="replyForm.requestMessageType" placeholder="请选择">
2023-04-09 18:14:58 +08:00
<template v-for="dict in getDictOptions(DICT_TYPE.MP_MESSAGE_TYPE)" :key="dict.value">
2023-04-09 11:59:15 +08:00
<el-option
2023-04-12 13:29:24 +08:00
v-if="RequestMessageTypes.includes(dict.value)"
2023-04-09 11:59:15 +08:00
:label="dict.label"
2023-04-09 18:14:58 +08:00
:value="dict.value"
2023-04-09 11:59:15 +08:00
/>
2023-04-09 18:14:58 +08:00
</template>
</el-select>
</el-form-item>
2023-04-12 13:29:24 +08:00
<el-form-item label="匹配类型" prop="requestMatch" v-if="msgType === MsgType.Keyword">
<el-select v-model="replyForm.requestMatch" placeholder="请选择匹配类型" clearable>
2023-04-09 18:14:58 +08:00
<el-option
v-for="dict in getDictOptions(DICT_TYPE.MP_AUTO_REPLY_REQUEST_MATCH)"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</el-form-item>
2023-04-12 13:29:24 +08:00
<el-form-item label="关键词" prop="requestKeyword" v-if="msgType === MsgType.Keyword">
<el-input v-model="replyForm.requestKeyword" placeholder="请输入内容" clearable />
2023-04-09 18:14:58 +08:00
</el-form-item>
<el-form-item label="回复消息">
<WxReplySelect :objData="objData" v-if="hackResetWxReplySelect" />
</el-form-item>
</el-form>
<template #footer>
2023-04-09 18:49:54 +08:00
<el-button @click="cancel"> </el-button>
<el-button type="primary" @click="handleSubmit"> </el-button>
2023-04-09 18:14:58 +08:00
</template>
</el-dialog>
</ContentWrap>
</template>
2023-04-12 13:29:24 +08:00
<script setup lang="ts" name="MpAutoReply">
2023-04-09 11:59:15 +08:00
import WxVideoPlayer from '@/views/mp/components/wx-video-play/main.vue'
import WxVoicePlayer from '@/views/mp/components/wx-voice-play/main.vue'
import WxMusic from '@/views/mp/components/wx-music/main.vue'
import WxNews from '@/views/mp/components/wx-news/main.vue'
import WxReplySelect from '@/views/mp/components/wx-reply/main.vue'
2023-04-12 13:29:24 +08:00
import WxMpSelect from '@/views/mp/components/WxMpSelect.vue'
import * as MpAutoReplyApi from '@/api/mp/autoReply'
2023-04-09 11:59:15 +08:00
import { DICT_TYPE, getDictOptions } from '@/utils/dict'
2023-04-09 13:41:14 +08:00
import { dateFormatter } from '@/utils/formatTime'
2023-04-09 11:59:15 +08:00
import { ContentWrap } from '@/components/ContentWrap'
import type { TabPaneName } from 'element-plus'
2023-04-09 11:59:15 +08:00
const message = useMessage()
const formRef = ref()
2023-04-12 13:29:24 +08:00
// 消息类型Follow: 关注时回复Message: 消息回复Keyword: 关键词回复)
// 作为tab.name
enum MsgType {
Follow = 1,
Message = 2,
Keyword = 3
}
const msgType = ref<MsgType>(MsgType.Keyword)
2023-04-09 11:59:15 +08:00
// 允许选择的请求消息类型
2023-04-12 13:29:24 +08:00
const RequestMessageTypes = ['text', 'image', 'voice', 'video', 'shortvideo', 'location', 'link']
2023-04-09 11:59:15 +08:00
// 遮罩层
const loading = ref(true)
// 总条数
const total = ref(0)
// 自动回复列表
2023-04-12 13:29:24 +08:00
const list = ref<any[]>([])
2023-04-09 11:59:15 +08:00
// 查询参数
2023-04-12 13:29:24 +08:00
interface QueryParams {
pageNo: number
pageSize: number
accountId?: number
}
const queryParams: QueryParams = reactive({
2023-04-09 11:59:15 +08:00
pageNo: 1,
pageSize: 10,
accountId: undefined
})
// 弹出层标题
const title = ref('')
// 是否显示弹出层
2023-04-12 13:29:24 +08:00
const showReplyFormDialog = ref(false)
2023-04-09 11:59:15 +08:00
// 表单参数
2023-04-12 13:29:24 +08:00
type ReplyType = 'text' | 'image' | 'voice' | 'video' | 'shortvideo' | 'location' | 'link'
interface ReplyForm {
// relation:
id?: number
accountId?: number
type?: MsgType
// request:
requestMessageType?: ReplyType
requestMatch?: number
requestKeyword?: string
// response:
responseMessageType?: ReplyType
responseContent?: string
responseMediaId?: number
responseMediaUrl?: string
responseTitle?: string
responseDescription?: number
responseThumbMediaId?: string
responseThumbMediaUrl?: string
responseArticles?: any[]
responseMusicUrl?: string
responseHqMusicUrl?: string
}
interface ObjData {
type: ReplyType
accountId?: number
content?: string
mediaId?: number
url?: string
title?: string
description?: string
thumbMediaId?: number
thumbMediaUrl?: string
articles?: any[]
musicUrl?: string
hqMusicUrl?: string
}
const replyForm = ref<ReplyForm>({})
2023-04-09 11:59:15 +08:00
// 回复消息
2023-04-12 13:29:24 +08:00
const objData = ref<ObjData>({
type: 'text',
accountId: undefined
2023-04-09 11:59:15 +08:00
})
// 表单校验
const rules = {
requestKeyword: [{ required: true, message: '请求的关键字不能为空', trigger: 'blur' }],
requestMatch: [{ required: true, message: '请求的关键字的匹配不能为空', trigger: 'blur' }]
}
// 重置 WxReplySelect 组件,解决无法清除的问题
const hackResetWxReplySelect = ref(false)
2023-04-09 11:59:15 +08:00
2023-04-12 13:29:24 +08:00
const onAccountChanged = (id?: number) => {
queryParams.accountId = id
getList()
}
2023-04-09 11:59:15 +08:00
/** 查询列表 */
const getList = async () => {
loading.value = false
try {
const data = await MpAutoReplyApi.getAutoReplyPage({
...queryParams,
2023-04-12 13:29:24 +08:00
type: msgType.value
})
2023-04-09 11:59:15 +08:00
list.value = data.list
total.value = data.total
} finally {
2023-04-09 11:59:15 +08:00
loading.value = false
}
2023-04-09 11:59:15 +08:00
}
/** 搜索按钮操作 */
const handleQuery = () => {
queryParams.pageNo = 1
getList()
}
2023-04-12 13:29:24 +08:00
const handleTabChange = (tabName: TabPaneName) => {
msgType.value = tabName as MsgType
2023-04-09 11:59:15 +08:00
handleQuery()
}
/** 新增按钮操作 */
const handleAdd = () => {
reset()
resetEditor()
// 打开表单,并设置初始化
objData.value = {
type: 'text',
accountId: queryParams.accountId
}
2023-04-12 13:29:24 +08:00
title.value = '新增自动回复'
showReplyFormDialog.value = true
2023-04-09 11:59:15 +08:00
}
/** 修改按钮操作 */
2023-04-12 13:29:24 +08:00
const handleUpdate = async (row: any) => {
2023-04-09 11:59:15 +08:00
reset()
resetEditor()
2023-04-12 13:29:24 +08:00
const data = await MpAutoReplyApi.getAutoReply(row.id)
// 设置属性
replyForm.value = { ...data }
delete replyForm.value['responseMessageType']
delete replyForm.value['responseContent']
delete replyForm.value['responseMediaId']
delete replyForm.value['responseMediaUrl']
delete replyForm.value['responseDescription']
delete replyForm.value['responseArticles']
objData.value = {
type: data.responseMessageType,
accountId: queryParams.accountId,
content: data.responseContent,
mediaId: data.responseMediaId,
url: data.responseMediaUrl,
title: data.responseTitle,
description: data.responseDescription,
thumbMediaId: data.responseThumbMediaId,
thumbMediaUrl: data.responseThumbMediaUrl,
articles: data.responseArticles,
musicUrl: data.responseMusicUrl,
hqMusicUrl: data.responseHqMusicUrl
}
2023-04-09 11:59:15 +08:00
2023-04-12 13:29:24 +08:00
// 打开表单
title.value = '修改自动回复'
showReplyFormDialog.value = true
2023-04-09 11:59:15 +08:00
}
2023-04-12 13:29:24 +08:00
const handleSubmit = async () => {
const valid = await formRef.value?.validate()
if (!valid) return
2023-04-09 11:59:15 +08:00
2023-04-12 13:29:24 +08:00
// 处理回复消息
const submitForm: any = { ...replyForm.value }
submitForm.responseMessageType = objData.value.type
submitForm.responseContent = objData.value.content
submitForm.responseMediaId = objData.value.mediaId
submitForm.responseMediaUrl = objData.value.url
submitForm.responseTitle = objData.value.title
submitForm.responseDescription = objData.value.description
submitForm.responseThumbMediaId = objData.value.thumbMediaId
submitForm.responseThumbMediaUrl = objData.value.thumbMediaUrl
submitForm.responseArticles = objData.value.articles
submitForm.responseMusicUrl = objData.value.musicUrl
submitForm.responseHqMusicUrl = objData.value.hqMusicUrl
2023-04-09 11:59:15 +08:00
2023-04-12 13:29:24 +08:00
if (replyForm.value.id !== undefined) {
await MpAutoReplyApi.updateAutoReply(submitForm)
message.success('修改成功')
} else {
await MpAutoReplyApi.createAutoReply(submitForm)
message.success('新增成功')
}
showReplyFormDialog.value = false
getList()
2023-04-09 11:59:15 +08:00
}
// 表单重置
const reset = () => {
2023-04-12 13:29:24 +08:00
replyForm.value = {
2023-04-09 11:59:15 +08:00
id: undefined,
accountId: queryParams.accountId,
2023-04-12 13:29:24 +08:00
type: msgType.value,
2023-04-09 11:59:15 +08:00
requestKeyword: undefined,
2023-04-12 13:29:24 +08:00
requestMatch: msgType.value === MsgType.Keyword ? 1 : undefined,
2023-04-09 11:59:15 +08:00
requestMessageType: undefined
}
formRef.value?.resetFields()
}
// 取消按钮
const cancel = () => {
2023-04-12 13:29:24 +08:00
showReplyFormDialog.value = false
2023-04-09 11:59:15 +08:00
reset()
}
// 表单 Editor 重置
const resetEditor = () => {
hackResetWxReplySelect.value = false // 销毁组件
nextTick(() => {
hackResetWxReplySelect.value = true // 重建组件
})
}
const handleDelete = async (row) => {
await message.confirm('是否确认删除此数据?')
await MpAutoReplyApi.deleteAutoReply(row.id)
2023-04-09 11:59:15 +08:00
await getList()
message.success('删除成功')
}
</script>