mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-22 23:31:52 +08:00
mp:menu 前端的新增、删除操作的完善
This commit is contained in:
parent
02ec5d455c
commit
c0b950257f
@ -60,11 +60,11 @@ SOFTWARE.
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- 一级菜单加号 -->
|
<!-- 一级菜单加号 -->
|
||||||
<div class="menu_bottom menu_addicon" v-if="menuKeyLength < 3" @click="addMenu"><i class="el-icon-plus"></i></div>
|
<div class="menu_bottom menu_addicon" v-if="this.menuList.length < 3" @click="addMenu"><i class="el-icon-plus"></i></div>
|
||||||
</div>
|
</div>
|
||||||
<div class="save_div">
|
<div class="save_div">
|
||||||
<!--<el-button class="save_btn" type="warning" size="small" @click="saveFun">保存菜单</el-button>-->
|
<!--<el-button class="save_btn" type="warning" size="small" @click="saveFun">保存菜单</el-button>-->
|
||||||
<el-button class="save_btn" type="success" size="small" @click="saveAndReleaseFun">保存并发布菜单</el-button>
|
<el-button class="save_btn" type="success" size="small" @click="handleSaveAndReleaseFun">保存并发布菜单</el-button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!--右边配置-->
|
<!--右边配置-->
|
||||||
@ -75,9 +75,9 @@ SOFTWARE.
|
|||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<span>菜单名称:</span>
|
<span>菜单名称:</span>
|
||||||
<el-input class="input_width" v-model="tempObj.name" placeholder="请输入菜单名称" :maxlength=nameMaxlength clearable></el-input>
|
<el-input class="input_width" v-model="tempObj.name" placeholder="请输入菜单名称" :maxlength=nameMaxLength clearable></el-input>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="showConfigurContent">
|
<div v-if="showConfigureContent">
|
||||||
<div class="menu_content">
|
<div class="menu_content">
|
||||||
<span>菜单内容:</span>
|
<span>菜单内容:</span>
|
||||||
<el-select v-model="tempObj.type" clearable placeholder="请选择" class="menu_option">
|
<el-select v-model="tempObj.type" clearable placeholder="请选择" class="menu_option">
|
||||||
@ -129,8 +129,8 @@ SOFTWARE.
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!--一进页面就显示的默认页面,当点击左边按钮的时候,就不显示了-->
|
<!-- 一进页面就显示的默认页面,当点击左边按钮的时候,就不显示了-->
|
||||||
<div v-if="!showRightFlag" class="right">
|
<div v-else class="right">
|
||||||
<p>请选择菜单配置</p>
|
<p>请选择菜单配置</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@ -138,12 +138,11 @@ SOFTWARE.
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
// import { save, saveAndRelease ,getList} from '@/api/wxmp/wxmenu'
|
|
||||||
import WxReplySelect from '@/views/mp/components/wx-news/main.vue'
|
import WxReplySelect from '@/views/mp/components/wx-news/main.vue'
|
||||||
import WxNews from '@/views/mp/components/wx-news/main.vue';
|
import WxNews from '@/views/mp/components/wx-news/main.vue';
|
||||||
import WxMaterialSelect from '@/views/mp/components/wx-news/main.vue'
|
import WxMaterialSelect from '@/views/mp/components/wx-news/main.vue'
|
||||||
import {getMenuList} from "@/api/mp/menu";
|
import { getMenuList } from "@/api/mp/menu";
|
||||||
import {getSimpleAccounts} from "@/api/mp/account";
|
import { getSimpleAccounts } from "@/api/mp/account";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'mpMenu',
|
name: 'mpMenu',
|
||||||
@ -154,6 +153,7 @@ export default {
|
|||||||
},
|
},
|
||||||
data(){
|
data(){
|
||||||
return {
|
return {
|
||||||
|
// ======================== 列表查询 ========================
|
||||||
// 遮罩层
|
// 遮罩层
|
||||||
loading: true,
|
loading: true,
|
||||||
// 显示搜索条件
|
// 显示搜索条件
|
||||||
@ -164,24 +164,28 @@ export default {
|
|||||||
children: [],
|
children: [],
|
||||||
},
|
},
|
||||||
|
|
||||||
showRightFlag:false, // 右边配置显示默认详情还是配置详情
|
|
||||||
menu:{ // 横向菜单
|
menu:{ // 横向菜单
|
||||||
button:[
|
button:[
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
||||||
|
// ======================== 菜单操作 ========================
|
||||||
isActive: -1,// 一级菜单点中样式
|
isActive: -1,// 一级菜单点中样式
|
||||||
isSubMenuActive: -1, // 一级菜单点中样式
|
isSubMenuActive: -1, // 一级菜单点中样式
|
||||||
isSubMenuFlag: -1, // 二级菜单显示标志
|
isSubMenuFlag: -1, // 二级菜单显示标志
|
||||||
|
|
||||||
|
// ======================== 菜单编辑 ========================
|
||||||
|
showRightFlag: false, // 右边配置显示默认详情还是配置详情
|
||||||
|
nameMaxLength: 0, // 菜单名称最大长度;1 级是 4 字符;2 级是 7 字符;
|
||||||
|
showConfigureContent: true, // 是否展示配置内容;如果有子菜单,就不显示配置内容
|
||||||
|
|
||||||
|
|
||||||
tempObj:{}, // 右边临时变量,作为中间值牵引关系
|
tempObj:{}, // 右边临时变量,作为中间值牵引关系
|
||||||
tempSelfObj: {
|
tempSelfObj: { // 一些临时值放在这里进行判断,如果放在 tempObj,由于引用关系,menu 也会多了多余的参数
|
||||||
// 一些临时值放在这里进行判断,如果放在 tempObj,由于引用关系,menu 也会多了多余的参数
|
|
||||||
},
|
},
|
||||||
visible2: false, //素材内容 "选择素材"按钮弹框显示隐藏
|
visible2: false, //素材内容 "选择素材"按钮弹框显示隐藏
|
||||||
tableData:[], //素材内容弹框数据,
|
tableData:[], //素材内容弹框数据,
|
||||||
menuName:'',
|
menuName:'',
|
||||||
showConfigurContent:true,
|
|
||||||
nameMaxlength:0,//名称最大长度
|
|
||||||
menuOptions: [{
|
menuOptions: [{
|
||||||
value: 'view',
|
value: 'view',
|
||||||
label: '跳转网页'
|
label: '跳转网页'
|
||||||
@ -231,12 +235,6 @@ export default {
|
|||||||
this.getList();
|
this.getList();
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
computed: {
|
|
||||||
menuKeyLength:function() {
|
|
||||||
// menuObj 的长度,当长度小于 3 才显示一级菜单的加号
|
|
||||||
return this.menu.button.length;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
methods: {
|
methods: {
|
||||||
// ======================== 列表查询 ========================
|
// ======================== 列表查询 ========================
|
||||||
/** 设置账号编号 */
|
/** 设置账号编号 */
|
||||||
@ -271,34 +269,92 @@ export default {
|
|||||||
this.handleQuery()
|
this.handleQuery()
|
||||||
},
|
},
|
||||||
|
|
||||||
// TODO 芋艿:未归类
|
// ======================== 菜单操作 ========================
|
||||||
|
// 一级菜单点击事件
|
||||||
|
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); // 有子菜单,就不显示配置内容
|
||||||
|
|
||||||
deleteTempObj(){
|
// 左侧的选中
|
||||||
this.$delete(this.tempObj,'repName')
|
this.isActive = i; // 一级菜单选中样式
|
||||||
this.$delete(this.tempObj,'repUrl')
|
this.isSubMenuFlag = i; // 二级菜单显示标志
|
||||||
this.$delete(this.tempObj,'content')
|
this.isSubMenuActive = -1; // 二级菜单去除选中样式
|
||||||
},
|
},
|
||||||
openMaterial(){
|
// 二级菜单点击事件
|
||||||
this.dialogNewsVisible = true
|
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; // 二级菜单选中样式
|
||||||
},
|
},
|
||||||
selectMaterial(item){
|
// 添加横向一级菜单
|
||||||
if(item.content.articles.length>1){
|
addMenu(){
|
||||||
this.$alert('您选择的是多图文,将默认跳转第一篇', '提示', {
|
const menuKeyLength = this.menuList.length;
|
||||||
confirmButtonText: '确定'
|
const addButton = {
|
||||||
})
|
name: "菜单名称",
|
||||||
|
children: []
|
||||||
}
|
}
|
||||||
this.dialogNewsVisible = false
|
this.$set(this.menuList, menuKeyLength, addButton)
|
||||||
this.tempObj.article_id = item.articleId
|
this.menuClick(this.menuKeyLength - 1, addButton)
|
||||||
this.tempObj.mediaName = item.name
|
|
||||||
this.tempObj.url = item.url
|
|
||||||
item.mediaType = this.tempObj.mediaType
|
|
||||||
item.content.articles = item.content.articles.slice(0,1)
|
|
||||||
this.tempObj.content = item.content
|
|
||||||
},
|
},
|
||||||
handleClick(tab, event){
|
// 添加横向二级菜单;item 表示要操作的父菜单
|
||||||
this.tempObj.mediaType = tab.name
|
addSubMenu(i, item) {
|
||||||
|
if (!item.children || item.children.length <= 0){
|
||||||
|
this.$set( item, 'children',[])
|
||||||
|
// TODO 芋艿:需要搞的属性弄下
|
||||||
|
this.$delete( item, 'type')
|
||||||
|
this.$delete( item, 'pagepath')
|
||||||
|
this.$delete( item, 'url')
|
||||||
|
this.$delete( item, 'key')
|
||||||
|
this.$delete( item, 'article_id')
|
||||||
|
this.$delete( item, 'textContent')
|
||||||
|
this.showConfigureContent = false
|
||||||
|
}
|
||||||
|
|
||||||
|
let subMenuKeyLength = item.children.length; // 获取二级菜单key长度
|
||||||
|
let addButton = {
|
||||||
|
name: "子菜单名称"
|
||||||
|
}
|
||||||
|
this.$set(item.children, subMenuKeyLength, addButton);
|
||||||
|
this.subMenuClick(item.children[subMenuKeyLength], i, subMenuKeyLength)
|
||||||
},
|
},
|
||||||
saveAndReleaseFun(){
|
// 删除当前菜单
|
||||||
|
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(() => {});
|
||||||
|
},
|
||||||
|
|
||||||
|
// ======================== 菜单编辑 ========================
|
||||||
|
handleSaveAndReleaseFun(){
|
||||||
this.$confirm('确定要保证并发布该菜单吗?', '提示', {
|
this.$confirm('确定要保证并发布该菜单吗?', '提示', {
|
||||||
confirmButtonText: '确定',
|
confirmButtonText: '确定',
|
||||||
cancelButtonText: '取消',
|
cancelButtonText: '取消',
|
||||||
@ -324,102 +380,38 @@ export default {
|
|||||||
}).catch(() => {
|
}).catch(() => {
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
// 一级菜单点击事件
|
// 表单 Editor 重置
|
||||||
menuClick(i, item){
|
resetEditor() {
|
||||||
this.hackResetWxReplySelect = false//销毁组件
|
this.hackResetEditor = false // 销毁组件
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.hackResetWxReplySelect = true//重建组件
|
this.hackResetEditor = true // 重建组件
|
||||||
})
|
})
|
||||||
this.showRightFlag = true;//右边菜单
|
|
||||||
this.tempObj = item;//这个如果放在顶部,flag会没有。因为重新赋值了。
|
|
||||||
this.tempSelfObj.grand = "1";//表示一级菜单
|
|
||||||
this.tempSelfObj.index = i;//表示一级菜单索引
|
|
||||||
this.isActive = i; //一级菜单选中样式
|
|
||||||
this.isSubMenuFlag = i; //二级菜单显示标志
|
|
||||||
this.isSubMenuActive = -1; //二级菜单去除选中样式
|
|
||||||
this.nameMaxlength = 4
|
|
||||||
if(item.sub_button && item.sub_button.length > 0){
|
|
||||||
this.showConfigurContent = false
|
|
||||||
}else{
|
|
||||||
this.showConfigurContent = true
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
// 二级菜单点击事件
|
|
||||||
subMenuClick(subItem, index, k){
|
// TODO 芋艿:未归类
|
||||||
this.hackResetWxReplySelect = false//销毁组件
|
|
||||||
this.$nextTick(() => {
|
deleteTempObj(){
|
||||||
this.hackResetWxReplySelect = true//重建组件
|
this.$delete(this.tempObj,'repName')
|
||||||
|
this.$delete(this.tempObj,'repUrl')
|
||||||
|
this.$delete(this.tempObj,'content')
|
||||||
|
},
|
||||||
|
openMaterial(){
|
||||||
|
this.dialogNewsVisible = true
|
||||||
|
},
|
||||||
|
selectMaterial(item){
|
||||||
|
if(item.content.articles.length>1){
|
||||||
|
this.$alert('您选择的是多图文,将默认跳转第一篇', '提示', {
|
||||||
|
confirmButtonText: '确定'
|
||||||
})
|
})
|
||||||
this.showRightFlag = true;//右边菜单
|
}
|
||||||
this.tempObj = subItem;//将点击的数据放到临时变量,对象有引用作用
|
this.dialogNewsVisible = false
|
||||||
this.tempSelfObj.grand = "2";//表示二级菜单
|
this.tempObj.article_id = item.articleId
|
||||||
this.tempSelfObj.index = index;//表示一级菜单索引
|
this.tempObj.mediaName = item.name
|
||||||
this.tempSelfObj.secondIndex = k;//表示二级菜单索引
|
this.tempObj.url = item.url
|
||||||
this.isSubMenuActive = index + "" + k; //二级菜单选中样式
|
item.mediaType = this.tempObj.mediaType
|
||||||
this.isActive = -1;//一级菜单去除样式
|
item.content.articles = item.content.articles.slice(0,1)
|
||||||
this.showConfigurContent = true;
|
this.tempObj.content = item.content
|
||||||
this.nameMaxlength = 7
|
|
||||||
},
|
},
|
||||||
// 添加横向一级菜单
|
|
||||||
addMenu(){
|
|
||||||
let menuKeyLength = this.menuKeyLength
|
|
||||||
let addButton = {
|
|
||||||
name: "菜单名称",
|
|
||||||
sub_button: []
|
|
||||||
}
|
|
||||||
this.$set(this.menu.button,menuKeyLength,addButton)
|
|
||||||
this.menuClick(this.menuKeyLength-1, addButton)
|
|
||||||
},
|
|
||||||
// 添加横向二级菜单
|
|
||||||
addSubMenu(i,item){
|
|
||||||
if(!item.sub_button||item.sub_button.length<=0){
|
|
||||||
this.$set( item, 'sub_button',[])
|
|
||||||
this.$delete( item, 'type')
|
|
||||||
this.$delete( item, 'pagepath')
|
|
||||||
this.$delete( item, 'url')
|
|
||||||
this.$delete( item, 'key')
|
|
||||||
this.$delete( item, 'article_id')
|
|
||||||
this.$delete( item, 'textContent')
|
|
||||||
this.showConfigurContent = false
|
|
||||||
}
|
|
||||||
let subMenuKeyLength = item.sub_button.length;//获取二级菜单key长度
|
|
||||||
let addButton = {
|
|
||||||
name: "子菜单名称"
|
|
||||||
}
|
|
||||||
this.$set(item.sub_button,subMenuKeyLength,addButton);
|
|
||||||
this.subMenuClick(item.sub_button[subMenuKeyLength], i, subMenuKeyLength)
|
|
||||||
},
|
|
||||||
//删除当前菜单
|
|
||||||
deleteMenu(obj){
|
|
||||||
let _this = this;
|
|
||||||
this.$confirm('确定要删除吗?', '提示', {
|
|
||||||
confirmButtonText: '确定',
|
|
||||||
cancelButtonText: '取消',
|
|
||||||
type: 'warning'
|
|
||||||
}).then(() => {
|
|
||||||
_this.deleteData();// 删除菜单数据
|
|
||||||
_this.tempObj = {};
|
|
||||||
_this.showRightFlag = false;
|
|
||||||
this.isActive = -1;
|
|
||||||
this.isSubMenuActive = -1;
|
|
||||||
}).catch(() => {
|
|
||||||
});
|
|
||||||
},
|
|
||||||
// 删除菜单数据
|
|
||||||
deleteData(){
|
|
||||||
// 一级菜单的删除方法
|
|
||||||
if(this.tempSelfObj.grand == "1"){
|
|
||||||
this.menu.button.splice(this.tempSelfObj.index,1);
|
|
||||||
}
|
|
||||||
// 二级菜单的删除方法
|
|
||||||
if(this.tempSelfObj.grand == "2"){
|
|
||||||
this.menu.button[this.tempSelfObj.index].sub_button.splice(this.tempSelfObj.secondIndex, 1);
|
|
||||||
}
|
|
||||||
this.$message({
|
|
||||||
type: 'success',
|
|
||||||
message: '删除成功!'
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
@ -589,30 +581,30 @@ div{
|
|||||||
<!--</style>-->
|
<!--</style>-->
|
||||||
<!--素材样式-->
|
<!--素材样式-->
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.pagination{
|
.pagination{
|
||||||
text-align: right;
|
text-align: right;
|
||||||
margin-right: 25px;
|
margin-right: 25px;
|
||||||
}
|
}
|
||||||
.select-item{
|
.select-item{
|
||||||
width: 280px;
|
width: 280px;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
margin: 0 auto 10px auto;
|
margin: 0 auto 10px auto;
|
||||||
border: 1px solid #eaeaea;
|
border: 1px solid #eaeaea;
|
||||||
}
|
}
|
||||||
.select-item2{
|
.select-item2{
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
margin: 0 auto 10px auto;
|
margin: 0 auto 10px auto;
|
||||||
border: 1px solid #eaeaea;
|
border: 1px solid #eaeaea;
|
||||||
}
|
}
|
||||||
.ope-row{
|
.ope-row{
|
||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
.item-name{
|
.item-name{
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow:ellipsis;
|
text-overflow:ellipsis;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
Loading…
Reference in New Issue
Block a user