2020-12-07 14:12:37 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<div class="right-box right-box-menu" v-clickoutside="clickOutside">
|
|
|
|
|
|
<!-- begin--顶部按钮-->
|
|
|
|
|
|
<div class="right-box-top-btns right-box-form-delete">
|
2020-12-08 22:14:52 +08:00
|
|
|
|
<button @click="del" class="nz-btn nz-btn-size-normal nz-btn-size-alien" id="menus-edit-del"
|
|
|
|
|
|
type="button"
|
|
|
|
|
|
v-if="editMenu.id">
|
2020-12-07 14:12:37 +08:00
|
|
|
|
<span class="right-box-top-btn-icon"><i class="nz-icon nz-icon-delete"></i></span>
|
|
|
|
|
|
<span class="right-box-top-btn-txt">{{$t('overall.delete')}}</span>
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<!-- end--顶部按钮-->
|
|
|
|
|
|
|
|
|
|
|
|
<!-- begin--标题-->
|
|
|
|
|
|
<div class="right-box-title">{{editMenu.id ? ($t("config.menus.editMenu") + " ID:" + editMenu.id) : $t("config.menus.createMenu")}}</div>
|
|
|
|
|
|
<!-- end--标题-->
|
|
|
|
|
|
|
|
|
|
|
|
<!-- begin--表单-->
|
|
|
|
|
|
<el-scrollbar class="right-box-form-box">
|
2020-12-08 22:14:52 +08:00
|
|
|
|
<el-form :model="editMenu" :rules="rules" class="right-box-form right-box-form-left" label-position="right" label-width="130px" ref="menuForm" size="small">
|
2020-12-07 14:12:37 +08:00
|
|
|
|
<el-form-item :label="$t('config.menus.parent')" prop="parentId">
|
2020-12-08 22:14:52 +08:00
|
|
|
|
<tree-select :multiple="false" :options="menus" label="id" noChildrenText="" noOptionsText="" placeholder="" v-model="editMenu.parentId"></tree-select>
|
2020-12-07 14:12:37 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item :label="$t('config.menus.type')" prop="type">
|
|
|
|
|
|
<el-radio-group v-model="editMenu.type">
|
|
|
|
|
|
<el-radio :label="1">{{$t('config.menus.menu')}}</el-radio>
|
|
|
|
|
|
<el-radio :label="2">{{$t('config.menus.button')}}</el-radio>
|
|
|
|
|
|
</el-radio-group>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<!--name-->
|
|
|
|
|
|
<el-form-item :label="$t('config.menus.name')" prop="name">
|
2020-12-08 22:14:52 +08:00
|
|
|
|
<el-input placeholder="" type="text" v-model="editMenu.name" ></el-input>
|
2020-12-07 14:12:37 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item :label="$t('config.menus.code')" prop="code">
|
2020-12-08 22:14:52 +08:00
|
|
|
|
<el-input placeholder="" type="text" v-model="editMenu.code" ></el-input>
|
2020-12-07 14:12:37 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item :label="$t('config.menus.i18n')" prop="i18n">
|
2020-12-08 22:14:52 +08:00
|
|
|
|
<el-input placeholder="" type="text" v-model="editMenu.i18n" ></el-input>
|
2020-12-07 14:12:37 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item :label="$t('config.menus.route')" prop="route">
|
2020-12-08 22:14:52 +08:00
|
|
|
|
<el-input placeholder="" type="text" v-model="editMenu.route" ></el-input>
|
2020-12-07 14:12:37 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
|
<!--<el-form-item :label="$t('config.menus.perms')" prop="perms">
|
|
|
|
|
|
<el-input type="text" placeholder="" v-model="editMenu.perms" ></el-input>
|
|
|
|
|
|
</el-form-item>-->
|
|
|
|
|
|
<el-form-item :label="$t('config.menus.orderNum')" prop="orderNum">
|
2020-12-08 22:14:52 +08:00
|
|
|
|
<el-input-number :max="1000" :min="1" :precision="0" controls-position="right" style="width: 100%;" v-model="editMenu.orderNum" ></el-input-number>
|
2020-12-07 14:12:37 +08:00
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="right-box-sub-title">{{$t('config.menus.perms')}}
|
2020-12-08 22:14:52 +08:00
|
|
|
|
<button @click="addPermission" class="float-right" id="add-permission" type="button" >
|
2020-12-07 14:12:37 +08:00
|
|
|
|
<span><i class="nz-icon nz-icon-create-square"></i></span>
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="right-box-line"></div>
|
|
|
|
|
|
|
2020-12-08 22:14:52 +08:00
|
|
|
|
<el-form-item :key="index" :label="index+1+''" v-for="(permission,index) in editMenu.permissions" >
|
|
|
|
|
|
<el-input oninput="this.value = this.value.replace(/[,]/g,'')" placeholder="" style="width: calc(100% - 37px);" type="text" v-model="editMenu.permissions[index].value"></el-input>
|
2020-12-07 14:12:37 +08:00
|
|
|
|
<span @click="removePermission(index)" style="padding-left: 5px;"><i class="nz-icon nz-icon-shanchu1"></i></span>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-form>
|
|
|
|
|
|
</el-scrollbar>
|
|
|
|
|
|
<!-- end--表单-->
|
|
|
|
|
|
<!--底部按钮-->
|
|
|
|
|
|
<div class="right-box-bottom-btns">
|
2020-12-08 22:14:52 +08:00
|
|
|
|
<button @click="esc" class="nz-btn nz-btn-size-normal-new nz-btn-style-light-new"
|
|
|
|
|
|
id="menus-esc">
|
2020-12-07 14:12:37 +08:00
|
|
|
|
<span>{{$t('overall.cancel')}}</span>
|
|
|
|
|
|
</button>
|
2020-12-08 22:14:52 +08:00
|
|
|
|
<button @click="save" class="nz-btn nz-btn-size-normal-new nz-btn-style-normal-new"
|
|
|
|
|
|
id="menus-save">
|
2020-12-07 14:12:37 +08:00
|
|
|
|
<span>{{$t('overall.save')}}</span>
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
|
|
|
import Treeselect from '@riophae/vue-treeselect'
|
|
|
|
|
|
import '@riophae/vue-treeselect/dist/vue-treeselect.css'
|
|
|
|
|
|
export default {
|
|
|
|
|
|
name: "menuBox",
|
|
|
|
|
|
components:{
|
|
|
|
|
|
'tree-select':Treeselect,
|
|
|
|
|
|
},
|
|
|
|
|
|
props: {
|
|
|
|
|
|
menu: Object
|
|
|
|
|
|
},
|
|
|
|
|
|
computed: {
|
|
|
|
|
|
isCurrentUser() {
|
|
|
|
|
|
return function(username) {
|
|
|
|
|
|
return localStorage.getItem('nz-username') == username;
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
addDisabled() {
|
|
|
|
|
|
let enabled = this.selectableScripts.filter(item => {
|
|
|
|
|
|
return !item.disabled
|
|
|
|
|
|
});
|
|
|
|
|
|
return enabled.length === 0;
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
data() {
|
|
|
|
|
|
return {
|
|
|
|
|
|
rules: { //表单校验规则
|
|
|
|
|
|
name: [
|
|
|
|
|
|
{required: true, message: this.$t('validate.required'), trigger: 'blur'}
|
|
|
|
|
|
],
|
|
|
|
|
|
type: [
|
|
|
|
|
|
{required: true, message: this.$t('validate.required'), trigger: 'blur'}
|
|
|
|
|
|
],
|
|
|
|
|
|
code: [
|
|
|
|
|
|
{required: true, message: this.$t('validate.required'), trigger: 'blur'}
|
|
|
|
|
|
],
|
|
|
|
|
|
i18n: [
|
|
|
|
|
|
{required: true, message: this.$t('validate.required'), trigger: 'blur'}
|
|
|
|
|
|
],
|
|
|
|
|
|
orderNum: [
|
|
|
|
|
|
{required: true, message: this.$t('validate.required'), trigger: 'blur'}
|
|
|
|
|
|
],
|
|
|
|
|
|
},
|
|
|
|
|
|
editMenu: {},
|
|
|
|
|
|
menus:[],
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
|
|
|
/*关闭弹框*/
|
|
|
|
|
|
esc(refresh) {
|
|
|
|
|
|
this.$emit("close", refresh);
|
|
|
|
|
|
},
|
|
|
|
|
|
clickOutside() {
|
|
|
|
|
|
this.esc(false);
|
|
|
|
|
|
},
|
|
|
|
|
|
/*保存*/
|
|
|
|
|
|
save() {
|
|
|
|
|
|
this.$refs.menuForm.validate(valid => {
|
|
|
|
|
|
if (valid) {
|
|
|
|
|
|
this.editMenu.perms = this.editMenu.permissions&&this.editMenu.permissions.length>0?this.editMenu.permissions.map(t=>t.value).join(','):'';
|
|
|
|
|
|
delete this.editMenu.permissions;
|
|
|
|
|
|
if (this.editMenu.id) {
|
|
|
|
|
|
this.$put('sys/menu', this.editMenu).then(response => {
|
|
|
|
|
|
if (response.code === 200) {
|
|
|
|
|
|
this.$message({duration: 1000, type: 'success', message: this.$t("tip.saveSuccess")});
|
|
|
|
|
|
this.esc(true);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.$message.error(response.msg);
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.$post('sys/menu', this.editMenu).then(response => {
|
|
|
|
|
|
if (response.code === 200) {
|
|
|
|
|
|
this.$message({duration: 1000, type: 'success', message: this.$t("tip.saveSuccess")});
|
|
|
|
|
|
this.esc(true);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.$message.error(response.msg);
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
|
|
|
|
|
/*删除*/
|
|
|
|
|
|
del() {
|
|
|
|
|
|
this.$confirm(this.$t("tip.confirmDelete"), {
|
|
|
|
|
|
confirmButtonText: this.$t("tip.yes"),
|
|
|
|
|
|
cancelButtonText: this.$t("tip.no"),
|
|
|
|
|
|
type: 'warning'
|
|
|
|
|
|
}).then(() => {
|
|
|
|
|
|
this.$delete("sys/menu/?ids=" + this.editMenu.id).then(response => {
|
|
|
|
|
|
if (response.code === 200) {
|
|
|
|
|
|
this.$message({duration: 1000, type: 'success', message: this.$t("tip.deleteSuccess")});
|
|
|
|
|
|
this.esc(true);
|
|
|
|
|
|
} else {
|
|
|
|
|
|
this.$message.error(response.msg);
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
|
|
|
|
|
addPermission:function(){
|
|
|
|
|
|
if(this.editMenu.permissions){
|
|
|
|
|
|
this.editMenu.permissions.push({value:''})
|
|
|
|
|
|
} else{
|
|
|
|
|
|
this.$set(this.editMenu,'permissions',[{value:''}])
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
removePermission:function(index){
|
|
|
|
|
|
this.editMenu.permissions.splice(index,1)
|
|
|
|
|
|
},
|
|
|
|
|
|
getMenus:function(){
|
|
|
|
|
|
this.menus = [];
|
|
|
|
|
|
this.$get("sys/menu").then(response=>{
|
|
|
|
|
|
if (response.code == 200){
|
|
|
|
|
|
this.menus = response.data.list;
|
|
|
|
|
|
function replaceFunc(data){
|
|
|
|
|
|
data.forEach(t=>{
|
|
|
|
|
|
t.label = t.name;
|
|
|
|
|
|
if(t.children&&t.children instanceof Array&&t.children.length>0){
|
|
|
|
|
|
replaceFunc(t.children)
|
|
|
|
|
|
}else{
|
|
|
|
|
|
delete t.children
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
}
|
|
|
|
|
|
replaceFunc(this.menus)
|
|
|
|
|
|
this.menus = [{
|
|
|
|
|
|
id:0,
|
|
|
|
|
|
label:this.$t('config.menus.mainMenu'),
|
|
|
|
|
|
children:JSON.parse(JSON.stringify(this.menus))
|
|
|
|
|
|
}]
|
|
|
|
|
|
}else{
|
|
|
|
|
|
this.$message.error("load menu faild")
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
},
|
2020-12-07 15:33:05 +08:00
|
|
|
|
inputValid:function(val){
|
|
|
|
|
|
return val.replace(/[,]/g,'')
|
|
|
|
|
|
console.log(val)
|
|
|
|
|
|
},
|
2020-12-07 14:12:37 +08:00
|
|
|
|
},
|
|
|
|
|
|
mounted() {
|
|
|
|
|
|
this.getMenus();
|
|
|
|
|
|
},
|
|
|
|
|
|
watch: {
|
|
|
|
|
|
//将prop里的user转为组件内部对象
|
|
|
|
|
|
menu: {
|
|
|
|
|
|
immediate: true,
|
|
|
|
|
|
deep: true,
|
|
|
|
|
|
handler(n) {
|
|
|
|
|
|
this.editMenu = JSON.parse(JSON.stringify(n));
|
|
|
|
|
|
if(this.editMenu.perms&&this.editMenu.perms != ''){
|
|
|
|
|
|
this.$set(this.editMenu,'permissions',this.editMenu.perms.split(',').map(t=>{return {value:t};}))
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
},
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
|
|
.right-box-menu .el-input-number .el-input__inner{
|
|
|
|
|
|
|
|
|
|
|
|
text-align: left !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
.right-box-menu {
|
|
|
|
|
|
.right-box-sub-title {
|
|
|
|
|
|
#add-permission {
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
outline: none;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
|
|
i {
|
|
|
|
|
|
font-size: 17px;
|
|
|
|
|
|
background-color: #f6f6f6;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
.form-item-title{
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
left: -120px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
</style>
|