菜单页面添加新增下级
This commit is contained in:
parent
ab40d9f046
commit
567c0d4df5
|
@ -1,39 +1,20 @@
|
||||||
<template>
|
<template>
|
||||||
<a-modal
|
<a-modal :title="modalTitle" :width="1000" :visible="visible" :confirmLoading="confirmLoading" @ok="handleSubmit" @cancel="handleCancel" :destroyOnClose="true">
|
||||||
:title="modalTitle"
|
|
||||||
:width="1000"
|
|
||||||
:visible="visible"
|
|
||||||
:confirmLoading="confirmLoading"
|
|
||||||
@ok="handleSubmit"
|
|
||||||
@cancel="handleCancel"
|
|
||||||
:destroyOnClose="true"
|
|
||||||
>
|
|
||||||
<a-spin :spinning="formLoading">
|
<a-spin :spinning="formLoading">
|
||||||
<a-form :form="form" >
|
<a-form :form="form">
|
||||||
|
|
||||||
<a-form-item v-show="false" >
|
<a-form-item v-show="false">
|
||||||
<a-input v-decorator="['id']" />
|
<a-input v-decorator="['id']" />
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
|
|
||||||
<a-row :gutter="24">
|
<a-row :gutter="24">
|
||||||
<a-col :md="12" :sm="24">
|
<a-col :md="12" :sm="24">
|
||||||
<a-form-item
|
<a-form-item label="菜单名称" :labelCol="labelCol" :wrapperCol="wrapperCol" hasFeedback>
|
||||||
label="菜单名称"
|
|
||||||
:labelCol="labelCol"
|
|
||||||
:wrapperCol="wrapperCol"
|
|
||||||
hasFeedback
|
|
||||||
>
|
|
||||||
<a-input placeholder="请输入菜单名称" v-decorator="['name',{rules: [{required: true, min: 1, message: '请输入菜单名称!'}]}]" />
|
<a-input placeholder="请输入菜单名称" v-decorator="['name',{rules: [{required: true, min: 1, message: '请输入菜单名称!'}]}]" />
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :md="12" :sm="24">
|
<a-col :md="12" :sm="24">
|
||||||
<a-form-item
|
<a-form-item style="width: 100%" :labelCol="labelCol" :wrapperCol="wrapperCol" label="菜单编号" hasFeedback>
|
||||||
style="width: 100%"
|
|
||||||
:labelCol="labelCol"
|
|
||||||
:wrapperCol="wrapperCol"
|
|
||||||
label="菜单编号"
|
|
||||||
hasFeedback
|
|
||||||
>
|
|
||||||
<a-input placeholder="请输入菜单编号" v-decorator="['code', {rules: [{required: true, min: 1, message: '请输入菜单编号!'}]}]" />
|
<a-input placeholder="请输入菜单编号" v-decorator="['code', {rules: [{required: true, min: 1, message: '请输入菜单编号!'}]}]" />
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
|
@ -41,12 +22,8 @@
|
||||||
|
|
||||||
<a-row :gutter="24">
|
<a-row :gutter="24">
|
||||||
<a-col :md="12" :sm="24">
|
<a-col :md="12" :sm="24">
|
||||||
<a-form-item
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="菜单层级">
|
||||||
:labelCol="labelCol"
|
<a-radio-group v-decorator="['type',{rules: [{ required: true, message: '请选择菜单层级!' }]}]">
|
||||||
:wrapperCol="wrapperCol"
|
|
||||||
label="菜单层级"
|
|
||||||
>
|
|
||||||
<a-radio-group v-decorator="['type',{rules: [{ required: true, message: '请选择菜单层级!' }]}]" >
|
|
||||||
<a-radio value="0" @click="meneTypeFunc(0)">目录</a-radio>
|
<a-radio value="0" @click="meneTypeFunc(0)">目录</a-radio>
|
||||||
<a-radio value="1" @click="meneTypeFunc(1)">菜单</a-radio>
|
<a-radio value="1" @click="meneTypeFunc(1)">菜单</a-radio>
|
||||||
<a-radio value="2" @click="meneTypeFunc(2)">按钮</a-radio>
|
<a-radio value="2" @click="meneTypeFunc(2)">按钮</a-radio>
|
||||||
|
@ -55,25 +32,13 @@
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :md="12" :sm="24">
|
<a-col :md="12" :sm="24">
|
||||||
<div v-show="pidShow">
|
<div v-show="pidShow">
|
||||||
<a-form-item
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="父级菜单" has-feedback>
|
||||||
:labelCol="labelCol"
|
<a-tree-select v-decorator="['pid', {initialValue: treeSelDefaultValue},{rules: [{ required: true, message: '请选择父级菜单!' }]}]" style="width: 100%" :dropdownStyle="{ maxHeight: '300px', overflow: 'auto' }" :treeData="menuTreeData" placeholder="请选择父级菜单" :replaceFields="{
|
||||||
:wrapperCol="wrapperCol"
|
|
||||||
label="父级菜单"
|
|
||||||
has-feedback
|
|
||||||
>
|
|
||||||
<a-tree-select
|
|
||||||
v-decorator="['pid', {rules: [{ required: true, message: '请选择父级菜单!' }]}]"
|
|
||||||
style="width: 100%"
|
|
||||||
:dropdownStyle="{ maxHeight: '300px', overflow: 'auto' }"
|
|
||||||
:treeData="menuTreeData"
|
|
||||||
placeholder="请选择父级菜单"
|
|
||||||
:replaceFields="{
|
|
||||||
children:'children',
|
children:'children',
|
||||||
title:'name',
|
title:'name',
|
||||||
key:'id',
|
key:'id',
|
||||||
value:'id'
|
value:'id'
|
||||||
}"
|
}">
|
||||||
>
|
|
||||||
<span slot="title" slot-scope="{ id }">{{ id }}
|
<span slot="title" slot-scope="{ id }">{{ id }}
|
||||||
</span>
|
</span>
|
||||||
</a-tree-select>
|
</a-tree-select>
|
||||||
|
@ -82,31 +47,23 @@
|
||||||
</a-col>
|
</a-col>
|
||||||
</a-row>
|
</a-row>
|
||||||
|
|
||||||
<a-row :gutter="24" >
|
<a-row :gutter="24">
|
||||||
<a-col :md="12" :sm="24">
|
<a-col :md="12" :sm="24">
|
||||||
<div v-show="componentShow">
|
<div v-show="componentShow">
|
||||||
<a-form-item
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" hasFeedback>
|
||||||
:labelCol="labelCol"
|
|
||||||
:wrapperCol="wrapperCol"
|
|
||||||
hasFeedback
|
|
||||||
>
|
|
||||||
<span slot="label">
|
<span slot="label">
|
||||||
<a-tooltip title="前端vue组件 views文件夹下路径,例:system/menu/index。注:目录级填写:RouteView(不带面包屑),PageView(带面包屑),菜单级内链打开http链接填写:Iframe">
|
<a-tooltip title="前端vue组件 views文件夹下路径,例:system/menu/index。注:目录级填写:RouteView(不带面包屑),PageView(带面包屑),菜单级内链打开http链接填写:Iframe">
|
||||||
<a-icon type="question-circle-o" />
|
<a-icon type="question-circle-o" />
|
||||||
</a-tooltip>
|
</a-tooltip>
|
||||||
前端组件
|
前端组件
|
||||||
</span>
|
</span>
|
||||||
<a-input placeholder="请输入前端组件" :disabled="componentDisabled" prop="component" v-decorator="['component',{rules: [{required: componentRequired, message: '请输入前端组件'}]}]"/><!-- ,{rules: [{required: componentRequired, min: 1, message: '请输入前端组件!'}]} -->
|
<a-input placeholder="请输入前端组件" :disabled="componentDisabled" prop="component" v-decorator="['component',{rules: [{required: componentRequired, message: '请输入前端组件'}]}]" /><!-- ,{rules: [{required: componentRequired, min: 1, message: '请输入前端组件!'}]} -->
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</div>
|
</div>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :md="12" :sm="24">
|
<a-col :md="12" :sm="24">
|
||||||
<div v-show="routerShow">
|
<div v-show="routerShow">
|
||||||
<a-form-item
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" hasFeedback>
|
||||||
:labelCol="labelCol"
|
|
||||||
:wrapperCol="wrapperCol"
|
|
||||||
hasFeedback
|
|
||||||
>
|
|
||||||
<span slot="label">
|
<span slot="label">
|
||||||
<a-tooltip title="浏览器显示的URL,例:/menu,对应打开页面为菜单页面">
|
<a-tooltip title="浏览器显示的URL,例:/menu,对应打开页面为菜单页面">
|
||||||
<a-icon type="question-circle-o" />
|
<a-icon type="question-circle-o" />
|
||||||
|
@ -117,12 +74,7 @@
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</div>
|
</div>
|
||||||
<div v-show="permissionShow">
|
<div v-show="permissionShow">
|
||||||
<a-form-item
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="权限标识" hasFeedback>
|
||||||
:labelCol="labelCol"
|
|
||||||
:wrapperCol="wrapperCol"
|
|
||||||
label="权限标识"
|
|
||||||
hasFeedback
|
|
||||||
>
|
|
||||||
<a-input placeholder="请输入权限标识" v-decorator="['permission', {rules: [{required: permissionRequired, message: '请输入权限标识!'}]}]" />
|
<a-input placeholder="请输入权限标识" v-decorator="['permission', {rules: [{required: permissionRequired, message: '请输入权限标识!'}]}]" />
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</div>
|
</div>
|
||||||
|
@ -131,20 +83,12 @@
|
||||||
|
|
||||||
<a-row :gutter="24">
|
<a-row :gutter="24">
|
||||||
<a-col :md="12" :sm="24">
|
<a-col :md="12" :sm="24">
|
||||||
<a-form-item
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="是否可见">
|
||||||
:labelCol="labelCol"
|
<a-switch id="visible" checkedChildren="是" unCheckedChildren="否" v-decorator="['visible', { valuePropName: 'checked' }]" /><!-- defaultChecked -->
|
||||||
:wrapperCol="wrapperCol"
|
|
||||||
label="是否可见"
|
|
||||||
>
|
|
||||||
<a-switch id="visible" checkedChildren="是" unCheckedChildren="否" v-decorator="['visible', { valuePropName: 'checked' }]"/><!-- defaultChecked -->
|
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
<a-col :md="12" :sm="24">
|
<a-col :md="12" :sm="24">
|
||||||
<a-form-item
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="排序">
|
||||||
:labelCol="labelCol"
|
|
||||||
:wrapperCol="wrapperCol"
|
|
||||||
label="排序"
|
|
||||||
>
|
|
||||||
<a-input-number style="width: 100%" v-decorator="['intCode', { initialValue: 100 }]" :min="1" :max="1000" />
|
<a-input-number style="width: 100%" v-decorator="['intCode', { initialValue: 100 }]" :min="1" :max="1000" />
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
|
@ -153,12 +97,7 @@
|
||||||
<a-row :gutter="24">
|
<a-row :gutter="24">
|
||||||
|
|
||||||
<a-col :md="12" :sm="24">
|
<a-col :md="12" :sm="24">
|
||||||
<a-form-item
|
<a-form-item :labelCol="labelCol" :wrapperCol="wrapperCol" label="备注" hasFeedback>
|
||||||
:labelCol="labelCol"
|
|
||||||
:wrapperCol="wrapperCol"
|
|
||||||
label="备注"
|
|
||||||
hasFeedback
|
|
||||||
>
|
|
||||||
<a-input placeholder="请输入备注" v-decorator="['remark']"></a-input>
|
<a-input placeholder="请输入备注" v-decorator="['remark']"></a-input>
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
</a-col>
|
</a-col>
|
||||||
|
@ -170,216 +109,218 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { menuTree, menuAdd, menuEdit } from '@/api/security/menu'
|
import { menuTree, menuAdd, menuEdit } from '@/api/security/menu'
|
||||||
export default {
|
export default {
|
||||||
|
|
||||||
data () {
|
data() {
|
||||||
return {
|
return {
|
||||||
labelCol: {
|
labelCol: {
|
||||||
xs: { span: 24 },
|
xs: { span: 24 },
|
||||||
sm: { span: 6 }
|
sm: { span: 6 }
|
||||||
},
|
},
|
||||||
wrapperCol: {
|
wrapperCol: {
|
||||||
xs: { span: 24 },
|
xs: { span: 24 },
|
||||||
sm: { span: 16 }
|
sm: { span: 16 }
|
||||||
},
|
},
|
||||||
modalTitle: "新增菜单",
|
modalTitle: "新增菜单",
|
||||||
visible: false,
|
visible: false,
|
||||||
confirmLoading: false,
|
confirmLoading: false,
|
||||||
menuTreeData: [],
|
menuTreeData: [],
|
||||||
componentShow: true,
|
componentShow: true,
|
||||||
componentDisabled: false,
|
componentDisabled: false,
|
||||||
componentRequired: true,
|
componentRequired: true,
|
||||||
routerRequired: true,
|
routerRequired: true,
|
||||||
routerShow: true,
|
routerShow: true,
|
||||||
pidShow: true,
|
pidShow: true,
|
||||||
permissionShow: true,
|
permissionShow: true,
|
||||||
permissionRequired: true,
|
permissionRequired: true,
|
||||||
formLoading: true,
|
formLoading: true,
|
||||||
type: '',
|
type: '',
|
||||||
form: this.$form.createForm(this)
|
form: this.$form.createForm(this),
|
||||||
}
|
treeSelDefaultValue: 1,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
// 新增打开页面初始化
|
||||||
|
add(type) {
|
||||||
|
this.modalTitle = "新增菜单"
|
||||||
|
this.visible = true
|
||||||
|
|
||||||
|
// 默认选中菜单项,并初始化
|
||||||
|
this.form.getFieldDecorator('type', { valuePropName: 'checked', initialValue: '1' })
|
||||||
|
this.meneTypeFunc('1')
|
||||||
|
|
||||||
|
// 默认选中的单选框
|
||||||
|
this.form.getFieldDecorator('visible', { initialValue: true })
|
||||||
|
this.treeSelDefaultValue = type;
|
||||||
|
|
||||||
|
// 默认加载菜单树
|
||||||
|
this.getMenuTree()
|
||||||
|
|
||||||
|
this.formLoading = false
|
||||||
},
|
},
|
||||||
|
// 编辑打开页面初始化
|
||||||
|
edit(record) {
|
||||||
|
this.modalTitle = "编辑菜单"
|
||||||
|
this.visible = true
|
||||||
|
|
||||||
methods: {
|
// 默认选中菜单项,并初始化
|
||||||
// 新增打开页面初始化
|
this.form.getFieldDecorator('type', { valuePropName: 'checked', initialValue: record.type.toString() })
|
||||||
add (type) {
|
this.meneTypeFunc(record.type.toString())
|
||||||
this.modalTitle = "新增菜单"
|
|
||||||
this.visible = true
|
|
||||||
|
|
||||||
// 默认选中菜单项,并初始化
|
// 默认选中的单选框
|
||||||
this.form.getFieldDecorator('type', { valuePropName: 'checked', initialValue: '1' })
|
const visibleDef = false
|
||||||
this.meneTypeFunc('1')
|
if (record.visible == 1) {
|
||||||
|
this.visibleDef = true
|
||||||
// 默认选中的单选框
|
}
|
||||||
this.form.getFieldDecorator('visible', { initialValue: true })
|
this.form.getFieldDecorator('visible', { valuePropName: 'checked', initialValue: this.visibleDef })
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
this.setMenuItem(record)
|
||||||
// 默认加载菜单树
|
// 默认加载菜单树
|
||||||
this.getMenuTree()
|
this.getMenuTree()
|
||||||
|
}, 100)
|
||||||
|
|
||||||
this.formLoading = false
|
this.formLoading = false
|
||||||
},
|
},
|
||||||
// 编辑打开页面初始化
|
getMenuTree() {
|
||||||
edit (record) {
|
menuTree().then((res) => {
|
||||||
this.modalTitle = "编辑菜单"
|
if (res.code == 200) {
|
||||||
this.visible = true
|
this.form.resetFields(`pid`, [])
|
||||||
|
this.menuTreeData = [{
|
||||||
// 默认选中菜单项,并初始化
|
'id': '-1',
|
||||||
this.form.getFieldDecorator('type', { valuePropName: 'checked', initialValue: record.type.toString() })
|
'parentId': '0',
|
||||||
this.meneTypeFunc(record.type.toString())
|
'name': '顶级',
|
||||||
|
'value': '0',
|
||||||
// 默认选中的单选框
|
'pid': '0',
|
||||||
const visibleDef = false
|
'children': res.data
|
||||||
if (record.visible == 1) {
|
}]
|
||||||
this.visibleDef = true
|
console.log(this.menuTreeData)
|
||||||
}
|
|
||||||
this.form.getFieldDecorator('visible', { valuePropName: 'checked', initialValue: this.visibleDef })
|
|
||||||
|
|
||||||
setTimeout(() => {
|
|
||||||
this.setMenuItem(record)
|
|
||||||
// 默认加载菜单树
|
|
||||||
this.getMenuTree()
|
|
||||||
}, 100)
|
|
||||||
|
|
||||||
this.formLoading = false
|
|
||||||
},
|
|
||||||
getMenuTree () {
|
|
||||||
menuTree().then((res) => {
|
|
||||||
if (res.code == 200) {
|
|
||||||
this.form.resetFields(`pid`, [])
|
|
||||||
this.menuTreeData = [{
|
|
||||||
'id': '-1',
|
|
||||||
'parentId': '0',
|
|
||||||
'name': '顶级',
|
|
||||||
'value': '0',
|
|
||||||
'pid': '0',
|
|
||||||
'children': res.data
|
|
||||||
}]
|
|
||||||
console.log(this.menuTreeData)
|
|
||||||
} else {
|
|
||||||
this.$message.warning(res.msg)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
},
|
|
||||||
/**
|
|
||||||
* 选择菜单类型执行初始化表单变量
|
|
||||||
*/
|
|
||||||
meneTypeFunc (type) {
|
|
||||||
this.type = type
|
|
||||||
// eslint-disable-next-line eqeqeq
|
|
||||||
if (type == '0' || type == '1') {
|
|
||||||
// 路由必填,设置空值,并显示
|
|
||||||
this.routerRequired = true
|
|
||||||
this.form.getFieldDecorator('router', { initialValue: '' })
|
|
||||||
this.routerShow = true
|
|
||||||
// 权限标识框隐藏,选填,给空值
|
|
||||||
this.permissionShow = false
|
|
||||||
this.permissionRequired = false
|
|
||||||
this.form.getFieldDecorator('permission', { initialValue: '' })
|
|
||||||
}
|
|
||||||
// eslint-disable-next-line eqeqeq
|
|
||||||
if (type == '0') {
|
|
||||||
// 组件默认为显示,设置可输入,给默认组件 PageView,验证必填
|
|
||||||
this.componentShow = true
|
|
||||||
this.componentDisabled = false
|
|
||||||
this.form.getFieldDecorator('component', { initialValue: 'PageView' })
|
|
||||||
this.componentRequired = true
|
|
||||||
// 父级初始化顶级,并将其隐藏
|
|
||||||
this.form.getFieldDecorator('pid', { initialValue: '0' })
|
|
||||||
this.pidShow = false
|
|
||||||
} else {
|
} else {
|
||||||
// eslint-disable-next-line eqeqeq
|
this.$message.warning(res.msg)
|
||||||
if (type == '1') {
|
|
||||||
// 组件可以手输,取消值
|
|
||||||
this.componentDisabled = false
|
|
||||||
this.form.getFieldDecorator('component', { initialValue: '' })
|
|
||||||
}
|
|
||||||
// 父级选择放开
|
|
||||||
this.pidShow = true
|
|
||||||
}
|
}
|
||||||
// eslint-disable-next-line eqeqeq
|
})
|
||||||
if (type == '2') {
|
},
|
||||||
// 组件设置不填,不可输入,并给空(手输的跟设置的)
|
/**
|
||||||
this.componentRequired = false
|
* 选择菜单类型执行初始化表单变量
|
||||||
this.componentDisabled = true
|
*/
|
||||||
this.form.resetFields(`component`, [])
|
meneTypeFunc(type) {
|
||||||
this.form.getFieldDecorator('component', { initialValue: '' })
|
this.type = type
|
||||||
// 路由选填,设置空值,并隐藏
|
// eslint-disable-next-line eqeqeq
|
||||||
this.routerRequired = false
|
if (type == '0' || type == '1') {
|
||||||
this.form.getFieldDecorator('router', { initialValue: '' })
|
// 路由必填,设置空值,并显示
|
||||||
this.routerShow = false
|
this.routerRequired = true
|
||||||
// 权限标识框显示,必填,给空值
|
this.form.getFieldDecorator('router', { initialValue: '' })
|
||||||
this.permissionShow = true
|
this.routerShow = true
|
||||||
this.permissionRequired = true
|
// 权限标识框隐藏,选填,给空值
|
||||||
this.form.getFieldDecorator('permission', { initialValue: '' })
|
this.permissionShow = false
|
||||||
}
|
this.permissionRequired = false
|
||||||
},
|
this.form.getFieldDecorator('permission', { initialValue: '' })
|
||||||
handleSubmit () {
|
|
||||||
const { form: { validateFields } } = this
|
|
||||||
this.confirmLoading = true
|
|
||||||
validateFields((errors, values) => {
|
|
||||||
if (!errors) {
|
|
||||||
if (values.visible) {
|
|
||||||
values.visible = 1
|
|
||||||
} else {
|
|
||||||
values.visible = 0
|
|
||||||
}
|
|
||||||
console.log(values)
|
|
||||||
if (values.id) {
|
|
||||||
menuEdit(values).then((res) => {
|
|
||||||
this.confirmLoading = false
|
|
||||||
if (res.code == 200) {
|
|
||||||
this.$message.success('编辑成功')
|
|
||||||
this.$emit('ok', values)
|
|
||||||
this.handleCancel()
|
|
||||||
} else {
|
|
||||||
this.$message.error('编辑失败:' + res.msg)
|
|
||||||
}
|
|
||||||
}).finally((res) => {
|
|
||||||
this.confirmLoading = false
|
|
||||||
})
|
|
||||||
} else {
|
|
||||||
menuAdd(values).then((res) => {
|
|
||||||
this.confirmLoading = false
|
|
||||||
if (res.code == 200) {
|
|
||||||
this.$message.success('新增成功')
|
|
||||||
this.$emit('ok', values)
|
|
||||||
this.handleCancel()
|
|
||||||
} else {
|
|
||||||
this.$message.error('新增失败:' + res.msg)
|
|
||||||
}
|
|
||||||
}).finally((res) => {
|
|
||||||
this.confirmLoading = false
|
|
||||||
})
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
this.confirmLoading = false
|
|
||||||
}
|
|
||||||
})
|
|
||||||
},
|
|
||||||
handleCancel () {
|
|
||||||
this.form.resetFields()
|
|
||||||
this.confirmLoading = false
|
|
||||||
this.visible = false
|
|
||||||
},
|
|
||||||
setMenuItem (record) {
|
|
||||||
console.log(record)
|
|
||||||
this.form.setFieldsValue(
|
|
||||||
{
|
|
||||||
id: record.id,
|
|
||||||
name: record.name,
|
|
||||||
code: record.code,
|
|
||||||
component: record.component,
|
|
||||||
permission: record.permission,
|
|
||||||
router: record.router,
|
|
||||||
intCode: record.intCode,
|
|
||||||
remark: record.remark
|
|
||||||
}
|
|
||||||
)
|
|
||||||
this.form.getFieldDecorator('pid', { initialValue: record.pid })
|
|
||||||
this.pid = record.pid
|
|
||||||
}
|
}
|
||||||
|
// eslint-disable-next-line eqeqeq
|
||||||
|
if (type == '0') {
|
||||||
|
// 组件默认为显示,设置可输入,给默认组件 PageView,验证必填
|
||||||
|
this.componentShow = true
|
||||||
|
this.componentDisabled = false
|
||||||
|
this.form.getFieldDecorator('component', { initialValue: 'PageView' })
|
||||||
|
this.componentRequired = true
|
||||||
|
// 父级初始化顶级,并将其隐藏
|
||||||
|
this.form.getFieldDecorator('pid', { initialValue: '0' })
|
||||||
|
this.pidShow = false
|
||||||
|
} else {
|
||||||
|
// eslint-disable-next-line eqeqeq
|
||||||
|
if (type == '1') {
|
||||||
|
// 组件可以手输,取消值
|
||||||
|
this.componentDisabled = false
|
||||||
|
this.form.getFieldDecorator('component', { initialValue: '' })
|
||||||
|
}
|
||||||
|
// 父级选择放开
|
||||||
|
this.pidShow = true
|
||||||
|
}
|
||||||
|
// eslint-disable-next-line eqeqeq
|
||||||
|
if (type == '2') {
|
||||||
|
// 组件设置不填,不可输入,并给空(手输的跟设置的)
|
||||||
|
this.componentRequired = false
|
||||||
|
this.componentDisabled = true
|
||||||
|
this.form.resetFields(`component`, [])
|
||||||
|
this.form.getFieldDecorator('component', { initialValue: '' })
|
||||||
|
// 路由选填,设置空值,并隐藏
|
||||||
|
this.routerRequired = false
|
||||||
|
this.form.getFieldDecorator('router', { initialValue: '' })
|
||||||
|
this.routerShow = false
|
||||||
|
// 权限标识框显示,必填,给空值
|
||||||
|
this.permissionShow = true
|
||||||
|
this.permissionRequired = true
|
||||||
|
this.form.getFieldDecorator('permission', { initialValue: '' })
|
||||||
|
}
|
||||||
|
},
|
||||||
|
handleSubmit() {
|
||||||
|
const { form: { validateFields } } = this
|
||||||
|
this.confirmLoading = true
|
||||||
|
validateFields((errors, values) => {
|
||||||
|
if (!errors) {
|
||||||
|
if (values.visible) {
|
||||||
|
values.visible = 1
|
||||||
|
} else {
|
||||||
|
values.visible = 0
|
||||||
|
}
|
||||||
|
console.log(values)
|
||||||
|
if (values.id) {
|
||||||
|
menuEdit(values).then((res) => {
|
||||||
|
this.confirmLoading = false
|
||||||
|
if (res.code == 200) {
|
||||||
|
this.$message.success('编辑成功')
|
||||||
|
this.$emit('ok', values)
|
||||||
|
this.handleCancel()
|
||||||
|
} else {
|
||||||
|
this.$message.error('编辑失败:' + res.msg)
|
||||||
|
}
|
||||||
|
}).finally((res) => {
|
||||||
|
this.confirmLoading = false
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
menuAdd(values).then((res) => {
|
||||||
|
this.confirmLoading = false
|
||||||
|
if (res.code == 200) {
|
||||||
|
this.$message.success('新增成功')
|
||||||
|
this.$emit('ok', values)
|
||||||
|
this.handleCancel()
|
||||||
|
} else {
|
||||||
|
this.$message.error('新增失败:' + res.msg)
|
||||||
|
}
|
||||||
|
}).finally((res) => {
|
||||||
|
this.confirmLoading = false
|
||||||
|
})
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this.confirmLoading = false
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
handleCancel() {
|
||||||
|
this.form.resetFields()
|
||||||
|
this.confirmLoading = false
|
||||||
|
this.visible = false
|
||||||
|
},
|
||||||
|
setMenuItem(record) {
|
||||||
|
console.log(record)
|
||||||
|
this.form.setFieldsValue(
|
||||||
|
{
|
||||||
|
id: record.id,
|
||||||
|
name: record.name,
|
||||||
|
code: record.code,
|
||||||
|
component: record.component,
|
||||||
|
permission: record.permission,
|
||||||
|
router: record.router,
|
||||||
|
intCode: record.intCode,
|
||||||
|
remark: record.remark
|
||||||
|
}
|
||||||
|
)
|
||||||
|
this.form.getFieldDecorator('pid', { initialValue: record.pid })
|
||||||
|
this.pid = record.pid
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -41,8 +41,10 @@
|
||||||
{{ record.type | typeFilter }}
|
{{ record.type | typeFilter }}
|
||||||
</a-tag>
|
</a-tag>
|
||||||
</span>
|
</span>
|
||||||
<span slot="action" slot-scope="text, record">
|
<span slot="action" slot-scope="text, record" >
|
||||||
<template>
|
<template>
|
||||||
|
<a v-if="hasPerm('sys:menu:add') && record.type !== 2" @click="$refs.menuForm.add(record.id)">新增下级</a>
|
||||||
|
<a-divider type="vertical" v-if="hasPerm('sys:menu:add')" />
|
||||||
<a v-if="hasPerm('sys:menu:edit')" @click="$refs.menuForm.edit(record)">编辑</a>
|
<a v-if="hasPerm('sys:menu:edit')" @click="$refs.menuForm.edit(record)">编辑</a>
|
||||||
<a-divider type="vertical" v-if="hasPerm('sys:menu:edit')" />
|
<a-divider type="vertical" v-if="hasPerm('sys:menu:edit')" />
|
||||||
<a-popconfirm v-if="hasPerm('sys:menu:delete')" placement="topRight" title="删除本菜单与下级?" @confirm="() => handleDel(record)">
|
<a-popconfirm v-if="hasPerm('sys:menu:delete')" placement="topRight" title="删除本菜单与下级?" @confirm="() => handleDel(record)">
|
||||||
|
@ -99,8 +101,9 @@ export default {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '排序',
|
title: '排序',
|
||||||
dataIndex: 'intCode'
|
dataIndex: 'intCode',
|
||||||
}
|
width: '5%',
|
||||||
|
},
|
||||||
],
|
],
|
||||||
loadData: parameter => {
|
loadData: parameter => {
|
||||||
return menuList(Object.assign(parameter, this.queryParam)).then((res) => {
|
return menuList(Object.assign(parameter, this.queryParam)).then((res) => {
|
||||||
|
@ -116,7 +119,7 @@ export default {
|
||||||
this.columns.push({
|
this.columns.push({
|
||||||
title: '操作',
|
title: '操作',
|
||||||
dataIndex: 'action',
|
dataIndex: 'action',
|
||||||
width: '150px',
|
width: '180px',
|
||||||
scopedSlots: { customRender: 'action' }
|
scopedSlots: { customRender: 'action' }
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue