Introducing new features. 微信菜单设置

This commit is contained in:
aeizzz 2023-02-24 17:47:22 +08:00
parent 39e61bf929
commit 30b66bd4fd
7 changed files with 1110 additions and 646 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

847
src/views/mp/menu/index.vue Normal file
View File

@ -0,0 +1,847 @@
<template>
<div class="app-container">
<!-- 搜索工作栏 -->
<el-form
ref="queryForm"
size="small"
:inline="true"
v-show="showSearch"
label-width="68px"
>
<el-form-item label="公众号" prop="accountId">
<el-select v-model="accountId" placeholder="请选择公众号">
<el-option
v-for="item in accounts"
:key="parseInt(item.id)"
:label="item.name"
:value="parseInt(item.id)"
/>
</el-select>
</el-form-item>
<el-form-item>
<el-button type="primary" :icon="ElIconSearch" @click="handleQuery"
>搜索</el-button
>
<el-button :icon="ElIconRefresh" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<div class="public-account-management clearfix" v-loading="loading">
<!--左边配置菜单-->
<div class="left">
<div class="weixin-hd">
<div class="weixin-title">{{ name }}</div>
</div>
<div class="weixin-menu menu_main clearfix">
<div class="menu_bottom" v-for="(item, i) of menuList" :key="i">
<!-- 一级菜单 -->
<div
@click="menuClick(i, item)"
class="menu_item el-icon-s-fold"
:class="{ active: isActive === i }"
>
{{ item.name }}
</div>
<!-- 以下为二级菜单-->
<div class="submenu" v-if="isSubMenuFlag === i">
<template v-for="(subItem, k) in item.children">
<div v-if="item.children" class="subtitle menu_bottom">
<div
class="menu_subItem"
:class="{ active: isSubMenuActive === i + '' + k }"
@click="subMenuClick(subItem, i, k)"
>
{{ subItem.name }}
</div>
</div>
</template>
<!-- 二级菜单加号 当长度 小于 5 才显示二级菜单的加号 -->
<div
class="menu_bottom menu_addicon"
v-if="!item.children || item.children.length < 5"
@click="addSubMenu(i, item)"
>
<el-icon><el-icon-plus /></el-icon>
</div>
</div>
</div>
<!-- 一级菜单加号 -->
<div
class="menu_bottom menu_addicon"
v-if="this.menuList.length < 3"
@click="addMenu"
>
<el-icon><el-icon-plus /></el-icon>
</div>
</div>
<div class="save_div">
<el-button
class="save_btn"
type="success"
size="small"
@click="handleSave"
v-hasPermi="['mp:menu:save']"
>保存并发布菜单</el-button
>
<el-button
class="save_btn"
type="danger"
size="small"
@click="handleDelete"
v-hasPermi="['mp:menu:delete']"
>清空菜单</el-button
>
</div>
</div>
<!--右边配置-->
<div v-if="showRightFlag" class="right">
<div class="configure_page">
<div class="delete_btn">
<el-button
size="mini"
type="danger"
:icon="ElIconDelete"
@click="deleteMenu(tempObj)"
>删除当前菜单</el-button
>
</div>
<div>
<span>菜单名称</span>
<el-input
class="input_width"
v-model="tempObj.name"
placeholder="请输入菜单名称"
:maxlength="nameMaxLength"
clearable
/>
</div>
<div v-if="showConfigureContent">
<div class="menu_content">
<span>菜单标识</span>
<el-input
class="input_width"
v-model="tempObj.menuKey"
placeholder="请输入菜单 KEY"
clearable
/>
</div>
<div class="menu_content">
<span>菜单内容</span>
<el-select
v-model="tempObj.type"
clearable
placeholder="请选择"
class="menu_option"
>
<el-option
v-for="item in menuOptions"
:label="item.label"
:value="item.value"
:key="item.value"
/>
</el-select>
</div>
<div class="configur_content" v-if="tempObj.type === 'view'">
<span>跳转链接</span>
<el-input
class="input_width"
v-model="tempObj.url"
placeholder="请输入链接"
clearable
/>
</div>
<div class="configur_content" v-if="tempObj.type === 'miniprogram'">
<div class="applet">
<span>小程序的 appid </span>
<el-input
class="input_width"
v-model="tempObj.miniProgramAppId"
placeholder="请输入小程序的appid"
clearable
/>
</div>
<div class="applet">
<span>小程序的页面路径</span>
<el-input
class="input_width"
v-model="tempObj.miniProgramPagePath"
placeholder="请输入小程序的页面路径pages/index"
clearable
/>
</div>
<div class="applet">
<span>小程序的备用网页</span>
<el-input
class="input_width"
v-model="tempObj.url"
placeholder="不支持小程序的老版本客户端将打开本网页"
clearable
/>
</div>
<p class="blue">
tips:需要和公众号进行关联才可以把小程序绑定带微信菜单上哟
</p>
</div>
<div
class="configur_content"
v-if="tempObj.type === 'article_view_limited'"
>
<el-row>
<div
class="select-item"
v-if="tempObj && tempObj.replyArticles"
>
<wx-news :articles="tempObj.replyArticles" />
<el-row class="ope-row">
<el-button
type="danger"
:icon="ElIconDelete"
circle
@click="deleteMaterial"
/>
</el-row>
</div>
<div v-else>
<el-row>
<el-col :span="24" style="text-align: center">
<el-button type="success" @click="openMaterial">
素材库选择<el-icon class="el-icon--right"
><el-icon-circle-check
/></el-icon>
</el-button>
</el-col>
</el-row>
</div>
<el-dialog
title="选择图文"
v-model="dialogNewsVisible"
width="90%"
>
<wx-material-select
:objData="{ type: 'news', accountId: this.accountId }"
@selectMaterial="selectMaterial"
/>
</el-dialog>
</el-row>
</div>
<div
class="configur_content"
v-if="
tempObj.type === 'click' || tempObj.type === 'scancode_waitmsg'
"
>
<wx-reply-select
:objData="tempObj.reply"
v-if="hackResetWxReplySelect"
/>
</div>
</div>
</div>
</div>
<!-- 一进页面就显示的默认页面当点击左边按钮的时候就不显示了-->
<div v-else class="right">
<p>请选择菜单配置</p>
</div>
</div>
</div>
</template>
<script>
// import WxReplySelect from '/@/views/mp/components/wx-reply/main.vue'
import WxNews from '/@/views/mp/components/wx-news/main.vue'
// import WxMaterialSelect from '/@/views/mp/components/wx-material-select/main.vue'
import { deleteMenu, getMenuList, saveObj } from '/@/api/mp/wx-menu'
import { getSimpleAccounts } from '/@/api/mp/wx-account'
export default {
data() {
return {
// ======================== ========================
//
loading: true,
//
showSearch: true,
//
accountId: undefined,
//
name: '',
menuList: {
children: [],
},
// ======================== ========================
//
isActive: -1,
//
isSubMenuActive: -1,
//
isSubMenuFlag: -1,
// ======================== ========================
//
showRightFlag: false,
// 1 4 2 7
nameMaxLength: 0,
//
showConfigureContent: true,
// WxReplySelect
hackResetWxReplySelect: false,
//
tempObj: {},
tempSelfObj: {
// tempObjmenu
},
//
dialogNewsVisible: false,
menuOptions: [
{
value: 'view',
label: '跳转网页',
},
{
value: 'miniprogram',
label: '跳转小程序',
},
{
value: 'click',
label: '点击回复',
},
{
value: 'article_view_limited',
label: '跳转图文消息',
},
{
value: 'scancode_push',
label: '扫码直接返回结果',
},
{
value: 'scancode_waitmsg',
label: '扫码回复',
},
{
value: 'pic_sysphoto',
label: '系统拍照发图',
},
{
value: 'pic_photo_or_album',
label: '拍照或者相册',
},
{
value: 'pic_weixin',
label: '微信相册',
},
{
value: 'location_select',
label: '选择地理位置',
},
],
//
accounts: [],
ElIconSearch,
ElIconRefresh,
ElIconDelete,
}
},
components: {
WxReplySelect,
WxNews,
WxMaterialSelect,
ElIconPlus,
ElIconCircleCheck,
},
name: 'MpMenu',
created() {
getSimpleAccounts().then((response) => {
this.accounts = response.data
//
if (this.accounts.length > 0) {
this.setAccountId(this.accounts[0].id)
}
//
this.getList()
})
},
methods: {
// ======================== ========================
/** 设置账号编号 */
setAccountId(accountId) {
this.accountId = accountId
this.name = this.accounts.find((item) => item.id === accountId)?.name
},
getList() {
this.loading = false
getMenuList(this.accountId)
.then((response) => {
response.data = this.convertMenuList(response.data)
this.menuList = this.handleTree(response.data, 'id')
})
.finally(() => {
this.loading = false
})
},
/** 搜索按钮操作 */
handleQuery() {
this.resetForm()
//
if (this.accountId) {
this.setAccountId(this.accountId)
}
this.getList()
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm()
//
if (this.accounts.length > 0) {
this.setAccountId(this.accounts[0].id)
}
this.handleQuery()
},
// menuList menuList
convertMenuList(list) {
const menuList = []
list.forEach((item) => {
const menu = {
...item,
}
if (item.type === 'click' || item.type === 'scancode_waitmsg') {
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,
}
}
menuList.push(menu)
})
return menuList
},
//
resetForm() {
//
this.isActive = -1
this.isSubMenuActive = -1
this.isSubMenuFlag = -1
//
this.showRightFlag = false
this.nameMaxLength = 0
this.showConfigureContent = 0
this.hackResetWxReplySelect = true
this.hackResetWxReplySelect = false
this.tempObj = {}
this.tempSelfObj = {}
this.dialogNewsVisible = false
},
// ======================== ========================
//
menuClick(i, item) {
//
this.resetEditor()
this.showRightFlag = true //
this.tempObj = item // flag
this.tempSelfObj.grand = '1' //
this.tempSelfObj.index = i //
this.nameMaxLength = 4
this.showConfigureContent = !(item.children && item.children.length > 0) //
//
this.isActive = i //
this.isSubMenuFlag = i //
this.isSubMenuActive = -1 //
},
//
subMenuClick(subItem, index, k) {
//
this.resetEditor()
this.showRightFlag = true //
this.tempObj = subItem //
this.tempSelfObj.grand = '2' //
this.tempSelfObj.index = index //
this.tempSelfObj.secondIndex = k //
this.nameMaxLength = 7
this.showConfigureContent = true
//
this.isActive = -1 //
this.isSubMenuActive = index + '' + k //
},
//
addMenu() {
const menuKeyLength = this.menuList.length
const addButton = {
name: '菜单名称',
children: [],
reply: {
//
type: 'text',
accountId: this.accountId, // 使
},
}
this.menuList[menuKeyLength] = addButton
this.menuClick(this.menuKeyLength - 1, addButton)
},
// item
addSubMenu(i, item) {
// name
if (!item.children || item.children.length <= 0) {
item['children'] = []
//
this.showConfigureContent = false
}
let subMenuKeyLength = item.children.length // key
let addButton = {
name: '子菜单名称',
reply: {
//
type: 'text',
accountId: this.accountId, // 使
},
}
item.children[subMenuKeyLength] = addButton
this.subMenuClick(item.children[subMenuKeyLength], i, subMenuKeyLength)
},
//
deleteMenu(item) {
this.$modal
.confirm('确定要删除吗?')
.then(() => {
//
if (this.tempSelfObj.grand === '1') {
//
this.menuList.splice(this.tempSelfObj.index, 1)
} else if (this.tempSelfObj.grand === '2') {
//
this.menuList[this.tempSelfObj.index].children.splice(
this.tempSelfObj.secondIndex,
1
)
}
//
this.$modal.msgSuccess('删除成功')
//
this.tempObj = {}
this.showRightFlag = false
this.isActive = -1
this.isSubMenuActive = -1
})
.catch(() => {})
},
// ======================== ========================
handleSave() {
this.$modal
.confirm('确定要保证并发布该菜单吗?')
.then(() => {
this.loading = true
return saveObj(this.accountId, this.convertMenuFormList())
})
.then(() => {
this.getList()
this.$modal.msgSuccess('发布成功')
})
.finally(() => {
this.loading = false
})
},
// Editor
resetEditor() {
this.hackResetWxReplySelect = false //
this.$nextTick(() => {
this.hackResetWxReplySelect = true //
})
},
handleDelete() {
this.$modal
.confirm('确定要清空所有菜单吗?')
.then(() => {
this.loading = true
return deleteMenu(this.accountId)
})
.then(() => {
this.handleQuery()
this.$modal.msgSuccess('清空成功')
})
.catch(() => {})
.finally(() => {
this.loading = false
})
},
// menuList menuList
convertMenuFormList() {
const menuList = []
this.menuList.forEach((item) => {
let menu = this.convertMenuForm(item)
menuList.push(menu)
//
if (!item.children || item.children.length <= 0) {
return
}
menu.children = []
item.children.forEach((subItem) => {
menu.children.push(this.convertMenuForm(subItem))
})
})
return menuList
},
// menu menu
convertMenuForm(menu) {
let result = {
...menu,
children: undefined, //
reply: undefined, //
}
if (menu.type === 'click' || menu.type === 'scancode_waitmsg') {
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
},
// ======================== ========================
openMaterial() {
this.dialogNewsVisible = true
},
selectMaterial(item) {
const articleId = item.articleId
const articles = item.content.newsItem
//
if (articles.length > 1) {
this.$alert('您选择的是多图文,将默认跳转第一篇', '提示', {
confirmButtonText: '确定',
})
}
this.dialogNewsVisible = false
//
this.tempObj.articleId = articleId
this.tempObj.replyArticles = []
articles.forEach((article) => {
this.tempObj.replyArticles.push({
title: article.title,
description: article.digest,
picUrl: article.picUrl,
url: article.url,
})
})
},
deleteMaterial() {
delete this.tempObj
delete this.tempObj
},
},
}
</script>
<style lang="scss" scoped="scoped">
.clearfix {
*zoom: 1;
}
.clearfix::after {
content: '';
display: table;
clear: both;
}
div {
text-align: left;
}
.weixin-hd {
color: #fff;
text-align: center;
position: relative;
bottom: 426px;
left: 0px;
width: 300px;
height: 64px;
background: transparent url('assets/menu_head.png') no-repeat 0 0;
background-position: 0 0;
background-size: 100%;
}
.weixin-title {
color: #fff;
font-size: 14px;
width: 100%;
text-align: center;
position: absolute;
top: 33px;
left: 0px;
}
.weixin-menu {
background: transparent url('assets/menu_foot.png') no-repeat 0 0;
padding-left: 43px;
font-size: 12px;
}
.menu_option {
width: 40% !important;
}
.public-account-management {
min-width: 1200px;
width: 1200px;
margin: 0 auto;
.left {
float: left;
display: inline-block;
width: 350px;
height: 715px;
background: url('assets/iphone_backImg.png') no-repeat;
background-size: 100% auto;
padding: 518px 25px 88px;
position: relative;
box-sizing: border-box;
/*第一级菜单*/
.menu_main {
.menu_bottom {
position: relative;
float: left;
display: inline-block;
box-sizing: border-box;
width: 85.5px;
text-align: center;
border: 1px solid #ebedee;
background-color: #fff;
cursor: pointer;
&.menu_addicon {
height: 46px;
line-height: 46px;
}
.menu_item {
height: 44px;
line-height: 44px;
text-align: center;
box-sizing: border-box;
width: 100%;
&.active {
border: 1px solid #2bb673;
}
}
.menu_subItem {
height: 44px;
line-height: 44px;
text-align: center;
box-sizing: border-box;
&.active {
border: 1px solid #2bb673;
}
}
}
i {
color: #2bb673;
}
/*第二级菜单*/
.submenu {
position: absolute;
width: 85.5px;
bottom: 45px;
.subtitle {
background-color: #fff;
box-sizing: border-box;
}
}
}
.save_div {
margin-top: 15px;
text-align: center;
.save_btn {
bottom: 20px;
left: 100px;
}
}
}
/*右边菜单内容*/
.right {
float: left;
width: 63%;
background-color: #e8e7e7;
padding: 20px;
margin-left: 20px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
.configure_page {
.delete_btn {
text-align: right;
margin-bottom: 15px;
}
.menu_content {
margin-top: 20px;
}
.configur_content {
margin-top: 20px;
background-color: #fff;
padding: 20px 10px;
border-radius: 5px;
}
.blue {
color: #29b6f6;
margin-top: 10px;
}
.applet {
margin-bottom: 20px;
span {
width: 20%;
}
}
.input_width {
width: 40%;
}
.material {
.input_width {
width: 30%;
}
.el-textarea {
width: 80%;
}
}
}
}
.el-input {
width: 70%;
margin-right: 2%;
}
}
</style>
<style lang="scss" scoped>
.pagination {
text-align: right;
margin-right: 25px;
}
.select-item {
width: 280px;
padding: 10px;
margin: 0 auto 10px auto;
border: 1px solid #eaeaea;
}
.select-item2 {
padding: 10px;
margin: 0 auto 10px auto;
border: 1px solid #eaeaea;
}
.ope-row {
padding-top: 10px;
text-align: center;
}
.item-name {
font-size: 12px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
text-align: center;
}
</style>

File diff suppressed because it is too large Load Diff