index.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401
  1. <template>
  2. <!-- <doc-alert title="公众号菜单" url="https://doc.iocoder.cn/mp/menu/" /> -->
  3. <!-- 搜索工作栏 -->
  4. <ContentWrap>
  5. <el-form class="-mb-15px" ref="queryFormRef" :inline="true" label-width="68px">
  6. <el-form-item label="公众号" prop="accountId">
  7. <WxAccountSelect @change="onAccountChanged" />
  8. </el-form-item>
  9. </el-form>
  10. </ContentWrap>
  11. <ContentWrap>
  12. <div class="clearfix public-account-management" v-loading="loading">
  13. <!--左边配置菜单-->
  14. <div class="left">
  15. <div class="weixin-hd">
  16. <div class="weixin-title">{{ accountName }}</div>
  17. </div>
  18. <div class="clearfix weixin-menu">
  19. <MenuPreviewer
  20. v-model="menuList"
  21. :account-id="accountId"
  22. :active-index="activeIndex"
  23. :parent-index="parentIndex"
  24. @menu-clicked="(parent, x) => menuClicked(parent, x)"
  25. @submenu-clicked="(child, x, y) => subMenuClicked(child, x, y)"
  26. />
  27. </div>
  28. <div class="save_div">
  29. <el-button class="save_btn" type="success" @click="onSave" v-hasPermi="['mp:menu:save']"
  30. >保存并发布菜单</el-button
  31. >
  32. <el-button class="save_btn" type="danger" @click="onClear" v-hasPermi="['mp:menu:delete']"
  33. >清空菜单</el-button
  34. >
  35. </div>
  36. </div>
  37. <!--右边配置-->
  38. <div class="right" v-if="showRightPanel">
  39. <MenuEditor
  40. :account-id="accountId"
  41. :is-parent="isParent"
  42. v-model="activeMenu"
  43. @delete="onDeleteMenu"
  44. />
  45. </div>
  46. <!-- 一进页面就显示的默认页面,当点击左边按钮的时候,就不显示了-->
  47. <div v-else class="right">
  48. <p>请选择菜单配置</p>
  49. </div>
  50. </div>
  51. </ContentWrap>
  52. </template>
  53. <script lang="ts" setup>
  54. import WxAccountSelect from '@/views/mp/components/wx-account-select'
  55. import MenuEditor from './components/MenuEditor.vue'
  56. import MenuPreviewer from './components/MenuPreviewer.vue'
  57. import * as MpMenuApi from '@/api/mp/menu'
  58. import * as UtilsTree from '@/utils/tree'
  59. import { RawMenu, Menu } from './components/types'
  60. defineOptions({ name: 'MpMenu' })
  61. const message = useMessage() // 消息
  62. const MENU_NOT_SELECTED = '__MENU_NOT_SELECTED__'
  63. // ======================== 列表查询 ========================
  64. const loading = ref(false) // 遮罩层
  65. const accountId = ref(-1)
  66. const accountName = ref<string>('')
  67. const menuList = ref<Menu[]>([])
  68. // ======================== 菜单操作 ========================
  69. // 当前选中菜单编码:
  70. // * 一级('x')
  71. // * 二级('x-y')
  72. // * 未选中(MENU_NOT_SELECTED)
  73. const activeIndex = ref<string>(MENU_NOT_SELECTED)
  74. // 二级菜单显示标志: 归属的一级菜单index
  75. // * 未初始化:-1
  76. // * 初始化:x
  77. const parentIndex = ref(-1)
  78. // ======================== 菜单编辑 ========================
  79. const showRightPanel = ref(false) // 右边配置显示默认详情还是配置详情
  80. const isParent = ref<boolean>(true) // 是否一级菜单,控制MenuEditor中name字段长度
  81. const activeMenu = ref<Menu>({}) // 选中菜单,MenuEditor的modelValue
  82. // 一些临时值放在这里进行判断,如果放在 activeMenu,由于引用关系,menu 也会多了多余的参数
  83. enum Level {
  84. Undefined = '0',
  85. Parent = '1',
  86. Child = '2'
  87. }
  88. const tempSelfObj = ref<{
  89. grand: Level
  90. x: number
  91. y: number
  92. }>({
  93. grand: Level.Undefined,
  94. x: 0,
  95. y: 0
  96. })
  97. const dialogNewsVisible = ref(false) // 跳转图文时的素材选择弹窗
  98. /** 侦听公众号变化 **/
  99. const onAccountChanged = (id: number, name: string) => {
  100. accountId.value = id
  101. accountName.value = name
  102. getList()
  103. }
  104. /** 查询并转换菜单 **/
  105. const getList = async () => {
  106. loading.value = false
  107. try {
  108. const data = await MpMenuApi.getMenuList(accountId.value)
  109. const menuData = menuListToFrontend(data)
  110. menuList.value = UtilsTree.handleTree(menuData, 'id')
  111. } finally {
  112. loading.value = false
  113. }
  114. }
  115. /** 搜索按钮操作 */
  116. const handleQuery = () => {
  117. resetForm()
  118. getList()
  119. }
  120. // 将后端返回的 menuList,转换成前端的 menuList
  121. const menuListToFrontend = (list: any[]) => {
  122. if (!list) return []
  123. const result: RawMenu[] = []
  124. list.forEach((item: RawMenu) => {
  125. const menu: any = {
  126. ...item
  127. }
  128. menu.reply = {
  129. type: item.replyMessageType,
  130. accountId: item.accountId,
  131. content: item.replyContent,
  132. mediaId: item.replyMediaId,
  133. url: item.replyMediaUrl,
  134. title: item.replyTitle,
  135. description: item.replyDescription,
  136. thumbMediaId: item.replyThumbMediaId,
  137. thumbMediaUrl: item.replyThumbMediaUrl,
  138. articles: item.replyArticles,
  139. musicUrl: item.replyMusicUrl,
  140. hqMusicUrl: item.replyHqMusicUrl
  141. }
  142. result.push(menu as RawMenu)
  143. })
  144. return result
  145. }
  146. // 重置表单,清空表单数据
  147. const resetForm = () => {
  148. // 菜单操作
  149. activeIndex.value = MENU_NOT_SELECTED
  150. parentIndex.value = -1
  151. // 菜单编辑
  152. showRightPanel.value = false
  153. activeMenu.value = {}
  154. tempSelfObj.value = { grand: Level.Undefined, x: 0, y: 0 }
  155. dialogNewsVisible.value = false
  156. }
  157. // ======================== 菜单操作 ========================
  158. // 一级菜单点击事件
  159. const menuClicked = (parent: Menu, x: number) => {
  160. // 右侧的表单相关
  161. showRightPanel.value = true // 右边菜单
  162. activeMenu.value = parent // 这个如果放在顶部,flag 会没有。因为重新赋值了。
  163. tempSelfObj.value.grand = Level.Parent // 表示一级菜单
  164. tempSelfObj.value.x = x // 表示一级菜单索引
  165. isParent.value = true
  166. // 左侧的选中
  167. activeIndex.value = `${x}` // 菜单选中样式
  168. parentIndex.value = x // 二级菜单显示标志
  169. }
  170. // 二级菜单点击事件
  171. const subMenuClicked = (child: Menu, x: number, y: number) => {
  172. // 右侧的表单相关
  173. showRightPanel.value = true // 右边菜单
  174. activeMenu.value = child // 将点击的数据放到临时变量,对象有引用作用
  175. tempSelfObj.value.grand = Level.Child // 表示二级菜单
  176. tempSelfObj.value.x = x // 表示一级菜单索引
  177. tempSelfObj.value.y = y // 表示二级菜单索引
  178. isParent.value = false
  179. // 左侧的选中
  180. activeIndex.value = `${x}-${y}`
  181. }
  182. // 删除当前菜单
  183. const onDeleteMenu = async () => {
  184. try {
  185. await message.confirm('确定要删除吗?')
  186. if (tempSelfObj.value.grand === Level.Parent) {
  187. // 一级菜单的删除方法
  188. menuList.value.splice(tempSelfObj.value.x, 1)
  189. } else if (tempSelfObj.value.grand === Level.Child) {
  190. // 二级菜单的删除方法
  191. menuList.value[tempSelfObj.value.x].children?.splice(tempSelfObj.value.y, 1)
  192. }
  193. // 提示
  194. message.notifySuccess('删除成功')
  195. // 处理菜单的选中
  196. activeMenu.value = {}
  197. showRightPanel.value = false
  198. activeIndex.value = MENU_NOT_SELECTED
  199. } catch {}
  200. }
  201. // ======================== 菜单编辑 ========================
  202. const onSave = async () => {
  203. try {
  204. await message.confirm('确定要保存吗?')
  205. loading.value = true
  206. await MpMenuApi.saveMenu(accountId.value, menuListToBackend())
  207. getList()
  208. message.notifySuccess('发布成功')
  209. } finally {
  210. loading.value = false
  211. }
  212. }
  213. const onClear = async () => {
  214. try {
  215. await message.confirm('确定要删除吗?')
  216. loading.value = true
  217. await MpMenuApi.deleteMenu(accountId.value)
  218. handleQuery()
  219. message.notifySuccess('清空成功')
  220. } finally {
  221. loading.value = false
  222. }
  223. }
  224. // 将前端的 menuList,转换成后端接收的 menuList
  225. const menuListToBackend = () => {
  226. const result: any[] = []
  227. menuList.value.forEach((item) => {
  228. const menu = menuToBackend(item)
  229. result.push(menu)
  230. // 处理子菜单
  231. if (!item.children || item.children.length <= 0) {
  232. return
  233. }
  234. menu.children = []
  235. item.children.forEach((subItem) => {
  236. menu.children.push(menuToBackend(subItem))
  237. })
  238. })
  239. return result
  240. }
  241. // 将前端的 menu,转换成后端接收的 menu
  242. // TODO: @芋艿,需要根据后台API删除不需要的字段
  243. const menuToBackend = (menu: any) => {
  244. let result = {
  245. ...menu,
  246. children: undefined, // 不处理子节点
  247. reply: undefined // 稍后复制
  248. }
  249. result.replyMessageType = menu.reply.type
  250. result.replyContent = menu.reply.content
  251. result.replyMediaId = menu.reply.mediaId
  252. result.replyMediaUrl = menu.reply.url
  253. result.replyTitle = menu.reply.title
  254. result.replyDescription = menu.reply.description
  255. result.replyThumbMediaId = menu.reply.thumbMediaId
  256. result.replyThumbMediaUrl = menu.reply.thumbMediaUrl
  257. result.replyArticles = menu.reply.articles
  258. result.replyMusicUrl = menu.reply.musicUrl
  259. result.replyHqMusicUrl = menu.reply.hqMusicUrl
  260. return result
  261. }
  262. </script>
  263. <!--本组件样式-->
  264. <style lang="scss" scoped="scoped">
  265. /* 公共颜色变量 */
  266. .clearfix {
  267. *zoom: 1;
  268. }
  269. .clearfix::after {
  270. display: table;
  271. clear: both;
  272. content: '';
  273. }
  274. div {
  275. text-align: left;
  276. }
  277. .weixin-hd {
  278. position: relative;
  279. bottom: 426px;
  280. left: 0;
  281. width: 300px;
  282. height: 64px;
  283. color: #fff;
  284. text-align: center;
  285. background: transparent url('./assets/menu_head.png') no-repeat 0 0;
  286. background-position: 0 0;
  287. background-size: 100%;
  288. }
  289. .weixin-title {
  290. position: absolute;
  291. top: 33px;
  292. left: 0;
  293. width: 100%;
  294. font-size: 14px;
  295. color: #fff;
  296. text-align: center;
  297. }
  298. .weixin-menu {
  299. padding-left: 43px;
  300. font-size: 12px;
  301. background: transparent url('./assets/menu_foot.png') no-repeat 0 0;
  302. }
  303. .public-account-management {
  304. width: 1200px;
  305. // min-width: 1200px;
  306. margin: 0 auto;
  307. .left {
  308. position: relative;
  309. display: block;
  310. float: left;
  311. width: 350px;
  312. height: 715px;
  313. padding: 518px 25px 88px;
  314. background: url('./assets/iphone_backImg.png') no-repeat;
  315. background-size: 100% auto;
  316. box-sizing: border-box;
  317. .save_div {
  318. margin-top: 15px;
  319. text-align: center;
  320. .save_btn {
  321. bottom: 20px;
  322. left: 100px;
  323. }
  324. }
  325. }
  326. /* 右边菜单内容 */
  327. .right {
  328. float: left;
  329. width: 63%;
  330. padding: 20px;
  331. margin-left: 20px;
  332. background-color: #e8e7e7;
  333. box-sizing: border-box;
  334. }
  335. }
  336. </style>
  337. <!--素材样式-->
  338. <style lang="scss" scoped>
  339. .pagination {
  340. margin-right: 25px;
  341. text-align: right;
  342. }
  343. .select-item {
  344. width: 280px;
  345. padding: 10px;
  346. margin: 0 auto 10px;
  347. border: 1px solid #eaeaea;
  348. }
  349. .ope-row {
  350. padding-top: 10px;
  351. text-align: center;
  352. }
  353. .item-name {
  354. overflow: hidden;
  355. font-size: 12px;
  356. text-align: center;
  357. text-overflow: ellipsis;
  358. white-space: nowrap;
  359. }
  360. </style>