2025-04-21 19:05:00 +08:00
|
|
|
|
<script lang="ts" setup>
|
2025-11-07 17:43:13 +08:00
|
|
|
|
import type { Menu, RawMenu } from './components/types';
|
2025-04-22 22:10:33 +08:00
|
|
|
|
|
2025-11-03 14:04:00 +08:00
|
|
|
|
import { ref } from 'vue';
|
|
|
|
|
|
|
|
|
|
|
|
import { confirm, ContentWrap, DocAlert, Page } from '@vben/common-ui';
|
|
|
|
|
|
import { handleTree } from '@vben/utils';
|
|
|
|
|
|
|
|
|
|
|
|
import { Button, Form, message } from 'ant-design-vue';
|
|
|
|
|
|
|
2025-11-07 19:06:34 +08:00
|
|
|
|
import { deleteMenu, getMenuList, saveMenu } from '#/api/mp/menu';
|
2025-11-07 17:43:13 +08:00
|
|
|
|
import { MenuEditor, MenuPreviewer } from '#/views/mp/menu/components';
|
2025-11-03 14:04:00 +08:00
|
|
|
|
import { Level, MENU_NOT_SELECTED } from '#/views/mp/menu/data';
|
2025-11-07 17:58:24 +08:00
|
|
|
|
import { WxAccountSelect } from '#/views/mp/modules/wx-account-select';
|
2025-11-03 14:04:00 +08:00
|
|
|
|
|
|
|
|
|
|
defineOptions({ name: 'MpMenu' });
|
|
|
|
|
|
|
|
|
|
|
|
// ======================== 列表查询 ========================
|
|
|
|
|
|
const loading = ref(false); // 遮罩层
|
|
|
|
|
|
const accountId = ref(-1);
|
|
|
|
|
|
const accountName = ref<string>('');
|
|
|
|
|
|
const menuList = ref<Menu[]>([]);
|
|
|
|
|
|
|
|
|
|
|
|
// ======================== 菜单操作 ========================
|
|
|
|
|
|
// 当前选中菜单编码:
|
|
|
|
|
|
// * 一级('x')
|
|
|
|
|
|
// * 二级('x-y')
|
|
|
|
|
|
// * 未选中(MENU_NOT_SELECTED)
|
|
|
|
|
|
const activeIndex = ref<string>(MENU_NOT_SELECTED);
|
|
|
|
|
|
// 二级菜单显示标志: 归属的一级菜单index
|
|
|
|
|
|
// * 未初始化:-1
|
|
|
|
|
|
// * 初始化:x
|
|
|
|
|
|
const parentIndex = ref(-1);
|
|
|
|
|
|
|
|
|
|
|
|
// ======================== 菜单编辑 ========================
|
|
|
|
|
|
const showRightPanel = ref(false); // 右边配置显示默认详情还是配置详情
|
|
|
|
|
|
const isParent = ref<boolean>(true); // 是否一级菜单,控制MenuEditor中name字段长度
|
|
|
|
|
|
const activeMenu = ref<Menu>({}); // 选中菜单,MenuEditor的modelValue
|
|
|
|
|
|
|
|
|
|
|
|
// 一些临时值放在这里进行判断,如果放在 activeMenu,由于引用关系,menu 也会多了多余的参数
|
|
|
|
|
|
const tempSelfObj = ref<{
|
|
|
|
|
|
grand: Level;
|
|
|
|
|
|
x: number;
|
|
|
|
|
|
y: number;
|
|
|
|
|
|
}>({
|
|
|
|
|
|
grand: Level.Undefined,
|
|
|
|
|
|
x: 0,
|
|
|
|
|
|
y: 0,
|
|
|
|
|
|
});
|
|
|
|
|
|
const dialogNewsVisible = ref(false); // 跳转图文时的素材选择弹窗
|
|
|
|
|
|
|
|
|
|
|
|
/** 侦听公众号变化 */
|
|
|
|
|
|
function onAccountChanged(id: number, name: string) {
|
|
|
|
|
|
accountId.value = id;
|
|
|
|
|
|
accountName.value = name;
|
|
|
|
|
|
getList();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** 查询并转换菜单 */
|
|
|
|
|
|
async function getList() {
|
|
|
|
|
|
loading.value = true;
|
|
|
|
|
|
try {
|
2025-11-07 19:06:34 +08:00
|
|
|
|
const data = await getMenuList(accountId.value);
|
2025-11-03 14:04:00 +08:00
|
|
|
|
const menuData = menuListToFrontend(data);
|
|
|
|
|
|
menuList.value = handleTree(menuData, 'id') as Menu[];
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
loading.value = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
|
|
function handleQuery() {
|
|
|
|
|
|
resetForm();
|
|
|
|
|
|
getList();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** 将后端返回的 menuList,转换成前端的 menuList */
|
|
|
|
|
|
function menuListToFrontend(list: any[]) {
|
2025-11-09 15:31:20 +08:00
|
|
|
|
if (!list) {
|
|
|
|
|
|
return [];
|
|
|
|
|
|
}
|
2025-11-03 14:04:00 +08:00
|
|
|
|
|
|
|
|
|
|
const result: RawMenu[] = [];
|
|
|
|
|
|
list.forEach((item: RawMenu) => {
|
|
|
|
|
|
const menu: any = {
|
|
|
|
|
|
...item,
|
|
|
|
|
|
};
|
|
|
|
|
|
menu.reply = {
|
|
|
|
|
|
type: item.replyMessageType,
|
|
|
|
|
|
accountId: item.accountId,
|
|
|
|
|
|
content: item.replyContent,
|
|
|
|
|
|
mediaId: item.replyMediaId,
|
|
|
|
|
|
url: item.replyMediaUrl,
|
|
|
|
|
|
title: item.replyTitle,
|
|
|
|
|
|
description: item.replyDescription,
|
|
|
|
|
|
thumbMediaId: item.replyThumbMediaId,
|
|
|
|
|
|
thumbMediaUrl: item.replyThumbMediaUrl,
|
|
|
|
|
|
articles: item.replyArticles,
|
|
|
|
|
|
musicUrl: item.replyMusicUrl,
|
|
|
|
|
|
hqMusicUrl: item.replyHqMusicUrl,
|
|
|
|
|
|
};
|
|
|
|
|
|
result.push(menu as RawMenu);
|
|
|
|
|
|
});
|
|
|
|
|
|
return result;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** 重置表单,清空表单数据 */
|
|
|
|
|
|
function resetForm() {
|
|
|
|
|
|
// 菜单操作
|
|
|
|
|
|
activeIndex.value = MENU_NOT_SELECTED;
|
|
|
|
|
|
parentIndex.value = -1;
|
|
|
|
|
|
|
|
|
|
|
|
// 菜单编辑
|
|
|
|
|
|
showRightPanel.value = false;
|
|
|
|
|
|
activeMenu.value = {};
|
|
|
|
|
|
tempSelfObj.value = { grand: Level.Undefined, x: 0, y: 0 };
|
|
|
|
|
|
dialogNewsVisible.value = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ======================== 菜单操作 ========================
|
|
|
|
|
|
/** 一级菜单点击事件 */
|
|
|
|
|
|
function menuClicked(parent: Menu, x: number) {
|
|
|
|
|
|
// 右侧的表单相关
|
|
|
|
|
|
showRightPanel.value = true; // 右边菜单
|
|
|
|
|
|
activeMenu.value = parent; // 这个如果放在顶部,flag 会没有。因为重新赋值了。
|
|
|
|
|
|
tempSelfObj.value.grand = Level.Parent; // 表示一级菜单
|
|
|
|
|
|
tempSelfObj.value.x = x; // 表示一级菜单索引
|
|
|
|
|
|
isParent.value = true;
|
|
|
|
|
|
|
|
|
|
|
|
// 左侧的选中
|
|
|
|
|
|
activeIndex.value = `${x}`; // 菜单选中样式
|
|
|
|
|
|
parentIndex.value = x; // 二级菜单显示标志
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** 二级菜单点击事件 */
|
|
|
|
|
|
function subMenuClicked(child: Menu, x: number, y: number) {
|
|
|
|
|
|
// 右侧的表单相关
|
|
|
|
|
|
showRightPanel.value = true; // 右边菜单
|
|
|
|
|
|
activeMenu.value = child; // 将点击的数据放到临时变量,对象有引用作用
|
|
|
|
|
|
tempSelfObj.value.grand = Level.Child; // 表示二级菜单
|
|
|
|
|
|
tempSelfObj.value.x = x; // 表示一级菜单索引
|
|
|
|
|
|
tempSelfObj.value.y = y; // 表示二级菜单索引
|
|
|
|
|
|
isParent.value = false;
|
|
|
|
|
|
|
|
|
|
|
|
// 左侧的选中
|
|
|
|
|
|
activeIndex.value = `${x}-${y}`;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** 删除当前菜单 */
|
|
|
|
|
|
async function onDeleteMenu() {
|
2025-11-09 15:31:20 +08:00
|
|
|
|
await confirm('确定要删除吗?');
|
|
|
|
|
|
if (tempSelfObj.value.grand === Level.Parent) {
|
|
|
|
|
|
// 一级菜单的删除方法
|
|
|
|
|
|
menuList.value.splice(tempSelfObj.value.x, 1);
|
|
|
|
|
|
} else if (tempSelfObj.value.grand === Level.Child) {
|
|
|
|
|
|
// 二级菜单的删除方法
|
|
|
|
|
|
menuList.value[tempSelfObj.value.x]?.children?.splice(
|
|
|
|
|
|
tempSelfObj.value.y,
|
|
|
|
|
|
1,
|
|
|
|
|
|
);
|
|
|
|
|
|
}
|
|
|
|
|
|
// 提示
|
|
|
|
|
|
message.success('删除成功');
|
|
|
|
|
|
|
|
|
|
|
|
// 处理菜单的选中
|
|
|
|
|
|
activeMenu.value = {};
|
|
|
|
|
|
showRightPanel.value = false;
|
|
|
|
|
|
activeIndex.value = MENU_NOT_SELECTED;
|
2025-11-03 14:04:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// ======================== 菜单编辑 ========================
|
|
|
|
|
|
/** 保存菜单 */
|
|
|
|
|
|
async function onSave() {
|
2025-11-09 15:31:20 +08:00
|
|
|
|
await confirm('确定要保存吗?');
|
|
|
|
|
|
const hideLoading = message.loading({
|
|
|
|
|
|
content: '保存中...',
|
|
|
|
|
|
duration: 0,
|
|
|
|
|
|
});
|
2025-11-03 14:04:00 +08:00
|
|
|
|
try {
|
2025-11-09 15:31:20 +08:00
|
|
|
|
await saveMenu(accountId.value, menuListToBackend());
|
|
|
|
|
|
await getList();
|
|
|
|
|
|
message.success('发布成功');
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
hideLoading();
|
2025-11-03 14:04:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** 清空菜单 */
|
|
|
|
|
|
async function onClear() {
|
2025-11-09 15:31:20 +08:00
|
|
|
|
await confirm('确定要删除吗?');
|
|
|
|
|
|
const hideLoading = message.loading({
|
|
|
|
|
|
content: '删除中...',
|
|
|
|
|
|
duration: 0,
|
|
|
|
|
|
});
|
2025-11-03 14:04:00 +08:00
|
|
|
|
try {
|
2025-11-09 15:31:20 +08:00
|
|
|
|
await deleteMenu(accountId.value);
|
|
|
|
|
|
handleQuery();
|
|
|
|
|
|
message.success('清空成功');
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
hideLoading();
|
2025-11-03 14:04:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** 将前端的 menuList,转换成后端接收的 menuList */
|
|
|
|
|
|
function menuListToBackend() {
|
|
|
|
|
|
const result: any[] = [];
|
|
|
|
|
|
menuList.value.forEach((item) => {
|
|
|
|
|
|
const menu = menuToBackend(item);
|
|
|
|
|
|
result.push(menu);
|
|
|
|
|
|
|
|
|
|
|
|
// 处理子菜单
|
|
|
|
|
|
if (!item.children || item.children.length <= 0) {
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
menu.children = [];
|
|
|
|
|
|
item.children.forEach((subItem) => {
|
|
|
|
|
|
menu.children.push(menuToBackend(subItem));
|
|
|
|
|
|
});
|
|
|
|
|
|
});
|
|
|
|
|
|
return result;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** 将前端的 menu,转换成后端接收的 menu */
|
2025-11-09 15:31:20 +08:00
|
|
|
|
// TODO: @芋艿,需要根据后台 API 删除不需要的字段
|
2025-11-03 14:04:00 +08:00
|
|
|
|
function menuToBackend(menu: any) {
|
|
|
|
|
|
const result = {
|
|
|
|
|
|
...menu,
|
|
|
|
|
|
children: undefined, // 不处理子节点
|
|
|
|
|
|
reply: undefined, // 稍后复制
|
|
|
|
|
|
};
|
|
|
|
|
|
result.replyMessageType = menu.reply.type;
|
|
|
|
|
|
result.replyContent = menu.reply.content;
|
|
|
|
|
|
result.replyMediaId = menu.reply.mediaId;
|
|
|
|
|
|
result.replyMediaUrl = menu.reply.url;
|
|
|
|
|
|
result.replyTitle = menu.reply.title;
|
|
|
|
|
|
result.replyDescription = menu.reply.description;
|
|
|
|
|
|
result.replyThumbMediaId = menu.reply.thumbMediaId;
|
|
|
|
|
|
result.replyThumbMediaUrl = menu.reply.thumbMediaUrl;
|
|
|
|
|
|
result.replyArticles = menu.reply.articles;
|
|
|
|
|
|
result.replyMusicUrl = menu.reply.musicUrl;
|
|
|
|
|
|
result.replyHqMusicUrl = menu.reply.hqMusicUrl;
|
|
|
|
|
|
return result;
|
|
|
|
|
|
}
|
2025-04-21 19:05:00 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<template>
|
2025-11-03 14:04:00 +08:00
|
|
|
|
<Page auto-content-height>
|
|
|
|
|
|
<template #doc>
|
|
|
|
|
|
<DocAlert title="公众号菜单" url="https://doc.iocoder.cn/mp/menu/" />
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 搜索工作栏 -->
|
2025-11-09 15:31:20 +08:00
|
|
|
|
<!-- TODO @hw:是不是少了一个框子哈? -->
|
2025-11-03 14:04:00 +08:00
|
|
|
|
<!-- <ContentWrap> -->
|
|
|
|
|
|
<Form layout="inline" class="-mb-15px w-240px">
|
|
|
|
|
|
<Form.Item label="公众号" prop="accountId" class="w-240px">
|
|
|
|
|
|
<WxAccountSelect @change="onAccountChanged" />
|
|
|
|
|
|
</Form.Item>
|
|
|
|
|
|
</Form>
|
|
|
|
|
|
<!-- </ContentWrap> -->
|
|
|
|
|
|
|
2025-11-09 15:31:20 +08:00
|
|
|
|
<!-- TODO @hw:貌似高度高了点。就是手机下面部分,空了一大块。 -->
|
2025-11-03 14:04:00 +08:00
|
|
|
|
<ContentWrap>
|
|
|
|
|
|
<div class="clearfix public-account-management" v-loading="loading">
|
|
|
|
|
|
<!--左边配置菜单-->
|
|
|
|
|
|
<div class="left">
|
|
|
|
|
|
<div class="weixin-hd">
|
|
|
|
|
|
<div class="weixin-title">{{ accountName }}</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="clearfix weixin-menu">
|
|
|
|
|
|
<MenuPreviewer
|
|
|
|
|
|
v-model="menuList"
|
|
|
|
|
|
:account-id="accountId"
|
|
|
|
|
|
:active-index="activeIndex"
|
|
|
|
|
|
:parent-index="parentIndex"
|
|
|
|
|
|
@menu-clicked="(parent, x) => menuClicked(parent, x)"
|
|
|
|
|
|
@submenu-clicked="(child, x, y) => subMenuClicked(child, x, y)"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="save-div">
|
|
|
|
|
|
<Button
|
|
|
|
|
|
class="save-btn"
|
|
|
|
|
|
type="primary"
|
|
|
|
|
|
@click="onSave"
|
2025-11-07 15:26:09 +08:00
|
|
|
|
v-access:code="['mp:menu:save']"
|
2025-11-03 14:04:00 +08:00
|
|
|
|
>
|
|
|
|
|
|
保存并发布菜单
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
<Button
|
|
|
|
|
|
class="save-btn"
|
|
|
|
|
|
danger
|
|
|
|
|
|
@click="onClear"
|
2025-11-07 15:26:09 +08:00
|
|
|
|
v-access:code="['mp:menu:delete']"
|
2025-11-03 14:04:00 +08:00
|
|
|
|
>
|
|
|
|
|
|
清空菜单
|
|
|
|
|
|
</Button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<!--右边配置-->
|
|
|
|
|
|
<div class="right" v-if="showRightPanel">
|
|
|
|
|
|
<MenuEditor
|
|
|
|
|
|
:account-id="accountId"
|
|
|
|
|
|
:is-parent="isParent"
|
|
|
|
|
|
v-model="activeMenu"
|
|
|
|
|
|
@delete="onDeleteMenu"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<!-- 一进页面就显示的默认页面,当点击左边按钮的时候,就不显示了-->
|
|
|
|
|
|
<div v-else class="right">
|
|
|
|
|
|
<p>请选择菜单配置</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</ContentWrap>
|
2025-04-21 19:05:00 +08:00
|
|
|
|
</Page>
|
2025-04-22 22:10:33 +08:00
|
|
|
|
</template>
|
2025-11-03 14:04:00 +08:00
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
2025-11-09 15:31:20 +08:00
|
|
|
|
/** TODO @hw:尽量使用 tindwind 替代。ps:如果多个组件复用,那就不用调整 */
|
2025-11-03 14:04:00 +08:00
|
|
|
|
/* 公共颜色变量 */
|
|
|
|
|
|
.clearfix {
|
|
|
|
|
|
*zoom: 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.clearfix::after {
|
|
|
|
|
|
clear: both;
|
|
|
|
|
|
display: table;
|
|
|
|
|
|
content: '';
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
div {
|
|
|
|
|
|
text-align: left;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.weixin-hd {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
bottom: 426px;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
width: 300px;
|
|
|
|
|
|
height: 64px;
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
text-align: center;
|
2025-11-07 17:44:26 +08:00
|
|
|
|
background: transparent url('./components/assets/menu_head.png') no-repeat 0 0;
|
2025-11-03 14:04:00 +08:00
|
|
|
|
background-position: 0 0;
|
|
|
|
|
|
background-size: 100%;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.weixin-title {
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 33px;
|
|
|
|
|
|
left: 0;
|
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.weixin-menu {
|
|
|
|
|
|
padding-left: 43px;
|
|
|
|
|
|
font-size: 12px;
|
2025-11-07 17:44:26 +08:00
|
|
|
|
background: transparent url('./components/assets/menu_foot.png') no-repeat 0 0;
|
2025-11-03 14:04:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.public-account-management {
|
|
|
|
|
|
width: 1200px;
|
|
|
|
|
|
// min-width: 1200px;
|
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
|
|
|
|
|
|
.left {
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
float: left;
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
display: block;
|
|
|
|
|
|
width: 350px;
|
|
|
|
|
|
height: 715px;
|
|
|
|
|
|
padding: 518px 25px 88px;
|
2025-11-07 17:44:26 +08:00
|
|
|
|
background: url('./components/assets/iphone_backImg.png') no-repeat;
|
2025-11-03 14:04:00 +08:00
|
|
|
|
background-size: 100% auto;
|
|
|
|
|
|
|
|
|
|
|
|
.save-div {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
gap: 10px;
|
2025-11-03 14:04:38 +08:00
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
margin-top: 15px;
|
2025-11-03 14:04:00 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* 右边菜单内容 */
|
|
|
|
|
|
.right {
|
|
|
|
|
|
float: left;
|
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
width: 63%;
|
|
|
|
|
|
padding: 20px;
|
|
|
|
|
|
margin-left: 20px;
|
|
|
|
|
|
background-color: #e8e7e7;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|