416 lines
16 KiB
Vue
416 lines
16 KiB
Vue
<template>
|
||
<div class="app-container">
|
||
<!--工具栏-->
|
||
<div class="head-container">
|
||
<div v-if="crud.props.searchToggle">
|
||
<!-- 搜索 -->
|
||
<el-form
|
||
:inline="true"
|
||
class="demo-form-inline"
|
||
label-position="right"
|
||
label-suffix=":"
|
||
>
|
||
<el-form-item :label="$t('menu.placeholder.fuzzy_search')">
|
||
<el-input
|
||
v-model="query.blurry"
|
||
clearable
|
||
size="mini"
|
||
:placeholder="$t('menu.placeholder.fuzzy_search')"
|
||
style="width: 200px;margin-bottom: 10px"
|
||
class="filter-item"
|
||
@keyup.enter.native="queryBlurry"
|
||
/>
|
||
</el-form-item>
|
||
<el-form-item :label="$t('menu.placeholder.owning_system')">
|
||
<el-select
|
||
v-model="query.system_type"
|
||
style="width: 200px; margin-bottom: 10px"
|
||
:placeholder="$t('menu.placeholder.owning_system')"
|
||
@change="changetype"
|
||
>
|
||
<el-option v-for="item in dict.system_type" :label="item.label" :value="item.value"/>
|
||
</el-select>
|
||
</el-form-item>
|
||
<rrOperation />
|
||
</el-form>
|
||
</div>
|
||
<crudOperation :permission="permission" />
|
||
</div>
|
||
<!--表单渲染-->
|
||
<el-dialog
|
||
append-to-body
|
||
:close-on-click-modal="false"
|
||
:before-close="crud.cancelCU"
|
||
:visible.sync="crud.status.cu > 0"
|
||
:title="crud.status.title"
|
||
width="650px"
|
||
>
|
||
<el-form ref="form" :inline="true" :model="form" :rules="rules" size="mini" label-width="150px">
|
||
<el-form-item :label="$t('menu.dialog.menu_type')" prop="type">
|
||
<el-radio-group v-model="form.type" size="mini">
|
||
<el-radio-button label="1">{{ $t('menu.dialog.system') }}</el-radio-button>
|
||
<el-radio-button label="2">{{ $t('menu.dialog.catalogue') }}</el-radio-button>
|
||
<el-radio-button label="3">{{ $t('menu.dialog.menu') }}</el-radio-button>
|
||
<el-radio-button label="4">{{ $t('menu.dialog.button') }}</el-radio-button>
|
||
</el-radio-group>
|
||
</el-form-item>
|
||
<el-form-item v-show="form.type.toString() !== '1' && form.type.toString() !== '4' " :label="$t('menu.dialog.menu_icon')" prop="icon">
|
||
<el-popover
|
||
placement="bottom-start"
|
||
width="450"
|
||
trigger="click"
|
||
@show="$refs['iconSelect'].reset()"
|
||
>
|
||
<IconSelect ref="iconSelect" @selected="selected" />
|
||
<el-input slot="reference" v-model="form.icon" style="width: 450px;" :placeholder="$t('menu.placeholder.choose_icon')" readonly>
|
||
<svg-icon
|
||
v-if="form.icon"
|
||
slot="prefix"
|
||
:icon-class="form.icon"
|
||
class="el-input__icon"
|
||
style="height: 32px;width: 16px;"
|
||
/>
|
||
<i v-else slot="prefix" class="el-icon-search el-input__icon" />
|
||
</el-input>
|
||
</el-popover>
|
||
</el-form-item>
|
||
<el-form-item v-show="form.type.toString() !== '2' && form.type.toString() !== '1'" :label="$t('menu.dialog.menu_chain')" prop="iframe">
|
||
<el-radio-group v-model="form.iframe" size="mini">
|
||
<el-radio-button label="true">{{ $t('common.true') }}</el-radio-button>
|
||
<el-radio-button label="false">{{ $t('common.false') }}</el-radio-button>
|
||
</el-radio-group>
|
||
</el-form-item>
|
||
<el-form-item v-show="form.type.toString() === '2'" :label="$t('menu.dialog.menu_cache')" prop="cache">
|
||
<el-radio-group v-model="form.cache" size="mini">
|
||
<el-radio-button label="true">{{ $t('common.true') }}</el-radio-button>
|
||
<el-radio-button label="false">{{ $t('common.false') }}</el-radio-button>
|
||
</el-radio-group>
|
||
</el-form-item>
|
||
<el-form-item v-show="form.type.toString() !== '2' && form.type.toString() !== '1' " :label="$t('menu.dialog.menu_visible')" prop="hidden">
|
||
<el-radio-group v-model="form.hidden" size="mini">
|
||
<el-radio-button label="false">{{ $t('common.true') }}</el-radio-button>
|
||
<el-radio-button label="true">{{ $t('common.false') }}</el-radio-button>
|
||
</el-radio-group>
|
||
</el-form-item>
|
||
<el-form-item v-if="form.type.toString() !== '2'" :label="$t('menu.dialog.default_title')" prop="title">
|
||
<el-input
|
||
v-model="form.title"
|
||
:style=" form.type.toString() === '0' ? 'width: 450px' : 'width: 190px'"
|
||
:placeholder="$t('menu.dialog.default_title')"
|
||
/>
|
||
</el-form-item>
|
||
<el-form-item v-if="form.type.toString() !== '2'" :label="$t('menu.dialog.zh_title')" prop="zh_title">
|
||
<el-input
|
||
v-model="form.zh_title"
|
||
:style=" form.type.toString() === '0' ? 'width: 450px' : 'width: 190px'"
|
||
:placeholder="$t('menu.dialog.zh_title')"
|
||
/>
|
||
</el-form-item>
|
||
<el-form-item v-if="form.type.toString() !== '2'" :label="$t('menu.dialog.en_title')" prop="en_title">
|
||
<el-input
|
||
v-model="form.en_title"
|
||
:style=" form.type.toString() === '0' ? 'width: 450px' : 'width: 190px'"
|
||
:placeholder="$t('menu.dialog.en_title')"
|
||
/>
|
||
</el-form-item>
|
||
<el-form-item v-if="form.type.toString() !== '2'" :label="$t('menu.dialog.id_title')" prop="in_title">
|
||
<el-input
|
||
v-model="form.in_title"
|
||
:style=" form.type.toString() === '0' ? 'width: 450px' : 'width: 190px'"
|
||
:placeholder="$t('menu.dialog.id_title')"
|
||
/>
|
||
</el-form-item>
|
||
<el-form-item v-if="form.type.toString() === '2'" :label="$t('menu.dialog.button_name')" prop="title">
|
||
<el-input v-model="form.title" :placeholder="$t('menu.dialog.button_name')" style="width: 190px;" />
|
||
</el-form-item>
|
||
<el-form-item v-show="form.type.toString() !== '1' " :label="$t('menu.table_title.permission_ident')" prop="permission">
|
||
<el-input v-model="form.permission" :disabled="form.iframe" :placeholder="$t('menu.table_title.permission_ident')" style="width: 190px;" />
|
||
</el-form-item>
|
||
<el-form-item v-if="form.type.toString() !== '1' && form.type.toString() !== '2'" :label="$t('menu.dialog.router_path')" prop="path">
|
||
<el-input v-model="form.path" :placeholder="$t('menu.dialog.router_path')" style="width: 190px;" />
|
||
</el-form-item>
|
||
<el-form-item :label="$t('menu.dialog.menu_sort')" prop="menu_sort">
|
||
<el-input-number
|
||
v-model.number="form.menu_sort"
|
||
:min="0"
|
||
:max="999"
|
||
controls-position="right"
|
||
style="width: 190px;"
|
||
/>
|
||
</el-form-item>
|
||
<el-form-item v-show="!form.iframe && form.type.toString() === '3' " :label="$t('menu.dialog.component_name')" prop="component_name">
|
||
<el-input v-model="form.component_name" style="width: 190px;" :placeholder="$t('menu.placeholder.component_tip')" />
|
||
</el-form-item>
|
||
<el-form-item v-show="!form.iframe && (form.type.toString() === '2' ||form.type.toString() === '3' ) " :label="$t('menu.dialog.component_path')" prop="component">
|
||
<el-input v-model="form.component" style="width: 190px;" :placeholder="$t('menu.dialog.component_path')" />
|
||
</el-form-item>
|
||
<el-form-item :label="$t('menu.dialog.superior_class')" prop="pid">
|
||
<!-- normalizer转换- loadMenus 点击扩展的时候会调用该方法-->
|
||
<treeselect
|
||
v-model="form.pid"
|
||
:options="menus"
|
||
:load-options="loadMenus"
|
||
:normalizer="normalizer"
|
||
style="width: 450px;"
|
||
:placeholder="$t('menu.placeholder.choose_superior_category')"
|
||
/>
|
||
</el-form-item>
|
||
</el-form>
|
||
<div slot="footer" class="dialog-footer">
|
||
<el-button type="text" @click="crud.cancelCU">{{ $t('common.Cancel') }}</el-button>
|
||
<el-button :loading="crud.status.cu === 2" type="primary" @click="crud.submitCU">{{ $t('common.Confirm') }}</el-button>
|
||
</div>
|
||
</el-dialog>
|
||
<!--表格渲染-->
|
||
<el-table
|
||
ref="table"
|
||
v-loading="crud.loading"
|
||
lazy
|
||
:load="getMenus"
|
||
:auto-load-root-options="false"
|
||
:data="crud.data"
|
||
:tree-props="{children: 'children', hasChildren: 'has_children'}"
|
||
row-key="menu_id"
|
||
|
||
@select="crud.selectChange"
|
||
@select-all="crud.selectAllChange"
|
||
@selection-change="crud.selectionChangeHandler"
|
||
>
|
||
<el-table-column type="selection" width="55" />
|
||
<el-table-column :label="$t('menu.table_title.menu_title')" :prop="$langPre.computedProp('title')" :min-width="flexWidth($langPre.computedProp('title'),crud.data,$t('menu.table_title.menu_title'))" />
|
||
<el-table-column :label="$t('menu.table_title.system')" prop="system_type" :min-width="flexWidth('system_type',crud.data,$t('menu.table_title.system'))">
|
||
<template slot-scope="scope">
|
||
{{ dict.label.system_type[scope.row.system_type] }} : {{scope.row.system_type}}
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column prop="icon" :label="$t('menu.table_title.icon')" align="center" :min-width="flexWidth('icon',crud.data, $t('menu.table_title.system'))">
|
||
<template slot-scope="scope">
|
||
<svg-icon :icon-class="scope.row.icon ? scope.row.icon : ''" />
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column prop="menu_sort" align="center" :label="$t('menu.table_title.sort')" :min-width="flexWidth('menu_sort',crud.data,$t('menu.table_title.sort'))">
|
||
<template slot-scope="scope">
|
||
{{ scope.row.menu_sort }}
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column prop="permission" :label="$t('menu.table_title.permission_ident')" :min-width="flexWidth('permission',crud.data,$t('menu.table_title.permission_ident'))" />
|
||
<el-table-column prop="component" :label="$t('menu.table_title.path')" min-width="120" />
|
||
<el-table-column prop="iframe" :label="$t('menu.table_title.outside_chain')" :formatter="crud.formatIsOrNot" :min-width="flexWidth('iframe',crud.data,$t('menu.table_title.outside_chain'))">
|
||
<template slot-scope="scope">
|
||
<span v-if="scope.row.iframe">YES</span>
|
||
<span v-else>NO</span>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column prop="cache" :label="$t('menu.table_title.cache')" :formatter="crud.formatIsOrNot" :min-width="flexWidth('cache',crud.data,$t('menu.table_title.cache'))">
|
||
<template slot-scope="scope">
|
||
<span v-if="scope.row.cache">YES</span>
|
||
<span v-else>NO</span>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column prop="hidden" :label="$t('menu.table_title.visible')" :formatter="crud.formatIsOrNot" :min-width="flexWidth('hidden',crud.data,$t('menu.table_title.visible'))">
|
||
<template slot-scope="scope">
|
||
<span v-if="scope.row.hidden">NO</span>
|
||
<span v-else>YES</span>
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column prop="create_time" :label="$t('menu.table_title.create_time')" :min-width="flexWidth('create_time',crud.data,$t('menu.table_title.create_time'))" />
|
||
<el-table-column
|
||
v-permission="['admin','menu:edit','menu:del']"
|
||
:label="$t('common.Operate')"
|
||
width="130px"
|
||
align="center"
|
||
fixed="right"
|
||
>
|
||
<template slot-scope="scope">
|
||
<udOperation
|
||
:data="scope.row"
|
||
:permission="permission"
|
||
:msg="$t('menu.msg.delete_msg')"
|
||
/>
|
||
</template>
|
||
</el-table-column>
|
||
</el-table>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import crudMenu from '@/views/system/menu/menu'
|
||
import IconSelect from '@/components/IconSelect'
|
||
import Treeselect from '@riophae/vue-treeselect'
|
||
import '@riophae/vue-treeselect/dist/vue-treeselect.css'
|
||
import { LOAD_CHILDREN_OPTIONS } from '@riophae/vue-treeselect'
|
||
import CRUD, { presenter, header, form, crud } from '@crud/crud'
|
||
import rrOperation from '@crud/RR.operation'
|
||
import crudOperation from '@crud/CRUD.operation'
|
||
import udOperation from '@crud/UD.operation'
|
||
import DateRangePicker from '@/components/DateRangePicker'
|
||
import Dict from '../../../components/Dict/Dict'
|
||
import i18n from '@/i18n'
|
||
|
||
// crud交由presenter持有
|
||
const defaultForm = {
|
||
menu_id: null,
|
||
title: null,
|
||
en_title: null,
|
||
in_title: null,
|
||
zh_title: null,
|
||
menu_sort: 999,
|
||
path: null,
|
||
system_type: null,
|
||
category: null,
|
||
component: null,
|
||
component_name: null,
|
||
iframe: false,
|
||
roles: [],
|
||
pid: 0,
|
||
icon: null,
|
||
cache: false,
|
||
hidden: false,
|
||
type: 2,
|
||
permission: null
|
||
}
|
||
export default {
|
||
name: 'Menu',
|
||
components: { Treeselect, IconSelect, crudOperation, rrOperation, udOperation, DateRangePicker },
|
||
cruds() {
|
||
return CRUD({ title: i18n.t('menu.title'), idField: 'menu_id', url: 'api/sysMenu', crudMethod: { ...crudMenu }})
|
||
},
|
||
mixins: [presenter(), header(), form(defaultForm), crud()],
|
||
dicts: ['system_type'],
|
||
data() {
|
||
return {
|
||
typeList: [],
|
||
defaultType: '',
|
||
menus: [],
|
||
permission: {
|
||
add: ['admin', 'menu:add'],
|
||
edit: ['admin', 'menu:edit'],
|
||
del: ['admin', 'menu:del']
|
||
},
|
||
rules: {
|
||
title: [
|
||
{ required: true, message: '请输入标题', trigger: 'blur' }
|
||
],
|
||
zh_title: [
|
||
{ required: true, message: '请输入标题', trigger: 'blur' }
|
||
],
|
||
en_title: [
|
||
{ required: true, message: '请输入标题', trigger: 'blur' }
|
||
],
|
||
in_title: [
|
||
{ required: true, message: '请输入标题', trigger: 'blur' }
|
||
],
|
||
path: [
|
||
{ required: true, message: '请输入地址', trigger: 'blur' }
|
||
]
|
||
}
|
||
}
|
||
},
|
||
methods: {
|
||
normalizer(node) {
|
||
return {
|
||
id: node.menu_id,
|
||
label: node.title,
|
||
children: node.children
|
||
}
|
||
},
|
||
queryBlurry() {
|
||
if (this.query.blurry) {
|
||
this.query.pid = null
|
||
}
|
||
this.crud.toQuery()
|
||
},
|
||
changetype() {
|
||
const sysType = this.dict.dict.system_type[this.query.system_type]
|
||
this.query.pid = sysType.para1
|
||
this.crud.toQuery()
|
||
},
|
||
[CRUD.HOOK.beforeRefresh]() {
|
||
// if (this.crud.query.system_type == null) {
|
||
// this.crud.query.system_type = '1'
|
||
// }
|
||
return true
|
||
},
|
||
// 新增与编辑前做的操作
|
||
[CRUD.HOOK.afterToCU](crud, form) {
|
||
this.menus = []
|
||
if (form.menu_id) { // 修改
|
||
if (!form.pid) { // 一级菜单,一级的父级菜单的pid为0.
|
||
form.pid = 0
|
||
}
|
||
this.getSupMenus(form.menu_id)
|
||
} else { // 新增
|
||
this.menus.push({ menu_id: 0, title: '顶级类目', children: null })
|
||
}
|
||
},
|
||
[CRUD.HOOK.afterSubmit](crud, form) {
|
||
if (this.$options.dicts instanceof Array) {
|
||
new Dict(this.dict).init(this.$options.dicts, () => {
|
||
this.$nextTick(() => {
|
||
this.$emit('dictReady')
|
||
})
|
||
})
|
||
}
|
||
},
|
||
[CRUD.HOOK.afterDelete](crud, form) {
|
||
if (this.$options.dicts instanceof Array) {
|
||
new Dict(this.dict).init(this.$options.dicts, () => {
|
||
this.$nextTick(() => {
|
||
this.$emit('dictReady')
|
||
})
|
||
})
|
||
}
|
||
},
|
||
getMenus(tree, treeNode, resolve) {
|
||
const params = { pid: tree.menu_id, system_type: tree.system_type }
|
||
setTimeout(() => {
|
||
crudMenu.getMenus(params).then(res => {
|
||
resolve(res.content)
|
||
})
|
||
}, 100)
|
||
},
|
||
getSupMenus(menu_id) {
|
||
crudMenu.getMenuSuperior(menu_id).then(res => {
|
||
const children = res.map(function(obj) {
|
||
if (!obj.leaf && !obj.children) {
|
||
obj.children = null
|
||
}
|
||
return obj
|
||
})
|
||
this.menus = [{ menu_id: 0, title: '顶级类目', children: children }]
|
||
})
|
||
},
|
||
loadMenus({ action, parentNode, callback }) {
|
||
if (action === LOAD_CHILDREN_OPTIONS) {
|
||
crudMenu.getMenusTree(parentNode.menu_id).then(res => {
|
||
parentNode.children = res.map(function(obj) {
|
||
if (!obj.leaf) {
|
||
obj.children = null
|
||
}
|
||
return obj
|
||
})
|
||
setTimeout(() => {
|
||
callback()
|
||
}, 100)
|
||
})
|
||
}
|
||
},
|
||
// 选中图标
|
||
selected(name) {
|
||
this.form.icon = name
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style rel="stylesheet/scss" lang="scss" scoped>
|
||
::v-deep .el-input-number .el-input__inner {
|
||
text-align: left;
|
||
}
|
||
|
||
::v-deep .vue-treeselect__control, ::v-deep .vue-treeselect__placeholder, ::v-deep .vue-treeselect__single-value {
|
||
height: 30px;
|
||
line-height: 30px;
|
||
}
|
||
</style>
|