feat: 消息迁移

This commit is contained in:
dylanmay
2025-11-04 14:31:32 +08:00
parent cb9fc7ad3f
commit c2b0a91ffc
41 changed files with 3524 additions and 25 deletions

View File

@@ -43,9 +43,11 @@
"@vben/styles": "workspace:*",
"@vben/types": "workspace:*",
"@vben/utils": "workspace:*",
"@videojs-player/vue": "^1.0.0",
"@vueuse/core": "catalog:",
"@vueuse/integrations": "catalog:",
"ant-design-vue": "catalog:",
"benz-amr-recorder": "^1.1.5",
"bpmn-js": "catalog:",
"bpmn-js-properties-panel": "catalog:",
"bpmn-js-token-simulation": "catalog:",
@@ -55,9 +57,11 @@
"diagram-js": "catalog:",
"fast-xml-parser": "catalog:",
"highlight.js": "catalog:",
"lodash": "^4.17.21",
"pinia": "catalog:",
"steady-xml": "catalog:",
"tinymce": "catalog:",
"video.js": "^7.21.5",
"vue": "catalog:",
"vue-dompurify-html": "catalog:",
"vue-router": "catalog:",

View File

@@ -5,12 +5,12 @@ import { requestClient } from '#/api/request';
export namespace MpAccountApi {
/** 公众号账号信息 */
export interface Account {
id?: number;
id: number;
name: string;
account: string;
appId: string;
appSecret: string;
token: string;
account?: string;
appId?: string;
appSecret?: string;
token?: string;
aesKey?: string;
qrCodeUrl?: string;
remark?: string;
@@ -23,6 +23,10 @@ export namespace MpAccountApi {
}
}
// 重新导出类型,方便使用
export type Account = MpAccountApi.Account;
export type AccountSimple = MpAccountApi.AccountSimple;
/** 查询公众号账号列表 */
export function getAccountPage(params: PageParam) {
return requestClient.get<PageResult<MpAccountApi.Account>>(

View File

@@ -29,5 +29,11 @@
"tenant": {
"placeholder": "请选择租户",
"success": "切换租户成功"
},
"mp": {
"upload": {
"invalidFormat": "上传{0}格式不对!",
"maxSize": "上传{0}大小不能超过{1}M!"
}
}
}

View File

@@ -1 +1,2 @@
export * from './auth';
export * from './tagsView';

View File

@@ -0,0 +1,176 @@
import type { RouteLocationNormalizedLoaded } from 'vue-router';
import { useRouter } from 'vue-router';
import { findIndex } from 'lodash';
import { defineStore } from 'pinia';
import { getRawRoute } from '../utils/routerHelper';
const router = useRouter();
export interface TagsViewState {
visitedViews: RouteLocationNormalizedLoaded[];
cachedViews: Set<string>;
}
export const useTagsViewStore = defineStore('tagsView', {
state: (): TagsViewState => ({
visitedViews: [],
cachedViews: new Set(),
}),
getters: {
getVisitedViews(): RouteLocationNormalizedLoaded[] {
return this.visitedViews;
},
getCachedViews(): string[] {
return [...this.cachedViews];
},
},
actions: {
/** 新增缓存和tag */
addView(view: RouteLocationNormalizedLoaded): void {
this.addVisitedView(view);
this.addCachedView();
},
/** 新增tag */
addVisitedView(view: RouteLocationNormalizedLoaded) {
if (this.visitedViews.some((v) => v.fullPath === view.fullPath)) return;
if (view.meta?.noTagsView) return;
const visitedView = Object.assign({}, view, {
title: view.meta?.title || 'no-name',
});
if (visitedView.meta) {
const suffixList: string[] = [];
this.visitedViews.forEach((v) => {
if (
v.path === visitedView.path &&
v.meta?.title === visitedView.meta?.title
) {
const rawSuffix = v.meta?.titleSuffix;
const suffixStr =
typeof rawSuffix === 'string' || typeof rawSuffix === 'number'
? `${rawSuffix}`
: undefined;
suffixList.push(suffixStr ?? '1');
}
});
if (suffixList.length > 0) {
let suffix = 1;
while (suffixList.includes(`${suffix}`)) suffix += 1;
visitedView.meta.titleSuffix = suffix === 1 ? undefined : `${suffix}`;
}
}
this.visitedViews.push(visitedView);
},
/** 新增缓存 */
addCachedView() {
const cacheMap: Set<string> = new Set();
for (const v of this.visitedViews) {
const item = getRawRoute(v);
if (!item.meta?.noCache) {
const name = item.name as string;
cacheMap.add(name);
}
}
if (
[...this.cachedViews].sort().toString() ===
[...cacheMap].sort().toString()
) {
return;
}
this.cachedViews = cacheMap;
},
/** 删除某个tag和缓存 */
delView(view: RouteLocationNormalizedLoaded) {
this.delVisitedView(view);
this.delCachedView();
},
/** 删除tag */
delVisitedView(view: RouteLocationNormalizedLoaded) {
const index = findIndex<RouteLocationNormalizedLoaded>(
this.visitedViews,
(v) => v.fullPath === view.fullPath,
);
if (index > -1) this.visitedViews.splice(index, 1);
},
/** 删除缓存 */
delCachedView() {
const route = router.currentRoute.value;
const index = findIndex<string>(
this.getCachedViews,
(v) => v === route.name,
);
if (index > -1) {
const name = this.getCachedViews[index] as string;
this.cachedViews.delete(name);
}
},
/** 删除全部tag和缓存 */
delAllViews() {
this.visitedViews = [];
this.cachedViews.clear();
},
/** 删除其他tag和缓存 */
delOthersViews(view: RouteLocationNormalizedLoaded) {
this.visitedViews = this.visitedViews.filter(
(v) => v?.meta?.affix || v.fullPath === view.fullPath,
);
this.addCachedView();
},
/** 删除左侧tag */
delLeftViews(view: RouteLocationNormalizedLoaded) {
const index = findIndex<RouteLocationNormalizedLoaded>(
this.visitedViews,
(v) => v.fullPath === view.fullPath,
);
if (index > -1) {
this.visitedViews = this.visitedViews.filter(
(v, i) => v?.meta?.affix || v.fullPath === view.fullPath || i > index,
);
this.addCachedView();
}
},
/** 删除右侧tag */
delRightViews(view: RouteLocationNormalizedLoaded) {
const index = findIndex<RouteLocationNormalizedLoaded>(
this.visitedViews,
(v) => v.fullPath === view.fullPath,
);
if (index > -1) {
this.visitedViews = this.visitedViews.filter(
(v, i) => v?.meta?.affix || v.fullPath === view.fullPath || i < index,
);
this.addCachedView();
}
},
/** 更新tag */
updateVisitedView(view: RouteLocationNormalizedLoaded) {
const index = findIndex<RouteLocationNormalizedLoaded>(
this.visitedViews,
(v) => v.fullPath === view.fullPath,
);
if (index > -1) {
this.visitedViews[index] = {
...this.visitedViews[index],
...view,
} as RouteLocationNormalizedLoaded;
}
},
},
});

View File

@@ -1,3 +1,5 @@
import type { RouteLocationNormalizedLoaded } from 'vue-router';
import { defineAsyncComponent } from 'vue';
const modules = import.meta.glob('../views/**/*.{vue,tsx}');
@@ -14,3 +16,14 @@ export function registerComponent(componentPath: string) {
}
}
}
export function getRawRoute(
route: RouteLocationNormalizedLoaded,
): RouteLocationNormalizedLoaded {
if (!route) return route;
const { matched, ...others } = route;
return {
...others,
matched: matched ? matched.map((m) => ({ ...m })) : [],
};
}

View File

@@ -0,0 +1 @@
export { default } from './main.vue';

View File

@@ -0,0 +1,82 @@
<script lang="ts" setup>
import { onMounted, reactive, ref, unref } from 'vue';
import { useRouter } from 'vue-router';
import { message } from 'ant-design-vue';
import * as MpAccountApi from '#/api/mp/account';
import { useTagsViewStore } from '#/store';
defineOptions({ name: 'WxAccountSelect' });
// 定义事件
const emit = defineEmits<{
(e: 'change', id: number, name: string): void;
}>();
// 消息弹窗
const { delView } = useTagsViewStore();
const { push, currentRoute } = useRouter();
// 当前选中的公众号
const account: MpAccountApi.Account = reactive({
id: -1,
name: '',
});
// 公众号列表
const accountList = ref<MpAccountApi.Account[]>([]);
// 查询公众号列表
const handleQuery = async () => {
accountList.value = await MpAccountApi.getSimpleAccountList();
if (accountList.value.length === 0) {
message.error('未配置公众号,请在【公众号管理 -> 账号管理】菜单,进行配置');
delView(unref(currentRoute));
await push({ name: 'MpAccount' });
return;
}
// 默认选中第一个,如无数据则不执行
const first = accountList.value[0];
if (first) {
account.id = first.id;
account.name = first.name;
emit('change', account.id, account.name);
}
};
// 切换选中公众号
const onChanged = (id?: number) => {
const found = accountList.value.find((v) => v.id === id);
if (found) {
account.name = found.name;
emit('change', account.id, account.name);
}
};
// 初始化
onMounted(handleQuery);
</script>
<template>
<a-select
v-model:value="account.id"
placeholder="请选择公众号"
class="!w-240px"
@change="onChanged"
>
<a-select-option
v-for="item in accountList"
:key="item.id"
:value="item.id"
>
{{ item.name }}
</a-select-option>
</a-select>
</template>
<style scoped>
.w-240px {
width: 240px;
}
</style>

View File

@@ -0,0 +1 @@
export { default } from './main.vue';

View File

@@ -0,0 +1,53 @@
<script lang="ts" setup>
import { computed } from 'vue';
import { IconifyIcon } from '@vben/icons';
import { Col, Row } from 'ant-design-vue';
defineOptions({ name: 'WxLocation' });
const props = withDefaults(
defineProps<{
label: string;
locationX: number;
locationY: number;
qqMapKey?: string;
}>(),
{
qqMapKey: 'TVDBZ-TDILD-4ON4B-PFDZA-RNLKH-VVF6E', // QQ 地图的密钥 https://lbs.qq.com/service/staticV2/staticGuide/staticDoc
},
);
const mapUrl = computed(() => {
return `https://map.qq.com/?type=marker&isopeninfowin=1&markertype=1&pointx=${props.locationY}&pointy=${props.locationX}&name=${props.label}&ref=yudao`;
});
const mapImageUrl = computed(() => {
return `https://apis.map.qq.com/ws/staticmap/v2/?zoom=10&markers=color:blue|label:A|${props.locationX},${props.locationY}&key=${props.qqMapKey}&size=250*180`;
});
defineExpose({
locationX: props.locationX,
locationY: props.locationY,
label: props.label,
qqMapKey: props.qqMapKey,
});
</script>
<template>
<!-- 微信消息 - 定位 -->
<div>
<a :href="mapUrl" target="_blank" class="text-primary">
<Col>
<Row>
<img :src="mapImageUrl" alt="地图位置" />
</Row>
<Row class="mt-2">
<IconifyIcon icon="mdi:map-marker" class="mr-1" />
{{ label }}
</Row>
</Col>
</a>
</div>
</template>

View File

@@ -0,0 +1,3 @@
export { default } from './main.vue';
export { MaterialType, NewsType } from './types';

View File

@@ -0,0 +1,368 @@
<script lang="ts" setup>
import { onMounted, reactive, ref } from 'vue';
import { IconifyIcon } from '@vben/icons';
import { formatDate2 } from '@vben/utils';
import { Button, Pagination, Row, Spin, Table } from 'ant-design-vue';
import * as MpDraftApi from '#/api/mp/draft';
import * as MpFreePublishApi from '#/api/mp/freePublish';
import * as MpMaterialApi from '#/api/mp/material';
import WxNews from '#/views/mp/components/wx-news';
import WxVideoPlayer from '#/views/mp/components/wx-video-play';
import WxVoicePlayer from '#/views/mp/components/wx-voice-play';
import { NewsType } from './types';
defineOptions({ name: 'WxMaterialSelect' });
const props = withDefaults(
defineProps<{
accountId: number;
newsType?: NewsType;
type: string;
}>(),
{
newsType: NewsType.Published,
},
);
const emit = defineEmits<{
(e: 'selectMaterial', item: any): void;
}>();
// 遮罩层
const loading = ref(false);
// 总条数
const total = ref(0);
// 数据列表
const list = ref<any[]>([]);
// 查询参数
const queryParams = reactive({
accountId: props.accountId,
pageNo: 1,
pageSize: 10,
});
const selectMaterialFun = (item: any) => {
emit('selectMaterial', item);
};
const getPage = async () => {
loading.value = true;
try {
if (props.type === 'news' && props.newsType === NewsType.Published) {
// 【图文】+ 【已发布】
await getFreePublishPageFun();
} else if (props.type === 'news' && props.newsType === NewsType.Draft) {
// 【图文】+ 【草稿】
await getDraftPageFun();
} else {
// 【素材】
await getMaterialPageFun();
}
} finally {
loading.value = false;
}
};
const getMaterialPageFun = async () => {
const data = await MpMaterialApi.getMaterialPage({
...queryParams,
type: props.type,
});
list.value = data.list;
total.value = data.total;
};
const getFreePublishPageFun = async () => {
const data = await MpFreePublishApi.getFreePublishPage(queryParams);
data.list.forEach((item: any) => {
const articles = item.content.newsItem;
articles.forEach((article: any) => {
article.picUrl = article.thumbUrl;
});
});
list.value = data.list;
total.value = data.total;
};
const getDraftPageFun = async () => {
const data = await MpDraftApi.getDraftPage(queryParams);
data.list.forEach((draft: any) => {
const articles = draft.content.newsItem;
articles.forEach((article: any) => {
article.picUrl = article.thumbUrl;
});
});
list.value = data.list;
total.value = data.total;
};
const voiceColumns = [
{
title: '编号',
dataIndex: 'mediaId',
align: 'center' as const,
},
{
title: '文件名',
dataIndex: 'name',
align: 'center' as const,
},
{
title: '语音',
key: 'voice',
align: 'center' as const,
},
{
title: '上传时间',
dataIndex: 'createTime',
align: 'center' as const,
width: 180,
customRender: ({ record }: any) => formatDate2(record.createTime),
},
{
title: '操作',
key: 'action',
align: 'center' as const,
fixed: 'right' as const,
},
];
const videoColumns = [
{
title: '编号',
dataIndex: 'mediaId',
align: 'center' as const,
},
{
title: '文件名',
dataIndex: 'name',
align: 'center' as const,
},
{
title: '标题',
dataIndex: 'title',
align: 'center' as const,
},
{
title: '介绍',
dataIndex: 'introduction',
align: 'center' as const,
},
{
title: '视频',
key: 'video',
align: 'center' as const,
},
{
title: '上传时间',
dataIndex: 'createTime',
align: 'center' as const,
width: 180,
customRender: ({ record }: any) => formatDate2(record.createTime),
},
{
title: '操作',
key: 'action',
align: 'center' as const,
fixed: 'right' as const,
},
];
onMounted(async () => {
getPage();
});
</script>
<template>
<div class="pb-8">
<!-- 类型image -->
<div v-if="props.type === 'image'">
<Spin :spinning="loading">
<div class="waterfall">
<div v-for="item in list" :key="item.mediaId" class="waterfall-item">
<img class="material-img" :src="item.url" alt="素材图片" />
<p class="item-name">{{ item.name }}</p>
<Row class="ope-row">
<Button type="primary" @click="selectMaterialFun(item)">
选择
<template #icon>
<IconifyIcon icon="mdi:check-circle" />
</template>
</Button>
</Row>
</div>
</div>
</Spin>
<!-- 分页组件 -->
<Pagination
v-model:current="queryParams.pageNo"
v-model:page-size="queryParams.pageSize"
:total="total"
class="mt-4"
@change="getMaterialPageFun"
/>
</div>
<!-- 类型voice -->
<div v-else-if="props.type === 'voice'">
<Table
:columns="voiceColumns"
:data-source="list"
:loading="loading"
:pagination="false"
row-key="mediaId"
>
<template #bodyCell="{ column, record }">
<template v-if="column.key === 'voice'">
<WxVoicePlayer :url="record.url" />
</template>
<template v-else-if="column.key === 'action'">
<Button type="link" @click="selectMaterialFun(record)">
选择
<template #icon>
<IconifyIcon icon="mdi:plus" />
</template>
</Button>
</template>
</template>
</Table>
<!-- 分页组件 -->
<Pagination
v-model:current="queryParams.pageNo"
v-model:page-size="queryParams.pageSize"
:total="total"
class="mt-4"
@change="getPage"
/>
</div>
<!-- 类型video -->
<div v-else-if="props.type === 'video'">
<Table
:columns="videoColumns"
:data-source="list"
:loading="loading"
:pagination="false"
row-key="mediaId"
>
<template #bodyCell="{ column, record }">
<template v-if="column.key === 'video'">
<WxVideoPlayer :url="record.url" />
</template>
<template v-else-if="column.key === 'action'">
<Button type="link" @click="selectMaterialFun(record)">
选择
<template #icon>
<IconifyIcon icon="mdi:plus-circle" />
</template>
</Button>
</template>
</template>
</Table>
<!-- 分页组件 -->
<Pagination
v-model:current="queryParams.pageNo"
v-model:page-size="queryParams.pageSize"
:total="total"
class="mt-4"
@change="getMaterialPageFun"
/>
</div>
<!-- 类型news -->
<div v-else-if="props.type === 'news'">
<Spin :spinning="loading">
<div class="waterfall">
<div v-for="item in list" :key="item.mediaId" class="waterfall-item">
<div v-if="item.content && item.content.newsItem">
<WxNews :articles="item.content.newsItem" />
<Row class="ope-row">
<Button type="primary" @click="selectMaterialFun(item)">
选择
<template #icon>
<IconifyIcon icon="mdi:check-circle" />
</template>
</Button>
</Row>
</div>
</div>
</div>
</Spin>
<!-- 分页组件 -->
<Pagination
v-model:current="queryParams.pageNo"
v-model:page-size="queryParams.pageSize"
:total="total"
class="mt-4"
@change="getMaterialPageFun"
/>
</div>
</div>
</template>
<style lang="scss" scoped>
@media (width >= 992px) and (width <= 1300px) {
.waterfall {
column-count: 3;
}
p {
color: red;
}
}
@media (width >= 768px) and (width <= 991px) {
.waterfall {
column-count: 2;
}
p {
color: orange;
}
}
@media (width <= 767px) {
.waterfall {
column-count: 1;
}
}
.waterfall {
column-count: 5;
column-gap: 10px;
width: 100%;
margin: 0 auto;
}
.waterfall-item {
padding: 10px;
margin-bottom: 10px;
border: 1px solid #eaeaea;
break-inside: avoid;
}
.material-img {
width: 100%;
}
p {
line-height: 30px;
}
.ope-row {
padding-top: 10px;
text-align: center;
}
.item-name {
overflow: hidden;
text-overflow: ellipsis;
font-size: 12px;
text-align: center;
white-space: nowrap;
}
</style>

View File

@@ -0,0 +1,11 @@
export enum NewsType {
Draft = '2',
Published = '1',
}
export enum MaterialType {
Image = 'image',
News = 'news',
Video = 'video',
Voice = 'voice',
}

View File

@@ -0,0 +1,116 @@
.avue-card {
&__item {
box-sizing: border-box;
height: 200px;
margin-bottom: 16px;
font-size: 14px;
font-feature-settings: 'tnum';
font-variant: tabular-nums;
line-height: 1.5;
color: rgb(0 0 0 / 65%);
cursor: pointer;
list-style: none;
background-color: #fff;
border: 1px solid #e8e8e8;
&:hover {
border-color: rgb(0 0 0 / 9%);
box-shadow: 0 2px 8px rgb(0 0 0 / 9%);
}
&--add {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
font-size: 16px;
color: rgb(0 0 0 / 45%);
background-color: #fff;
border: 1px dashed #000;
border-color: #d9d9d9;
border-radius: 2px;
i {
margin-right: 10px;
}
&:hover {
color: #40a9ff;
background-color: #fff;
border-color: #40a9ff;
}
}
}
&__body {
display: flex;
padding: 24px;
}
&__detail {
flex: 1;
}
&__avatar {
width: 48px;
height: 48px;
margin-right: 12px;
overflow: hidden;
border-radius: 48px;
img {
width: 100%;
height: 100%;
}
}
&__title {
margin-bottom: 12px;
font-size: 16px;
color: rgb(0 0 0 / 85%);
&:hover {
color: #1890ff;
}
}
&__info {
display: -webkit-box;
height: 64px;
overflow: hidden;
-webkit-line-clamp: 3;
color: rgb(0 0 0 / 45%);
-webkit-box-orient: vertical;
}
&__menu {
display: flex;
justify-content: space-around;
height: 50px;
line-height: 50px;
color: rgb(0 0 0 / 45%);
text-align: center;
background: #f7f9fa;
&:hover {
color: #1890ff;
}
}
}
/** joolun 额外加的 */
.avue-comment__main {
flex: unset !important;
margin: 0 8px !important;
border-radius: 5px !important;
}
.avue-comment__header {
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.avue-comment__body {
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
}

View File

@@ -0,0 +1,109 @@
/* 来自 https://github.com/nmxiaowei/avue/blob/master/styles/src/element-ui/comment.scss */
.avue-comment {
display: flex;
align-items: flex-start;
margin-bottom: 30px;
&--reverse {
flex-direction: row-reverse;
.avue-comment__main {
&::before,
&::after {
right: -8px;
left: auto;
border-width: 8px 0 8px 8px;
}
&::before {
border-left-color: #dedede;
}
&::after {
margin-right: 1px;
margin-left: auto;
border-left-color: #f8f8f8;
}
}
}
&__avatar {
box-sizing: border-box;
width: 48px;
height: 48px;
vertical-align: middle;
border: 1px solid transparent;
border-radius: 50%;
}
&__header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 5px 15px;
background: #f8f8f8;
border-bottom: 1px solid #eee;
}
&__author {
font-size: 14px;
font-weight: 700;
color: #999;
}
&__main {
position: relative;
flex: 1;
margin: 0 20px;
border: 1px solid #dedede;
border-radius: 2px;
&::before,
&::after {
position: absolute;
top: 10px;
right: 100%;
left: -8px;
display: block;
width: 0;
height: 0;
pointer-events: none;
content: ' ';
border-color: transparent;
border-style: solid solid outset;
border-width: 8px 8px 8px 0;
}
&::before {
z-index: 1;
border-right-color: #dedede;
}
&::after {
z-index: 2;
margin-left: 1px;
border-right-color: #f8f8f8;
}
}
&__body {
padding: 15px;
overflow: hidden;
font-family:
'Segoe UI', 'Lucida Grande', Helvetica, Arial, 'Microsoft YaHei',
FreeSans, Arimo, 'Droid Sans', 'wenquanyi micro hei', 'Hiragino Sans GB',
'Hiragino Sans GB W3', FontAwesome, sans-serif;
font-size: 14px;
color: #333;
background: #fff;
}
blockquote {
padding: 1px 0 1px 15px;
margin: 0;
font-family:
Georgia, 'Times New Roman', Times, Kai, 'Kaiti SC', KaiTi, BiauKai,
FontAwesome, serif;
border-left: 4px solid #ddd;
}
}

View File

@@ -0,0 +1,100 @@
<script lang="ts" setup>
import { IconifyIcon } from '@vben/icons';
import WxLocation from '#/views/mp/components/wx-location';
import WxMusic from '#/views/mp/components/wx-music';
import WxNews from '#/views/mp/components/wx-news';
import WxVideoPlayer from '#/views/mp/components/wx-video-play';
import WxVoicePlayer from '#/views/mp/components/wx-voice-play';
import { MsgType } from '../types';
import MsgEvent from './MsgEvent.vue';
defineOptions({ name: 'Msg' });
defineProps<{
item: any;
}>();
</script>
<template>
<div>
<MsgEvent v-if="item.type === MsgType.Event" :item="item" />
<div v-else-if="item.type === MsgType.Text">{{ item.content }}</div>
<div v-else-if="item.type === MsgType.Voice">
<WxVoicePlayer :url="item.mediaUrl" :content="item.recognition" />
</div>
<div v-else-if="item.type === MsgType.Image">
<a :href="item.mediaUrl" target="_blank">
<img :src="item.mediaUrl" style="width: 100px" alt="图片消息" />
</a>
</div>
<div
v-else-if="item.type === MsgType.Video || item.type === 'shortvideo'"
class="text-center"
>
<WxVideoPlayer :url="item.mediaUrl" />
</div>
<div v-else-if="item.type === MsgType.Link" class="link-card">
<a :href="item.url" target="_blank" class="text-success no-underline">
<div class="link-title">
<IconifyIcon icon="mdi:link" class="mr-1" />
{{ item.title }}
</div>
</a>
<div class="link-description">{{ item.description }}</div>
</div>
<div v-else-if="item.type === MsgType.Location">
<WxLocation
:label="item.label"
:location-y="item.locationY"
:location-x="item.locationX"
/>
</div>
<div v-else-if="item.type === MsgType.News" class="news-wrapper">
<WxNews :articles="item.articles" />
</div>
<div v-else-if="item.type === MsgType.Music">
<WxMusic
:title="item.title"
:description="item.description"
:thumb-media-url="item.thumbMediaUrl"
:music-url="item.musicUrl"
:hq-music-url="item.hqMusicUrl"
/>
</div>
</div>
</template>
<style scoped lang="scss">
.link-card {
display: flex;
flex-direction: column;
gap: 8px;
}
.link-title {
display: flex;
align-items: center;
font-size: 14px;
font-weight: 500;
color: #52c41a;
}
.link-description {
font-size: 12px;
color: #666;
}
.news-wrapper {
width: 300px;
}
</style>

View File

@@ -0,0 +1,51 @@
<script lang="ts" setup>
import { Tag } from 'ant-design-vue';
defineOptions({ name: 'MsgEvent' });
defineProps<{
item: any;
}>();
</script>
<template>
<div>
<div v-if="item.event === 'subscribe'">
<Tag color="success">关注</Tag>
</div>
<div v-else-if="item.event === 'unsubscribe'">
<Tag color="error">取消关注</Tag>
</div>
<div v-else-if="item.event === 'CLICK'">
<Tag>点击菜单</Tag>
{{ item.eventKey }}
</div>
<div v-else-if="item.event === 'VIEW'">
<Tag>点击菜单链接</Tag>
{{ item.eventKey }}
</div>
<div v-else-if="item.event === 'scancode_waitmsg'">
<Tag>扫码结果</Tag>
{{ item.eventKey }}
</div>
<div v-else-if="item.event === 'scancode_push'">
<Tag>扫码结果</Tag>
{{ item.eventKey }}
</div>
<div v-else-if="item.event === 'pic_sysphoto'">
<Tag>系统拍照发图</Tag>
</div>
<div v-else-if="item.event === 'pic_photo_or_album'">
<Tag>拍照或者相册</Tag>
</div>
<div v-else-if="item.event === 'pic_weixin'">
<Tag>微信相册</Tag>
</div>
<div v-else-if="item.event === 'location_select'">
<Tag>选择地理位置</Tag>
</div>
<div v-else>
<Tag color="error">未知事件类型</Tag>
</div>
</div>
</template>

View File

@@ -0,0 +1,69 @@
<script lang="ts" setup>
import type { User } from '../types';
import { preferences } from '@vben/preferences';
import { formatDateTime } from '@vben/utils';
import Msg from './Msg.vue';
defineOptions({ name: 'MsgList' });
const props = defineProps<{
accountId: number;
list: any[];
user: User;
}>();
const SendFrom = {
MpBot: 2,
User: 1,
} as const;
const getAvatar = (sendFrom: number) =>
sendFrom === SendFrom.User
? props.user.avatar
: preferences.app.defaultAvatar;
const getNickname = (sendFrom: SendFrom) =>
sendFrom === SendFrom.User ? props.user.nickname : '公众号';
</script>
<template>
<div class="execution" v-for="item in props.list" :key="item.id">
<div
class="avue-comment"
:class="{ 'avue-comment--reverse': item.sendFrom === SendFrom.MpBot }"
>
<div class="avatar-div">
<img :src="getAvatar(item.sendFrom)" class="avue-comment__avatar" />
<div class="avue-comment__author">
{{ getNickname(item.sendFrom) }}
</div>
</div>
<div class="avue-comment__main">
<div class="avue-comment__header">
<div class="avue-comment__create_time">
{{ formatDateTime(item.createTime) }}
</div>
</div>
<div
class="avue-comment__body"
:style="
item.sendFrom === SendFrom.MpBot ? 'background: #6BED72;' : ''
"
>
<Msg :item="item" />
</div>
</div>
</div>
</div>
</template>
<style lang="scss" scoped>
/* 因为 joolun 实现依赖 avue 组件,该页面使用了 comment.scss、card.scc */
@import url('../comment.scss');
@import url('../card.scss');
.avatar-div {
width: 80px;
text-align: center;
}
</style>

View File

@@ -0,0 +1,3 @@
export { default } from './main.vue';
export { MsgType } from './types';

View File

@@ -0,0 +1,222 @@
<script lang="ts" setup>
import type { User } from './types';
import { nextTick, onMounted, reactive, ref, unref } from 'vue';
import { preferences } from '@vben/preferences';
import { Button, message, Spin } from 'ant-design-vue';
import { getMessagePage, sendMessage } from '#/api/mp/message';
import { getUser } from '#/api/mp/user';
import WxReplySelect from '#/views/mp/components/wx-reply';
import MsgList from './components/MsgList.vue';
defineOptions({ name: 'WxMsg' });
const props = defineProps<{
userId: number;
}>();
const accountId = ref(-1); // 公众号ID需要通过userId初始化
const loading = ref(false); // 消息列表是否正在加载中
const hasMore = ref(true); // 是否可以加载更多
const list = ref<any[]>([]); // 消息列表
const queryParams = reactive({
accountId,
pageNo: 1, // 当前页数
pageSize: 14, // 每页显示多少条
});
// 由于微信不再提供昵称,直接使用"用户"展示
const user: User = reactive({
accountId, // 公众号账号编号
avatar: preferences.app.defaultAvatar,
nickname: '用户',
});
// ========= 消息发送 =========
const sendLoading = ref(false); // 发送消息是否加载中
// 微信发送消息
const reply = ref<any>({
accountId: -1,
articles: [],
type: 'text',
});
const replySelectRef = ref<InstanceType<typeof WxReplySelect> | null>(null); // WxReplySelect组件ref用于消息发送成功后清除内容
const msgDivRef = ref<HTMLDivElement | null>(null); // 消息显示窗口ref用于滚动到底部
/** 完成加载 */
onMounted(async () => {
const data = await getUser(props.userId);
user.nickname = data.nickname?.length > 0 ? data.nickname : user.nickname;
user.avatar = data.avatar?.length > 0 ? data.avatar : user.avatar;
accountId.value = data.accountId;
reply.value.accountId = data.accountId;
refreshChange();
});
// 执行发送
const sendMsg = async () => {
if (!unref(reply)) {
return;
}
// 公众号限制:客服消息,公众号只允许发送一条
if (
reply.value.type === 'news' &&
reply.value.articles &&
reply.value.articles.length > 1
) {
reply.value.articles = [reply.value.articles[0]];
message.success('图文消息条数限制在 1 条以内,已默认发送第一条');
}
const data = await sendMessage({
...reply.value,
userId: props.userId,
} as any);
sendLoading.value = false;
list.value = [...list.value, data];
await scrollToBottom();
// 发送后清空数据
replySelectRef.value?.clear();
};
const loadMore = () => {
queryParams.pageNo++;
getPage(queryParams, null);
};
const getPage = async (page: any, params: any = null) => {
loading.value = true;
const dataTemp = await getMessagePage(
Object.assign(
{
accountId: page.accountId,
pageNo: page.pageNo,
pageSize: page.pageSize,
userId: props.userId,
},
params,
),
);
const scrollHeight = msgDivRef.value?.scrollHeight ?? 0;
// 处理数据
const data = dataTemp.list.reverse();
list.value = [...data, ...list.value];
loading.value = false;
if (data.length < queryParams.pageSize || data.length === 0) {
hasMore.value = false;
}
queryParams.pageNo = page.pageNo;
queryParams.pageSize = page.pageSize;
// 滚动到原来的位置
if (queryParams.pageNo === 1) {
// 定位到消息底部
await scrollToBottom();
} else if (data.length > 0) {
// 定位滚动条
await nextTick();
if (scrollHeight !== 0 && msgDivRef.value) {
msgDivRef.value.scrollTop =
msgDivRef.value.scrollHeight - scrollHeight - 100;
}
}
};
const refreshChange = () => {
getPage(queryParams);
};
/** 定位到消息底部 */
const scrollToBottom = async () => {
await nextTick();
if (msgDivRef.value) {
msgDivRef.value.scrollTop = msgDivRef.value.scrollHeight;
}
};
</script>
<template>
<div class="wx-msg-container">
<div ref="msgDivRef" class="msg-div">
<!-- 加载更多 -->
<Spin :spinning="loading" />
<div v-if="!loading">
<div v-if="hasMore" class="load-more-btn" @click="loadMore">
<span>点击加载更多</span>
</div>
<div v-else class="load-more-btn disabled">
<span>没有更多了</span>
</div>
</div>
<!-- 消息列表 -->
<MsgList :list="list" :account-id="accountId" :user="user" />
</div>
<div class="msg-send">
<Spin :spinning="sendLoading">
<WxReplySelect ref="replySelectRef" v-model="reply" />
<Button type="primary" class="send-but" @click="sendMsg">
发送(S)
</Button>
</Spin>
</div>
</div>
</template>
<style lang="scss" scoped>
.wx-msg-container {
display: flex;
flex-direction: column;
height: 100%;
}
.msg-div {
flex: 1;
height: 50vh;
margin: 0 10px;
overflow: auto;
background-color: #eaeaea;
}
.load-more-btn {
padding: 12px;
font-size: 14px;
color: #409eff;
text-align: center;
cursor: pointer;
border-radius: 4px;
transition: background-color 0.3s;
&:hover {
background-color: #f5f7fa;
}
&.disabled {
color: #909399;
cursor: not-allowed;
&:hover {
background-color: transparent;
}
}
}
.msg-send {
padding: 10px;
}
.send-but {
float: right;
margin-top: 8px;
margin-bottom: 8px;
}
</style>

View File

@@ -0,0 +1,17 @@
export enum MsgType {
Event = 'event',
Image = 'image',
Link = 'link',
Location = 'location',
Music = 'music',
News = 'news',
Text = 'text',
Video = 'video',
Voice = 'voice',
}
export interface User {
accountId: number;
avatar: string;
nickname: string;
}

View File

@@ -0,0 +1 @@
export { default } from './main.vue';

View File

@@ -0,0 +1,91 @@
<script lang="ts" setup>
import { computed } from 'vue';
defineOptions({ name: 'WxMusic' });
const props = withDefaults(
defineProps<{
description?: string;
hqMusicUrl?: string;
musicUrl?: string;
thumbMediaUrl: string;
title?: string;
}>(),
{
title: '',
description: '',
musicUrl: '',
hqMusicUrl: '',
},
);
const href = computed(() => props.hqMusicUrl || props.musicUrl);
defineExpose({
musicUrl: props.musicUrl,
});
</script>
<template>
<!-- 微信消息 - 音乐 -->
<div>
<a :href="href" target="_blank" class="text-success no-underline">
<div class="music-card">
<div class="music-avatar">
<img :src="thumbMediaUrl" alt="音乐封面" />
</div>
<div class="music-detail">
<div class="music-title">{{ title }}</div>
<div class="music-description">{{ description }}</div>
</div>
</div>
</a>
</div>
</template>
<style lang="scss" scoped>
.music-card {
display: flex;
padding: 10px;
background-color: #fff;
border-radius: 5px;
}
.music-avatar {
flex-shrink: 0;
width: 60px;
height: 60px;
margin-right: 12px;
overflow: hidden;
border-radius: 4px;
img {
width: 100%;
height: 100%;
object-fit: cover;
}
}
.music-detail {
flex: 1;
overflow: hidden;
}
.music-title {
margin-bottom: 8px;
overflow: hidden;
text-overflow: ellipsis;
font-size: 14px;
font-weight: 500;
color: #333;
white-space: nowrap;
}
.music-description {
overflow: hidden;
text-overflow: ellipsis;
font-size: 12px;
color: #666;
white-space: nowrap;
}
</style>

View File

@@ -0,0 +1 @@
export { default } from './main.vue';

View File

@@ -0,0 +1,115 @@
<script lang="ts" setup>
import { Image } from 'ant-design-vue';
defineOptions({ name: 'WxNews' });
const props = withDefaults(
defineProps<{
articles?: any[] | null;
}>(),
{
articles: null,
},
);
defineExpose({
articles: props.articles,
});
</script>
<template>
<!-- 微信消息 - 图文 -->
<div class="news-home">
<div v-for="(article, index) in articles" :key="index" class="news-div">
<!-- 头条 -->
<a v-if="index === 0" :href="article.url" target="_blank">
<div class="news-main">
<div class="news-content">
<Image
:src="article.picUrl"
:preview="false"
class="material-img"
/>
<div class="news-content-title">
<span>{{ article.title }}</span>
</div>
</div>
</div>
</a>
<!-- 二条/三条等等 -->
<a v-else :href="article.url" target="_blank">
<div class="news-main-item">
<div class="news-content-item">
<div class="news-content-item-title">{{ article.title }}</div>
<div class="news-content-item-img">
<img :src="article.picUrl" class="material-img" alt="文章图片" />
</div>
</div>
</div>
</a>
</div>
</div>
</template>
<style lang="scss" scoped>
.news-home {
width: 100%;
margin: auto;
background-color: #fff;
}
.news-main {
width: 100%;
margin: auto;
}
.news-content {
position: relative;
width: 100%;
background-color: #acadae;
}
.news-content-title {
position: absolute;
bottom: 0;
left: 0;
box-sizing: unset !important;
display: inline-block;
width: 98%;
padding: 1%;
font-size: 12px;
color: #fff;
white-space: normal;
background-color: black;
opacity: 0.65;
}
.news-main-item {
padding: 5px 0;
background-color: #fff;
border-top: 1px solid #eaeaea;
}
.news-content-item {
position: relative;
}
.news-content-item-title {
display: inline-block;
width: 70%;
margin-left: 1%;
font-size: 10px;
white-space: normal;
}
.news-content-item-img {
display: inline-block;
width: 25%;
margin-right: 1%;
background-color: #acadae;
}
.material-img {
width: 100%;
}
</style>

View File

@@ -0,0 +1,218 @@
<script lang="ts" setup>
import type { Reply } from './types';
import type { UploadRawFile } from '#/views/mp/hooks/useUpload';
import { computed, reactive, ref } from 'vue';
import { IconifyIcon } from '@vben/icons';
import { useAccessStore } from '@vben/stores';
import { Button, Col, message, Modal, Row, Upload } from 'ant-design-vue';
import WxMaterialSelect from '#/views/mp/components/wx-material-select';
import { UploadType, useBeforeUpload } from '#/views/mp/hooks/useUpload';
defineOptions({ name: 'TabImage' });
const props = defineProps<{
modelValue: Reply;
}>();
const emit = defineEmits<{
(e: 'update:modelValue', v: Reply): void;
}>();
const accessStore = useAccessStore();
const UPLOAD_URL = `${import.meta.env.VITE_BASE_URL}/admin-api/mp/material/upload-temporary`;
const HEADERS = { Authorization: `Bearer ${accessStore.accessToken}` };
const reply = computed<Reply>({
get: () => props.modelValue,
set: (val) => emit('update:modelValue', val),
});
const showDialog = ref(false);
const fileList = ref([]);
const uploadData = reactive({
accountId: reply.value.accountId,
introduction: '',
title: '',
type: 'image',
});
const beforeImageUpload = (rawFile: UploadRawFile) =>
useBeforeUpload(UploadType.Image, 2)(rawFile);
// 自定义上传请求
const customRequest = async (options: any) => {
const { file, onSuccess, onError } = options;
const formData = new FormData();
formData.append('file', file);
formData.append('accountId', String(uploadData.accountId));
formData.append('type', uploadData.type);
formData.append('title', uploadData.title);
formData.append('introduction', uploadData.introduction);
try {
const response = await fetch(UPLOAD_URL, {
method: 'POST',
headers: HEADERS,
body: formData,
});
const result = await response.json();
if (result.code === 0) {
// 清空上传时的各种数据
fileList.value = [];
uploadData.title = '';
uploadData.introduction = '';
// 上传好的文件,本质是个素材,所以可以进行选中
selectMaterial(result.data);
message.success('上传成功');
onSuccess(result, file);
} else {
message.error(result.msg || '上传出错');
onError(new Error(result.msg || '上传失败'));
}
} catch (error) {
message.error('上传失败,请重试');
onError(error);
}
};
const onDelete = () => {
reply.value.mediaId = null;
reply.value.url = null;
reply.value.name = null;
};
const selectMaterial = (item: any) => {
showDialog.value = false;
reply.value.mediaId = item.mediaId;
reply.value.url = item.url;
reply.value.name = item.name;
};
</script>
<template>
<div>
<!-- 情况一已经选择好素材或者上传好图片 -->
<div v-if="reply.url" class="select-item">
<img class="material-img" :src="reply.url" alt="图片素材" />
<p v-if="reply.name" class="item-name">{{ reply.name }}</p>
<Row class="ope-row" justify="center">
<Button danger shape="circle" @click="onDelete">
<template #icon>
<IconifyIcon icon="mdi:delete" />
</template>
</Button>
</Row>
</div>
<!-- 情况二未做完上述操作 -->
<Row v-else class="text-center" align="middle">
<!-- 选择素材 -->
<Col :span="12" class="col-select">
<Button type="primary" @click="showDialog = true">
素材库选择
<template #icon>
<IconifyIcon icon="mdi:check-circle" />
</template>
</Button>
<Modal
v-model:open="showDialog"
title="选择图片"
:width="1200"
:footer="null"
destroy-on-close
>
<WxMaterialSelect
type="image"
:account-id="reply.accountId"
@select-material="selectMaterial"
/>
</Modal>
</Col>
<!-- 文件上传 -->
<Col :span="12" class="col-add">
<Upload
:custom-request="customRequest"
:multiple="true"
:max-count="1"
:file-list="fileList"
:before-upload="beforeImageUpload"
:show-upload-list="false"
>
<Button type="primary">
上传图片
<template #icon>
<IconifyIcon icon="mdi:upload" />
</template>
</Button>
</Upload>
<div class="upload-tip">
支持 bmp/png/jpeg/jpg/gif 格式大小不超过 2M
</div>
</Col>
</Row>
</div>
</template>
<style lang="scss" scoped>
.select-item {
width: 280px;
padding: 10px;
margin: 0 auto 10px;
border: 1px solid #eaeaea;
}
.material-img {
width: 100%;
}
.item-name {
overflow: hidden;
text-overflow: ellipsis;
font-size: 12px;
text-align: center;
white-space: nowrap;
}
.ope-row {
padding-top: 10px;
text-align: center;
}
.col-select,
.col-add {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 160px;
padding: 50px 0;
border: 1px solid rgb(234 234 234);
}
.col-select {
width: 49.5%;
}
.col-add {
float: right;
width: 49.5%;
}
.upload-tip {
margin-top: 8px;
font-size: 12px;
line-height: 18px;
color: #666;
text-align: center;
}
</style>

View File

@@ -0,0 +1,218 @@
<script lang="ts" setup>
import type { Reply } from './types';
import type { UploadRawFile } from '#/views/mp/hooks/useUpload';
import { computed, reactive, ref } from 'vue';
import { IconifyIcon } from '@vben/icons';
import { useAccessStore } from '@vben/stores';
import {
Button,
Col,
Input,
message,
Modal,
Row,
Upload,
} from 'ant-design-vue';
import WxMaterialSelect from '#/views/mp/components/wx-material-select';
import { UploadType, useBeforeUpload } from '#/views/mp/hooks/useUpload';
defineOptions({ name: 'TabMusic' });
const props = defineProps<{
modelValue: Reply;
}>();
const emit = defineEmits<{
(e: 'update:modelValue', v: Reply): void;
}>();
const accessStore = useAccessStore();
const UPLOAD_URL = `${import.meta.env.VITE_BASE_URL}/admin-api/mp/material/upload-temporary`;
const HEADERS = { Authorization: `Bearer ${accessStore.accessToken}` };
const reply = computed<Reply>({
get: () => props.modelValue,
set: (val) => emit('update:modelValue', val),
});
const showDialog = ref(false);
const fileList = ref([]);
const uploadData = reactive({
accountId: reply.value.accountId,
introduction: '',
title: '',
type: 'thumb', // 音乐类型为thumb
});
const beforeImageUpload = (rawFile: UploadRawFile) =>
useBeforeUpload(UploadType.Image, 2)(rawFile);
// 自定义上传请求
const customRequest = async (options: any) => {
const { file, onSuccess, onError } = options;
const formData = new FormData();
formData.append('file', file);
formData.append('accountId', String(uploadData.accountId));
formData.append('type', uploadData.type);
formData.append('title', uploadData.title);
formData.append('introduction', uploadData.introduction);
try {
const response = await fetch(UPLOAD_URL, {
method: 'POST',
headers: HEADERS,
body: formData,
});
const result = await response.json();
if (result.code === 0) {
// 清空上传时的各种数据
fileList.value = [];
uploadData.title = '';
uploadData.introduction = '';
// 上传好的文件,本质是个素材,所以可以进行选中
selectMaterial(result.data);
message.success('上传成功');
onSuccess(result, file);
} else {
message.error(result.msg || '上传出错');
onError(new Error(result.msg || '上传失败'));
}
} catch (error) {
message.error('上传失败,请重试');
onError(error);
}
};
const selectMaterial = (item: any) => {
showDialog.value = false;
reply.value.thumbMediaId = item.mediaId;
reply.value.thumbMediaUrl = item.url;
};
</script>
<template>
<div>
<Row align="middle" justify="center">
<Col :span="6">
<div class="thumb-container">
<div class="thumb-preview">
<img
v-if="reply.thumbMediaUrl"
:src="reply.thumbMediaUrl"
alt="音乐封面"
class="thumb-img"
/>
<IconifyIcon
v-else
icon="mdi:plus"
:size="40"
class="text-gray-400"
/>
</div>
<div class="thumb-actions">
<Upload
:custom-request="customRequest"
:multiple="true"
:max-count="1"
:file-list="fileList"
:before-upload="beforeImageUpload"
:show-upload-list="false"
>
<Button type="link">本地上传</Button>
</Upload>
<Button type="link" class="ml-2" @click="showDialog = true">
素材库选择
</Button>
</div>
</div>
<Modal
v-model:open="showDialog"
title="选择图片"
:width="1200"
:footer="null"
destroy-on-close
>
<WxMaterialSelect
type="image"
:account-id="reply.accountId"
@select-material="selectMaterial"
/>
</Modal>
</Col>
<Col :span="18">
<div class="input-group">
<Input
:value="reply.title || undefined"
placeholder="请输入标题"
class="mb-5"
@update:value="(val) => (reply.title = val || null)"
/>
<Input
:value="reply.description || undefined"
placeholder="请输入描述"
@update:value="(val) => (reply.description = val || null)"
/>
</div>
</Col>
</Row>
<div class="mt-5">
<Input
:value="reply.musicUrl || undefined"
placeholder="请输入音乐链接"
class="mb-5"
@update:value="(val) => (reply.musicUrl = val || null)"
/>
<Input
:value="reply.hqMusicUrl || undefined"
placeholder="请输入高质量音乐链接"
@update:value="(val) => (reply.hqMusicUrl = val || null)"
/>
</div>
</div>
</template>
<style lang="scss" scoped>
.thumb-container {
display: flex;
flex-direction: column;
gap: 8px;
align-items: center;
}
.thumb-preview {
display: flex;
align-items: center;
justify-content: center;
width: 100px;
height: 100px;
border: 1px solid #d9d9d9;
border-radius: 4px;
}
.thumb-img {
width: 100%;
height: 100%;
object-fit: cover;
}
.thumb-actions {
display: flex;
align-items: center;
justify-content: center;
}
.input-group {
display: flex;
flex-direction: column;
gap: 20px;
}
</style>

View File

@@ -0,0 +1,108 @@
<script lang="ts" setup>
import type { Reply } from './types';
import { computed, ref } from 'vue';
import { IconifyIcon } from '@vben/icons';
import { Button, Col, Modal, Row } from 'ant-design-vue';
import WxMaterialSelect from '#/views/mp/components/wx-material-select';
import WxNews from '#/views/mp/components/wx-news';
import { NewsType } from './types';
defineOptions({ name: 'TabNews' });
const props = defineProps<{
modelValue: Reply;
newsType: NewsType;
}>();
const emit = defineEmits<{
(e: 'update:modelValue', v: Reply): void;
}>();
const reply = computed<Reply>({
get: () => props.modelValue,
set: (val) => emit('update:modelValue', val),
});
const showDialog = ref(false);
const selectMaterial = (item: any) => {
showDialog.value = false;
reply.value.articles = item.content.newsItem;
};
const onDelete = () => {
reply.value.articles = [];
};
</script>
<template>
<div>
<Row>
<div
v-if="reply.articles && reply.articles.length > 0"
class="select-item"
>
<WxNews :articles="reply.articles" />
<Col class="ope-row">
<Button danger shape="circle" @click="onDelete">
<template #icon>
<IconifyIcon icon="mdi:delete" />
</template>
</Button>
</Col>
</div>
<!-- 选择素材 -->
<Col v-if="!reply.content" :span="24">
<Row class="text-center" align="middle">
<Col :span="24">
<Button type="primary" @click="showDialog = true">
{{
newsType === NewsType.Published
? '选择已发布图文'
: '选择草稿箱图文'
}}
<template #icon>
<IconifyIcon icon="mdi:check-circle" />
</template>
</Button>
</Col>
</Row>
</Col>
<Modal
v-model:open="showDialog"
title="选择图文"
:width="1200"
:footer="null"
destroy-on-close
>
<WxMaterialSelect
type="news"
:account-id="reply.accountId"
:news-type="newsType"
@select-material="selectMaterial"
/>
</Modal>
</Row>
</div>
</template>
<style lang="scss" scoped>
.select-item {
width: 280px;
padding: 10px;
margin: 0 auto 10px;
border: 1px solid #eaeaea;
}
.ope-row {
padding-top: 10px;
text-align: center;
}
</style>

View File

@@ -0,0 +1,26 @@
<script lang="ts" setup>
import { computed } from 'vue';
import { Textarea } from 'ant-design-vue';
const props = defineProps<{
modelValue?: null | string;
}>();
const emit = defineEmits<{
(e: 'input', v: null | string): void;
(e: 'update:modelValue', v: null | string): void;
}>();
const content = computed({
get: () => props.modelValue ?? '',
set: (val: string) => {
emit('update:modelValue', val || null);
emit('input', val || null);
},
});
</script>
<template>
<Textarea v-model:value="content" :rows="5" placeholder="请输入内容" />
</template>

View File

@@ -0,0 +1,191 @@
<script lang="ts" setup>
import type { Reply } from './types';
import type { UploadRawFile } from '#/views/mp/hooks/useUpload';
import { computed, reactive, ref } from 'vue';
import { IconifyIcon } from '@vben/icons';
import { useAccessStore } from '@vben/stores';
import {
Button,
Col,
Input,
message,
Modal,
Row,
Upload,
} from 'ant-design-vue';
import WxMaterialSelect from '#/views/mp/components/wx-material-select';
import WxVideoPlayer from '#/views/mp/components/wx-video-play';
import { UploadType, useBeforeUpload } from '#/views/mp/hooks/useUpload';
defineOptions({ name: 'TabVideo' });
const props = defineProps<{
modelValue: Reply;
}>();
const emit = defineEmits<{
(e: 'update:modelValue', v: Reply): void;
}>();
const accessStore = useAccessStore();
const UPLOAD_URL = `${import.meta.env.VITE_BASE_URL}/admin-api/mp/material/upload-temporary`;
const HEADERS = { Authorization: `Bearer ${accessStore.accessToken}` };
const reply = computed<Reply>({
get: () => props.modelValue,
set: (val) => emit('update:modelValue', val),
});
const showDialog = ref(false);
const fileList = ref([]);
const uploadData = reactive({
accountId: reply.value.accountId,
introduction: '',
title: '',
type: 'video',
});
const beforeVideoUpload = (rawFile: UploadRawFile) =>
useBeforeUpload(UploadType.Video, 10)(rawFile);
// 自定义上传请求
const customRequest = async (options: any) => {
const { file, onSuccess, onError } = options;
const formData = new FormData();
formData.append('file', file);
formData.append('accountId', String(uploadData.accountId));
formData.append('type', uploadData.type);
formData.append('title', uploadData.title);
formData.append('introduction', uploadData.introduction);
try {
const response = await fetch(UPLOAD_URL, {
method: 'POST',
headers: HEADERS,
body: formData,
});
const result = await response.json();
if (result.code === 0) {
// 清空上传时的各种数据
fileList.value = [];
uploadData.title = '';
uploadData.introduction = '';
// 选择素材
selectMaterial(result.data);
message.success('上传成功');
onSuccess(result, file);
} else {
message.error(result.msg || '上传出错');
onError(new Error(result.msg || '上传失败'));
}
} catch (error) {
message.error('上传失败,请重试');
onError(error);
}
};
/** 选择素材后设置 */
const selectMaterial = (item: any) => {
showDialog.value = false;
reply.value.mediaId = item.mediaId;
reply.value.url = item.url;
reply.value.name = item.name;
// title、introduction从 item 到 tempObjItem因为素材里有 title、introduction
if (item.title) {
reply.value.title = item.title || '';
}
if (item.introduction) {
reply.value.description = item.introduction || '';
}
};
</script>
<template>
<div>
<Row :gutter="[0, 16]">
<Col :span="24">
<Input
:value="reply.title || undefined"
placeholder="请输入标题"
@update:value="(val) => (reply.title = val || null)"
/>
</Col>
<Col :span="24">
<Input
:value="reply.description || undefined"
placeholder="请输入描述"
@update:value="(val) => (reply.description = val || null)"
/>
</Col>
<Col :span="24">
<Row class="ope-row" justify="center">
<WxVideoPlayer v-if="reply.url" :url="reply.url" />
</Row>
</Col>
<Col :span="24">
<Row class="text-center" align="middle">
<!-- 选择素材 -->
<Col :span="12">
<Button type="primary" @click="showDialog = true">
素材库选择
<template #icon>
<IconifyIcon icon="mdi:check-circle" />
</template>
</Button>
<Modal
v-model:open="showDialog"
title="选择视频"
:width="1200"
:footer="null"
destroy-on-close
>
<WxMaterialSelect
type="video"
:account-id="reply.accountId"
@select-material="selectMaterial"
/>
</Modal>
</Col>
<!-- 文件上传 -->
<Col :span="12">
<Upload
:custom-request="customRequest"
:multiple="true"
:max-count="1"
:file-list="fileList"
:before-upload="beforeVideoUpload"
:show-upload-list="false"
>
<Button type="primary">
新建视频
<template #icon>
<IconifyIcon icon="mdi:upload" />
</template>
</Button>
</Upload>
</Col>
</Row>
</Col>
</Row>
</div>
</template>
<style lang="scss" scoped>
.ope-row {
width: 100%;
padding-top: 10px;
text-align: center;
}
</style>

View File

@@ -0,0 +1,215 @@
<script lang="ts" setup>
import type { Reply } from './types';
import type { UploadRawFile } from '#/views/mp/hooks/useUpload';
import { computed, reactive, ref } from 'vue';
import { IconifyIcon } from '@vben/icons';
import { useAccessStore } from '@vben/stores';
import { Button, Col, message, Modal, Row, Upload } from 'ant-design-vue';
import WxMaterialSelect from '#/views/mp/components/wx-material-select';
import WxVoicePlayer from '#/views/mp/components/wx-voice-play';
import { UploadType, useBeforeUpload } from '#/views/mp/hooks/useUpload';
defineOptions({ name: 'TabVoice' });
const props = defineProps<{
modelValue: Reply;
}>();
const emit = defineEmits<{
(e: 'update:modelValue', v: Reply): void;
}>();
const accessStore = useAccessStore();
const UPLOAD_URL = `${import.meta.env.VITE_BASE_URL}/admin-api/mp/material/upload-temporary`;
const HEADERS = { Authorization: `Bearer ${accessStore.accessToken}` };
const reply = computed<Reply>({
get: () => props.modelValue,
set: (val) => emit('update:modelValue', val),
});
const showDialog = ref(false);
const fileList = ref([]);
const uploadData = reactive({
accountId: reply.value.accountId,
introduction: '',
title: '',
type: 'voice',
});
const beforeVoiceUpload = (rawFile: UploadRawFile) =>
useBeforeUpload(UploadType.Voice, 10)(rawFile);
// 自定义上传请求
const customRequest = async (options: any) => {
const { file, onSuccess, onError } = options;
const formData = new FormData();
formData.append('file', file);
formData.append('accountId', String(uploadData.accountId));
formData.append('type', uploadData.type);
formData.append('title', uploadData.title);
formData.append('introduction', uploadData.introduction);
try {
const response = await fetch(UPLOAD_URL, {
method: 'POST',
headers: HEADERS,
body: formData,
});
const result = await response.json();
if (result.code === 0) {
// 清空上传时的各种数据
fileList.value = [];
uploadData.title = '';
uploadData.introduction = '';
// 上传好的文件,本质是个素材,所以可以进行选中
selectMaterial(result.data);
message.success('上传成功');
onSuccess(result, file);
} else {
message.error(result.msg || '上传出错');
onError(new Error(result.msg || '上传失败'));
}
} catch (error) {
message.error('上传失败,请重试');
onError(error);
}
};
const onDelete = () => {
reply.value.mediaId = null;
reply.value.url = null;
reply.value.name = null;
};
const selectMaterial = (item: Reply) => {
showDialog.value = false;
reply.value.mediaId = item.mediaId;
reply.value.url = item.url;
reply.value.name = item.name;
};
</script>
<template>
<div>
<div v-if="reply.url" class="select-item">
<p class="item-name">{{ reply.name }}</p>
<Row class="ope-row" justify="center">
<WxVoicePlayer :url="reply.url" />
</Row>
<Row class="ope-row" justify="center">
<Button danger shape="circle" @click="onDelete">
<template #icon>
<IconifyIcon icon="mdi:delete" />
</template>
</Button>
</Row>
</div>
<Row v-else class="text-center">
<!-- 选择素材 -->
<Col :span="12" class="col-select">
<Button type="primary" @click="showDialog = true">
素材库选择
<template #icon>
<IconifyIcon icon="mdi:check-circle" />
</template>
</Button>
<Modal
v-model:open="showDialog"
title="选择语音"
:width="1200"
:footer="null"
destroy-on-close
>
<WxMaterialSelect
type="voice"
:account-id="reply.accountId"
@select-material="selectMaterial"
/>
</Modal>
</Col>
<!-- 文件上传 -->
<Col :span="12" class="col-add">
<Upload
:custom-request="customRequest"
:multiple="true"
:max-count="1"
:file-list="fileList"
:before-upload="beforeVoiceUpload"
:show-upload-list="false"
>
<Button type="primary">
点击上传
<template #icon>
<IconifyIcon icon="mdi:upload" />
</template>
</Button>
</Upload>
<div class="upload-tip">
格式支持 mp3/wma/wav/amr文件大小不超过 2M播放长度不超过 60s
</div>
</Col>
</Row>
</div>
</template>
<style lang="scss" scoped>
.select-item {
padding: 10px;
margin: 0 auto 10px;
border: 1px solid #eaeaea;
}
.item-name {
overflow: hidden;
text-overflow: ellipsis;
font-size: 12px;
text-align: center;
white-space: nowrap;
}
.ope-row {
width: 100%;
padding-top: 10px;
text-align: center;
}
.col-select,
.col-add {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 160px;
padding: 50px 0;
border: 1px solid rgb(234 234 234);
}
.col-select {
width: 49.5%;
}
.col-add {
float: right;
width: 49.5%;
}
.upload-tip {
margin-top: 8px;
font-size: 12px;
line-height: 18px;
color: #666;
text-align: center;
}
</style>

View File

@@ -0,0 +1,54 @@
import type { Ref } from 'vue';
import { unref } from 'vue';
export enum ReplyType {
Image = 'image',
Music = 'music',
News = 'news',
Text = 'text',
Video = 'video',
Voice = 'voice',
}
export interface Reply {
accountId: number;
articles?: any[];
content?: null | string;
description?: null | string;
hqMusicUrl?: null | string;
introduction?: null | string;
mediaId?: null | string;
musicUrl?: null | string;
name?: null | string;
thumbMediaId?: null | string;
thumbMediaUrl?: null | string;
title?: null | string;
type: ReplyType;
url?: null | string;
}
export enum NewsType {
Draft = '2',
Published = '1',
}
/** 利用旧的reply[accountId, type]初始化新的Reply */
export const createEmptyReply = (old: Ref<Reply> | Reply): Reply => {
return {
accountId: unref(old).accountId,
articles: [],
content: null,
description: null,
hqMusicUrl: null,
introduction: null,
mediaId: null,
musicUrl: null,
name: null,
thumbMediaId: null,
thumbMediaUrl: null,
title: null,
type: unref(old).type,
url: null,
};
};

View File

@@ -0,0 +1,4 @@
export type { NewsType, Reply, ReplyType } from './components/types';
export { createEmptyReply } from './components/types';
export { default } from './main.vue';

View File

@@ -0,0 +1,234 @@
<!--
- Copyright (C) 2018-2019
- All rights reserved, Designed By www.joolun.com
芋道源码
移除多余的 rep 为前缀的变量 message 消息更简单
代码优化补充注释提升阅读性
优化消息的临时缓存策略发送消息时只清理被发送消息的 tab不会强制切回到 text 输入
支持发送视频消息时支持新建视频
-->
<script lang="ts" setup>
import type { Reply } from './components/types';
import { computed, ref, unref, watch } from 'vue';
import { IconifyIcon } from '@vben/icons';
import { Row, Tabs } from 'ant-design-vue';
import TabImage from './components/TabImage.vue';
import TabMusic from './components/TabMusic.vue';
import TabNews from './components/TabNews.vue';
import TabText from './components/TabText.vue';
import TabVideo from './components/TabVideo.vue';
import TabVoice from './components/TabVoice.vue';
import { createEmptyReply, NewsType, ReplyType } from './components/types';
defineOptions({ name: 'WxReplySelect' });
const props = withDefaults(defineProps<Props>(), {
newsType: undefined,
});
const emit = defineEmits<{
(e: 'update:modelValue', v: Reply): void;
}>();
interface Props {
modelValue: Reply;
newsType?: NewsType;
}
const reply = computed<Reply>({
get: () => props.modelValue,
set: (val) => emit('update:modelValue', val),
});
// 作为多个标签保存各自Reply的缓存
const tabCache = new Map<ReplyType, Reply>();
// 采用独立的ref来保存当前tab避免在watch标签变化对reply进行赋值会产生了循环调用
const currentTab = ref<ReplyType>(props.modelValue.type || ReplyType.Text);
watch(
currentTab,
(newTab, oldTab) => {
// 第一次进入oldTab 为 undefined
// 判断 newTab 是因为 Reply 为 Partial
if (oldTab === undefined || newTab === undefined) {
return;
}
tabCache.set(oldTab, unref(reply));
// 从缓存里面取出新tab内容有则覆盖Reply没有则创建空Reply
const temp = tabCache.get(newTab);
if (temp) {
reply.value = temp;
} else {
const newData = createEmptyReply(reply);
newData.type = newTab;
reply.value = newData;
}
},
{
immediate: true,
},
);
/** 清除除了`type`, `accountId`的字段 */
const clear = () => {
reply.value = createEmptyReply(reply);
};
defineExpose({
clear,
});
</script>
<template>
<Tabs v-model:active-key="currentTab" type="card">
<!-- 类型 1文本 -->
<Tabs.TabPane :key="ReplyType.Text">
<template #tab>
<Row align="middle">
<IconifyIcon icon="mdi:text" class="mr-1" />
文本
</Row>
</template>
<TabText v-model="reply.content" />
</Tabs.TabPane>
<!-- 类型 2图片 -->
<Tabs.TabPane :key="ReplyType.Image">
<template #tab>
<Row align="middle">
<IconifyIcon icon="mdi:image" class="mr-1" />
图片
</Row>
</template>
<TabImage v-model="reply" />
</Tabs.TabPane>
<!-- 类型 3语音 -->
<Tabs.TabPane :key="ReplyType.Voice">
<template #tab>
<Row align="middle">
<IconifyIcon icon="mdi:microphone" class="mr-1" />
语音
</Row>
</template>
<TabVoice v-model="reply" />
</Tabs.TabPane>
<!-- 类型 4视频 -->
<Tabs.TabPane :key="ReplyType.Video">
<template #tab>
<Row align="middle">
<IconifyIcon icon="mdi:video" class="mr-1" />
视频
</Row>
</template>
<TabVideo v-model="reply" />
</Tabs.TabPane>
<!-- 类型 5图文 -->
<Tabs.TabPane :key="ReplyType.News">
<template #tab>
<Row align="middle">
<IconifyIcon icon="mdi:newspaper" class="mr-1" />
图文
</Row>
</template>
<TabNews v-model="reply" :news-type="newsType" />
</Tabs.TabPane>
<!-- 类型 6音乐 -->
<Tabs.TabPane :key="ReplyType.Music">
<template #tab>
<Row align="middle">
<IconifyIcon icon="mdi:music" class="mr-1" />
音乐
</Row>
</template>
<TabMusic v-model="reply" />
</Tabs.TabPane>
</Tabs>
</template>
<style lang="scss" scoped>
.select-item {
width: 280px;
padding: 10px;
margin: 0 auto 10px;
border: 1px solid #eaeaea;
}
.select-item2 {
padding: 10px;
margin: 0 auto 10px;
border: 1px solid #eaeaea;
}
.ope-row {
padding-top: 10px;
text-align: center;
}
.input-margin-bottom {
margin-bottom: 2%;
}
.item-name {
overflow: hidden;
text-overflow: ellipsis;
font-size: 12px;
text-align: center;
white-space: nowrap;
}
.el-form-item__content {
line-height: unset !important;
}
.col-select {
width: 49.5%;
height: 160px;
padding: 50px 0;
border: 1px solid rgb(234 234 234);
}
.col-select2 {
height: 160px;
padding: 50px 0;
border: 1px solid rgb(234 234 234);
}
.col-add {
float: right;
width: 49.5%;
height: 160px;
padding: 50px 0;
border: 1px solid rgb(234 234 234);
}
.avatar-uploader-icon {
width: 100px !important;
height: 100px !important;
font-size: 28px;
line-height: 100px !important;
color: #8c939d;
text-align: center;
border: 1px solid #d9d9d9;
}
.material-img {
width: 100%;
}
.thumb-div {
display: inline-block;
text-align: center;
}
.item-infos {
width: 30%;
margin: auto;
}
</style>

View File

@@ -0,0 +1 @@
export { default } from './main.vue';

View File

@@ -0,0 +1,55 @@
<script lang="ts" setup>
import { ref } from 'vue';
import { IconifyIcon } from '@vben/icons';
import { VideoPlayer } from '@videojs-player/vue';
import { Modal } from 'ant-design-vue';
import 'video.js/dist/video-js.css';
defineOptions({ name: 'WxVideoPlayer' });
const props = defineProps<{
url: string;
}>();
const dialogVideo = ref(false);
const playVideo = () => {
dialogVideo.value = true;
};
</script>
<template>
<!-- 微信消息 - 视频播放 -->
<div class="cursor-pointer" @click="playVideo()">
<!-- 提示 -->
<div class="flex items-center">
<IconifyIcon icon="mdi:play-circle" :size="32" class="mr-2" />
<p class="text-sm">点击播放视频</p>
</div>
<!-- 弹窗播放 -->
<Modal
v-model:open="dialogVideo"
title="视频播放"
:footer="null"
:width="850"
destroy-on-close
>
<VideoPlayer
v-if="dialogVideo"
class="video-player vjs-big-play-centered"
:src="props.url"
poster=""
crossorigin="anonymous"
controls
playsinline
:volume="0.6"
:width="800"
:playback-rates="[0.7, 1.0, 1.5, 2.0]"
/>
</Modal>
</div>
</template>

View File

@@ -0,0 +1 @@
export { default } from './main.vue';

View File

@@ -0,0 +1,100 @@
<script lang="ts" setup>
import { ref } from 'vue';
import { IconifyIcon } from '@vben/icons';
import { Tag } from 'ant-design-vue';
// 因为微信语音是 amr 格式,所以需要用到 amr 解码器https://www.npmjs.com/package/benz-amr-recorder
import BenzAMRRecorder from 'benz-amr-recorder';
defineOptions({ name: 'WxVoicePlayer' });
const props = withDefaults(
defineProps<{
content?: string; // 语音文本
url: string; // 语音地址例如说https://www.iocoder.cn/xxx.amr
}>(),
{
content: '',
},
);
const amr = ref<any>();
const playing = ref(false);
const duration = ref<number>();
/** 处理点击,播放或暂停 */
const playVoice = () => {
// 情况一:未初始化,则创建 BenzAMRRecorder
if (amr.value === undefined) {
amrInit();
return;
}
// 情况二:已经初始化,则根据情况播放或暂时
if (amr.value.isPlaying()) {
amrStop();
} else {
amrPlay();
}
};
/** 音频初始化 */
const amrInit = () => {
amr.value = new BenzAMRRecorder();
// 设置播放
amr.value.initWithUrl(props.url).then(() => {
amrPlay();
duration.value = amr.value.getDuration();
});
// 监听暂停
amr.value.onEnded(() => {
playing.value = false;
});
};
/** 音频播放 */
const amrPlay = () => {
playing.value = true;
amr.value.play();
};
/** 音频暂停 */
const amrStop = () => {
playing.value = false;
amr.value.stop();
};
</script>
<template>
<!-- 微信消息 - 语音播放 -->
<div class="wx-voice-div cursor-pointer" @click="playVoice">
<div class="flex items-center">
<IconifyIcon v-if="playing !== true" icon="mdi:play-circle" :size="32" />
<IconifyIcon v-else icon="mdi:pause-circle" :size="32" />
<span v-if="duration" class="amr-duration">{{ duration }} </span>
</div>
<div v-if="content" class="mt-2">
<Tag color="success">语音识别</Tag>
{{ content }}
</div>
</div>
</template>
<style lang="scss" scoped>
.wx-voice-div {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-width: 120px;
min-height: 50px;
padding: 8px 12px;
background-color: #eaeaea;
border-radius: 10px;
}
.amr-duration {
margin-left: 8px;
font-size: 12px;
}
</style>

View File

@@ -0,0 +1,74 @@
import { message } from 'ant-design-vue';
import { $t } from '#/locales';
export enum UploadType {
Image = 'image',
Video = 'video',
Voice = 'voice',
}
interface UploadTypeConfig {
allowTypes: string[];
maxSizeMB: number;
name: string;
}
export interface UploadRawFile {
name: string;
size: number;
type: string;
}
const UPLOAD_CONFIGS: Record<UploadType, UploadTypeConfig> = {
[UploadType.Image]: {
allowTypes: [
'image/jpeg',
'image/png',
'image/gif',
'image/bmp',
'image/jpg',
],
maxSizeMB: 2,
name: '图片',
},
[UploadType.Video]: {
allowTypes: ['video/mp4'],
maxSizeMB: 10,
name: '视频',
},
[UploadType.Voice]: {
allowTypes: [
'audio/mp3',
'audio/mpeg',
'audio/wma',
'audio/wav',
'audio/amr',
],
maxSizeMB: 2,
name: '语音',
},
};
export const useBeforeUpload = (type: UploadType, maxSizeMB?: number) => {
const fn = (rawFile: UploadRawFile): boolean => {
const config = UPLOAD_CONFIGS[type];
const finalMaxSize = maxSizeMB ?? config.maxSizeMB;
// 格式不正确
if (!config.allowTypes.includes(rawFile.type)) {
message.error($t('mp.upload.invalidFormat', [config.name]));
return false;
}
// 大小不正确
if (rawFile.size / 1024 / 1024 > finalMaxSize) {
message.error($t('mp.upload.maxSize', [config.name, finalMaxSize]));
return false;
}
return true;
};
return fn;
};

View File

@@ -0,0 +1,214 @@
<script lang="ts" setup>
import type { TableColumnsType } from 'ant-design-vue';
import { formatDate2 } from '@vben/utils';
import { Button, Image, Table, Tag } from 'ant-design-vue';
import WxLocation from '#/views/mp/components/wx-location';
import { MsgType } from '#/views/mp/components/wx-msg/types';
import WxMusic from '#/views/mp/components/wx-music';
import WxNews from '#/views/mp/components/wx-news';
import WxVideoPlayer from '#/views/mp/components/wx-video-play';
import WxVoicePlayer from '#/views/mp/components/wx-voice-play';
const props = withDefaults(
defineProps<{
list?: any[];
loading?: boolean;
}>(),
{
list: () => [],
loading: false,
},
);
const emit = defineEmits<{
(e: 'send', userId: number): void;
}>();
const columns: TableColumnsType = [
{
title: '发送时间',
dataIndex: 'createTime',
width: 180,
align: 'center',
customRender: ({ record }) => formatDate2(record.createTime),
},
{
title: '消息类型',
dataIndex: 'type',
width: 80,
align: 'center',
},
{
title: '发送方',
dataIndex: 'sendFrom',
width: 80,
align: 'center',
},
{
title: '用户标识',
dataIndex: 'openid',
width: 300,
align: 'center',
},
{
title: '内容',
dataIndex: 'content',
align: 'left',
},
{
title: '操作',
key: 'action',
width: 120,
align: 'center',
fixed: 'right',
},
];
</script>
<template>
<Table
:columns="columns"
:data-source="props.list"
:loading="props.loading"
:pagination="false"
row-key="id"
>
<!-- 发送方列 -->
<template #bodyCell="{ column, record }">
<template v-if="column.dataIndex === 'sendFrom'">
<Tag v-if="record.sendFrom === 1" color="success">粉丝</Tag>
<Tag v-else color="default">公众号</Tag>
</template>
<!-- 内容列 -->
<template v-else-if="column.dataIndex === 'content'">
<!-- 事件区域 -->
<div
v-if="record.type === MsgType.Event && record.event === 'subscribe'"
>
<Tag color="success">关注</Tag>
</div>
<div
v-else-if="
record.type === MsgType.Event && record.event === 'unsubscribe'
"
>
<Tag color="error">取消关注</Tag>
</div>
<div
v-else-if="record.type === MsgType.Event && record.event === 'CLICK'"
>
<Tag>点击菜单</Tag>
【{{ record.eventKey }}】
</div>
<div
v-else-if="record.type === MsgType.Event && record.event === 'VIEW'"
>
<Tag>点击菜单链接</Tag>
【{{ record.eventKey }}】
</div>
<div
v-else-if="
record.type === MsgType.Event && record.event === 'scancode_waitmsg'
"
>
<Tag>扫码结果</Tag>
【{{ record.eventKey }}】
</div>
<div
v-else-if="
record.type === MsgType.Event && record.event === 'scancode_push'
"
>
<Tag>扫码结果</Tag>
【{{ record.eventKey }}】
</div>
<div
v-else-if="
record.type === MsgType.Event && record.event === 'pic_sysphoto'
"
>
<Tag>系统拍照发图</Tag>
</div>
<div
v-else-if="
record.type === MsgType.Event &&
record.event === 'pic_photo_or_album'
"
>
<Tag>拍照或者相册</Tag>
</div>
<div
v-else-if="
record.type === MsgType.Event && record.event === 'pic_weixin'
"
>
<Tag>微信相册</Tag>
</div>
<div
v-else-if="
record.type === MsgType.Event && record.event === 'location_select'
"
>
<Tag>选择地理位置</Tag>
</div>
<div v-else-if="record.type === MsgType.Event">
<Tag color="error">未知事件类型</Tag>
</div>
<!-- 【消息】区域 -->
<div v-else-if="record.type === MsgType.Text">{{ record.content }}</div>
<div v-else-if="record.type === MsgType.Voice">
<WxVoicePlayer :url="record.mediaUrl" :content="record.recognition" />
</div>
<div v-else-if="record.type === MsgType.Image">
<a :href="record.mediaUrl" target="_blank">
<Image :src="record.mediaUrl" :width="100" :preview="false" />
</a>
</div>
<div
v-else-if="
record.type === MsgType.Video || record.type === 'shortvideo'
"
>
<WxVideoPlayer :url="record.mediaUrl" class="mt-2" />
</div>
<div v-else-if="record.type === MsgType.Link">
<Tag>链接</Tag>
<a :href="record.url" target="_blank">{{ record.title }}</a>
</div>
<div v-else-if="record.type === MsgType.Location">
<WxLocation
:label="record.label"
:location-y="record.locationY"
:location-x="record.locationX"
/>
</div>
<div v-else-if="record.type === MsgType.Music">
<WxMusic
:title="record.title"
:description="record.description"
:thumb-media-url="record.thumbMediaUrl"
:music-url="record.musicUrl"
:hq-music-url="record.hqMusicUrl"
/>
</div>
<div v-else-if="record.type === MsgType.News">
<WxNews :articles="record.articles" />
</div>
<div v-else>
<Tag color="error">未知消息类型</Tag>
</div>
</template>
<!-- 操作列 -->
<template v-else-if="column.key === 'action'">
<Button type="link" @click="emit('send', record.userId)"> 消息 </Button>
</template>
</template>
</Table>
</template>

View File

@@ -1,28 +1,196 @@
<script lang="ts" setup>
import { Page } from '@vben/common-ui';
import type { Dayjs } from 'dayjs';
import { Button } from 'ant-design-vue';
import { reactive, ref } from 'vue';
import { Page } from '@vben/common-ui';
import { DICT_TYPE } from '@vben/constants';
import { getDictOptions } from '@vben/hooks';
import { IconifyIcon } from '@vben/icons';
import {
DatePicker,
Form,
FormItem,
Input,
Modal,
Select,
} from 'ant-design-vue';
import { getMessagePage } from '#/api/mp/message';
import WxAccountSelect from '#/views/mp/components/wx-account-select';
import WxMsg from '#/views/mp/components/wx-msg';
import { MsgType } from '#/views/mp/components/wx-msg/types';
import MessageTable from './MessageTable.vue';
defineOptions({ name: 'MpMessage' });
const loading = ref(false);
const total = ref(0); // 数据的总页数
const list = ref<any[]>([]); // 当前页的列表数据
// 搜索参数
const queryParams = reactive<{
accountId: number;
createTime: [Dayjs, Dayjs] | undefined;
openid: string;
pageNo: number;
pageSize: number;
type: string;
}>({
accountId: -1,
createTime: undefined,
openid: '',
pageNo: 1,
pageSize: 10,
type: MsgType.Text,
});
const queryFormRef = ref(); // 搜索的表单
// 消息对话框
const messageBoxVisible = ref(false);
const messageBoxUserId = ref(0);
/** 侦听accountId */
const onAccountChanged = (id: number) => {
queryParams.accountId = id;
queryParams.pageNo = 1;
handleQuery();
};
/** 查询列表 */
const handleQuery = () => {
queryParams.pageNo = 1;
getList();
};
const getList = async () => {
try {
loading.value = true;
const data = await getMessagePage(queryParams);
list.value = data.list;
total.value = data.total;
} finally {
loading.value = false;
}
};
/** 重置按钮操作 */
const resetQuery = async () => {
// 暂存 accountId并在 reset 后恢复
const accountId = queryParams.accountId;
queryFormRef.value?.resetFields();
queryParams.accountId = accountId;
handleQuery();
};
/** 打开消息发送窗口 */
const handleSend = async (userId: number) => {
messageBoxUserId.value = userId;
messageBoxVisible.value = true;
};
/** 分页改变事件 */
const handlePageChange = (page: number, pageSize: number) => {
queryParams.pageNo = page;
queryParams.pageSize = pageSize;
getList();
};
</script>
<template>
<Page>
<Button
danger
type="link"
target="_blank"
href="https://github.com/yudaocode/yudao-ui-admin-vue3"
<Page auto-content-height class="flex flex-col">
<!-- 搜索工作栏 -->
<div class="mb-4 rounded-lg bg-white p-4">
<Form
ref="queryFormRef"
:model="queryParams"
layout="inline"
class="search-form"
>
<FormItem label="公众号" name="accountId">
<WxAccountSelect @change="onAccountChanged" />
</FormItem>
<FormItem label="消息类型" name="type">
<Select
v-model:value="queryParams.type"
placeholder="请选择消息类型"
class="!w-[240px]"
>
<Select.Option
v-for="dict in getDictOptions(DICT_TYPE.MP_MESSAGE_TYPE)"
:key="dict.value"
:value="dict.value"
>
{{ dict.label }}
</Select.Option>
</Select>
</FormItem>
<FormItem label="用户标识" name="openid">
<Input
v-model:value="queryParams.openid"
placeholder="请输入用户标识"
allow-clear
class="!w-[240px]"
/>
</FormItem>
<FormItem label="创建时间" name="createTime">
<DatePicker.RangePicker
v-model:value="queryParams.createTime"
:show-time="true"
class="!w-[240px]"
/>
</FormItem>
<FormItem>
<a-button type="primary" @click="handleQuery">
<template #icon>
<IconifyIcon icon="mdi:magnify" />
</template>
搜索
</a-button>
<a-button class="ml-2" @click="resetQuery">
<template #icon>
<IconifyIcon icon="mdi:refresh" />
</template>
重置
</a-button>
</FormItem>
</Form>
</div>
<!-- 列表 -->
<div class="flex-1 rounded-lg bg-white p-4">
<MessageTable :list="list" :loading="loading" @send="handleSend" />
<div v-show="total > 0" class="mt-4 flex justify-end">
<a-pagination
v-model:current="queryParams.pageNo"
v-model:page-size="queryParams.pageSize"
:total="total"
show-size-changer
show-quick-jumper
:show-total="(total: number) => `${total}`"
@change="handlePageChange"
/>
</div>
</div>
<!-- 发送消息的弹窗 -->
<Modal
v-model:open="messageBoxVisible"
title="粉丝消息列表"
:width="800"
:footer="null"
destroy-on-close
>
该功能支持 Vue3 + element-plus 版本
</Button>
<br />
<Button
type="link"
target="_blank"
href="https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mp/message/index"
>
可参考
https://github.com/yudaocode/yudao-ui-admin-vue3/blob/master/src/views/mp/message/index
代码pull request 贡献给我们
</Button>
<WxMsg :user-id="messageBoxUserId" />
</Modal>
</Page>
</template>
<style scoped>
.search-form :deep(.ant-form-item) {
margin-bottom: 16px;
}
</style>