123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276 |
- <template>
- <el-dialog
- :title="!dataForm.id ? '新增' : '修改'"
- :close-on-click-modal="false"
- :visible.sync="visible"
- width="600px">
- <el-form
- :model="dataForm"
- :rules="dataRule"
- ref="dataForm"
- @keyup.enter.native="dataFormSubmit()"
- label-width="80px"
- style="margin-left: 20px;width: 500px"
- size="mini">
- <el-form-item label="类型" prop="type">
- <el-radio-group v-model="dataForm.type">
- <el-radio v-for="(type, index) in dataForm.typeList" :label="index" :key="index">{{ type }}</el-radio>
- </el-radio-group>
- </el-form-item>
- <el-form-item :label="dataForm.typeList[dataForm.type] + '名称'" prop="name">
- <el-input v-model="dataForm.name" :placeholder="dataForm.typeList[dataForm.type] + '名称'"></el-input>
- </el-form-item>
- <el-form-item label="上级菜单" prop="parentName">
- <el-popover
- ref="menuListPopover"
- placement="bottom-start"
- trigger="click">
- <el-tree
- :data="menuList"
- :props="menuListTreeProps"
- node-key="menuId"
- ref="menuListTree"
- @current-change="menuListTreeCurrentChangeHandle"
- :default-expand-all="true"
- :highlight-current="true"
- :expand-on-click-node="false">
- </el-tree>
- </el-popover>
- <el-input v-model="dataForm.parentName" v-popover:menuListPopover :readonly="true" placeholder="点击选择上级菜单" class="menu-list__input"></el-input>
- </el-form-item>
- <el-form-item v-if="dataForm.type === 1" label="菜单路由" prop="url">
- <el-input v-model="dataForm.url" placeholder="菜单路由"></el-input>
- </el-form-item>
- <el-form-item v-if="dataForm.type !== 0" label="授权标识" prop="perms">
- <el-input v-model="dataForm.perms" placeholder="多个用逗号分隔, 如: user:list,user:create"></el-input>
- </el-form-item>
- <el-form-item v-if="dataForm.type !== 2" label="排序号" prop="orderNum">
- <el-input-number
- v-model="dataForm.orderNum"
- controls-position="right"
- :min="0"
- label="排序号"
- style="width: 100%">
- </el-input-number>
- </el-form-item>
- <el-form-item v-if="dataForm.type !== 2" label="菜单图标" prop="icon">
- <el-row>
- <el-col :span="22">
- <el-popover
- ref="iconListPopover"
- placement="bottom-start"
- trigger="click"
- popper-class="mod-menu__icon-popover">
- <div class="mod-menu__icon-inner">
- <div class="mod-menu__icon-list">
- <el-button
- v-for="(item, index) in iconList"
- :key="index"
- @click="iconActiveHandle(item)"
- :class="{ 'is-active': item === dataForm.icon }">
- <icon-svg :name="item"></icon-svg>
- </el-button>
- </div>
- </div>
- </el-popover>
- <el-input v-model="dataForm.icon" v-popover:iconListPopover :readonly="true" placeholder="菜单图标名称" class="icon-list__input"></el-input>
- </el-col>
- <el-col :span="2" class="icon-list__tips">
- <el-tooltip placement="top" effect="light">
- <div slot="content">全站推荐使用SVG Sprite, 详细请参考:<a href="//github.com/daxiongYang/renren-fast-vue/blob/master/src/icons/index.js" target="_blank">icons/index.js</a>描述</div>
- <i class="el-icon-warning"></i>
- </el-tooltip>
- </el-col>
- </el-row>
- </el-form-item>
- </el-form>
- <span slot="footer" class="dialog-footer">
- <el-button size="mini" @click="visible = false">关闭</el-button>
- <el-button size="mini" type="primary" @click="dataFormSubmit()">确定</el-button>
- </span>
- </el-dialog>
- </template>
- <script>
- import { treeDataTranslate } from '@/utils'
- import Icon from '@/icons'
- export default {
- data () {
- var validateUrl = (rule, value, callback) => {
- if (this.dataForm.type === 1 && !/\S/.test(value)) {
- callback(new Error('菜单URL不能为空'))
- } else {
- callback()
- }
- }
- return {
- visible: false,
- dataForm: {
- id: 0,
- type: 1,
- typeList: ['目录', '菜单', '按钮'],
- name: '',
- parentId: 0,
- parentName: '',
- url: '',
- perms: '',
- orderNum: 0,
- icon: '',
- iconList: []
- },
- dataRule: {
- name: [
- { required: true, message: '菜单名称不能为空', trigger: 'blur' }
- ],
- parentName: [
- { required: true, message: '上级菜单不能为空', trigger: 'change' }
- ],
- url: [
- { validator: validateUrl, trigger: 'blur' }
- ]
- },
- menuList: [],
- menuListTreeProps: {
- label: 'name',
- children: 'children'
- }
- }
- },
- created () {
- this.iconList = Icon.getNameList()
- },
- methods: {
- init (id) {
- this.dataForm.id = id || 0
- this.$http({
- url: this.$http.adornUrl('/sys/menu/select'),
- method: 'get',
- params: this.$http.adornParams()
- }).then(({data}) => {
- this.menuList = treeDataTranslate(data.menuList, 'menuId')
- }).then(() => {
- this.visible = true
- this.$nextTick(() => {
- this.$refs['dataForm'].resetFields()
- })
- }).then(() => {
- if (!this.dataForm.id) {
- // 新增
- this.menuListTreeSetCurrentNode()
- } else {
- // 修改
- this.$http({
- url: this.$http.adornUrl(`/sys/menu/info/${this.dataForm.id}`),
- method: 'get',
- params: this.$http.adornParams()
- }).then(({data}) => {
- this.dataForm.id = data.menu.menuId
- this.dataForm.type = data.menu.type
- this.dataForm.name = data.menu.name
- this.dataForm.parentId = data.menu.parentId
- this.dataForm.url = data.menu.url
- this.dataForm.perms = data.menu.perms
- this.dataForm.orderNum = data.menu.orderNum
- this.dataForm.icon = data.menu.icon
- this.menuListTreeSetCurrentNode()
- })
- }
- })
- },
- // 菜单树选中
- menuListTreeCurrentChangeHandle (data, node) {
- this.dataForm.parentId = data.menuId
- this.dataForm.parentName = data.name
- },
- // 菜单树设置当前选中节点
- menuListTreeSetCurrentNode () {
- this.$refs.menuListTree.setCurrentKey(this.dataForm.parentId)
- this.dataForm.parentName = (this.$refs.menuListTree.getCurrentNode() || {})['name']
- },
- // 图标选中
- iconActiveHandle (iconName) {
- this.dataForm.icon = iconName
- },
- // 表单提交
- dataFormSubmit () {
- this.$refs['dataForm'].validate((valid) => {
- if (valid) {
- this.$http({
- url: this.$http.adornUrl(`/sys/menu/${!this.dataForm.id ? 'save' : 'update'}`),
- method: 'post',
- data: this.$http.adornData({
- 'menuId': this.dataForm.id || undefined,
- 'type': this.dataForm.type,
- 'name': this.dataForm.name,
- 'parentId': this.dataForm.parentId,
- 'url': this.dataForm.url,
- 'perms': this.dataForm.perms,
- 'orderNum': this.dataForm.orderNum,
- 'icon': this.dataForm.icon
- })
- }).then(({data}) => {
- if (data && data.code === 0) {
- this.visible = false
- this.$emit('refreshDataList')
- this.$message({
- message: '操作成功',
- type: 'success',
- duration: 1500,
- // onClose: () => {
- // this.visible = false
- // this.$emit('refreshDataList')
- // }
- })
- } else {
- this.$message.error(data.msg)
- }
- })
- }
- })
- }
- }
- }
- </script>
- <style lang="scss">
- .mod-menu {
- .menu-list__input,
- .icon-list__input {
- > .el-input__inner {
- cursor: pointer;
- }
- }
- &__icon-popover {
- width: 458px;
- overflow: hidden;
- }
- &__icon-inner {
- width: 478px;
- max-height: 258px;
- overflow-x: hidden;
- overflow-y: auto;
- }
- &__icon-list {
- width: 458px;
- padding: 0;
- margin: -8px 0 0 -8px;
- > .el-button {
- padding: 8px;
- margin: 8px 0 0 8px;
- > span {
- display: inline-block;
- vertical-align: middle;
- width: 18px;
- height: 18px;
- font-size: 18px;
- }
- }
- }
- .icon-list__tips {
- font-size: 18px;
- text-align: center;
- color: #e6a23c;
- cursor: pointer;
- }
- }
- </style>
|