You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
214 lines
6.6 KiB
214 lines
6.6 KiB
6 years ago
|
<template>
|
||
|
<el-dialog :visible.sync="visible"
|
||
|
:title="!dataForm.id ? $t('add') : $t('update')"
|
||
|
:close-on-click-modal="false"
|
||
|
:close-on-press-escape="false">
|
||
|
<el-form :model="dataForm"
|
||
|
:rules="dataRule"
|
||
|
ref="dataForm"
|
||
|
@keyup.enter.native="dataFormSubmitHandle()"
|
||
|
label-width="120px">
|
||
|
<el-form-item prop="name"
|
||
|
:label="$t('role.name')">
|
||
|
<el-input v-model="dataForm.name"
|
||
|
:placeholder="$t('role.name')"></el-input>
|
||
|
</el-form-item>
|
||
|
<el-form-item label="角色类型">
|
||
|
<el-select v-model="dataForm.typeKey"
|
||
|
placeholder="角色类型">
|
||
|
<el-option v-for="item in roleTypeList"
|
||
|
:key="item.dictValue"
|
||
|
:label="item.dictName"
|
||
|
:value="item.dictValue">
|
||
|
</el-option>
|
||
|
</el-select>
|
||
|
</el-form-item>
|
||
|
<el-form-item prop="remark"
|
||
|
:label="$t('role.remark')">
|
||
|
<el-input v-model="dataForm.remark"
|
||
|
:placeholder="$t('role.remark')"></el-input>
|
||
|
</el-form-item>
|
||
|
<el-row>
|
||
|
<el-col :span="10">
|
||
|
<el-form-item size="mini"
|
||
|
:label="$t('role.menuList')">
|
||
|
<el-tree :data="menuList"
|
||
|
:props="{ label: 'name', children: 'children' }"
|
||
|
node-key="id"
|
||
|
ref="menuListTree"
|
||
|
accordion
|
||
|
show-checkbox>
|
||
|
</el-tree>
|
||
|
</el-form-item>
|
||
|
</el-col>
|
||
|
<el-col :span="12">
|
||
|
<el-form-item size="mini"
|
||
|
:label="$t('role.deptList')">
|
||
|
<el-tree :data="deptList"
|
||
|
:props="{ label: 'name', children: 'children' }"
|
||
|
node-key="id"
|
||
|
ref="deptListTree"
|
||
|
accordion
|
||
|
show-checkbox>
|
||
|
</el-tree>
|
||
|
</el-form-item>
|
||
|
</el-col>
|
||
|
<el-col :span="10">
|
||
|
<el-form-item size="mini"
|
||
|
:label="$t('role.appMenuList')">
|
||
|
<el-tree :data="appMenuList"
|
||
|
:props="{ label: 'name', children: 'children' }"
|
||
|
node-key="id"
|
||
|
ref="appMenuListTree"
|
||
|
accordion
|
||
|
show-checkbox>
|
||
|
</el-tree>
|
||
|
</el-form-item>
|
||
|
</el-col>
|
||
|
</el-row>
|
||
|
</el-form>
|
||
|
<template slot="footer">
|
||
|
<el-button @click="visible = false">{{ $t('cancel') }}</el-button>
|
||
|
<el-button type="primary"
|
||
|
@click="dataFormSubmitHandle()">{{ $t('confirm') }}</el-button>
|
||
|
</template>
|
||
|
</el-dialog>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import debounce from 'lodash/debounce'
|
||
|
export default {
|
||
|
data () {
|
||
|
return {
|
||
|
visible: false,
|
||
|
menuList: [],
|
||
|
deptList: [],
|
||
|
appMenuList: [],
|
||
|
roleTypeList: [],
|
||
|
dataForm: {
|
||
|
id: '',
|
||
|
name: '',
|
||
|
menuIdList: [],
|
||
|
deptIdList: [],
|
||
|
appMenuIdList: [],
|
||
|
remark: '',
|
||
|
typeKey: ''
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
computed: {
|
||
|
dataRule () {
|
||
|
return {
|
||
|
name: [
|
||
|
{ required: true, message: this.$t('validate.required'), trigger: 'blur' }
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
created () {
|
||
|
this.getRoleTypeList()
|
||
|
},
|
||
|
methods: {
|
||
|
init () {
|
||
|
this.visible = true
|
||
|
this.$nextTick(() => {
|
||
|
this.$refs['dataForm'].resetFields()
|
||
|
this.$refs.menuListTree.setCheckedKeys([])
|
||
|
this.$refs.deptListTree.setCheckedKeys([])
|
||
|
this.$refs.appMenuListTree.setCheckedKeys([])
|
||
|
Promise.all([
|
||
|
this.getMenuList(),
|
||
|
this.getDeptList(),
|
||
|
this.getAppMenuList()
|
||
|
]).then(() => {
|
||
|
if (this.dataForm.id) {
|
||
|
this.getInfo()
|
||
|
}
|
||
|
})
|
||
|
})
|
||
|
},
|
||
|
// 获取菜单列表
|
||
|
getMenuList () {
|
||
|
return this.$http.get('/sys/menu/select').then(({ data: res }) => {
|
||
|
if (res.code !== 0) {
|
||
|
return this.$message.error(res.msg)
|
||
|
}
|
||
|
this.menuList = res.data
|
||
|
}).catch(() => { })
|
||
|
},
|
||
|
// 获取部门列表
|
||
|
getDeptList () {
|
||
|
return this.$http.get('/sys/dept/list').then(({ data: res }) => {
|
||
|
if (res.code !== 0) {
|
||
|
return this.$message.error(res.msg)
|
||
|
}
|
||
|
this.deptList = res.data
|
||
|
}).catch(() => { })
|
||
|
},
|
||
|
// 获取App菜单列表
|
||
|
getAppMenuList () {
|
||
|
return this.$http.get('/sys/appmenu/select').then(({ data: res }) => {
|
||
|
if (res.code !== 0) {
|
||
|
return this.$message.error(res.msg)
|
||
|
}
|
||
|
this.appMenuList = res.data
|
||
|
}).catch(() => { })
|
||
|
},
|
||
|
// 获取信息
|
||
|
getInfo () {
|
||
|
this.$http.get(`/sys/role/${this.dataForm.id}`).then(({ data: res }) => {
|
||
|
if (res.code !== 0) {
|
||
|
return this.$message.error(res.msg)
|
||
|
}
|
||
|
this.dataForm = {
|
||
|
...this.dataForm,
|
||
|
...res.data
|
||
|
}
|
||
|
this.dataForm.menuIdList.forEach(item => this.$refs.menuListTree.setChecked(item, true))
|
||
|
this.$refs.deptListTree.setCheckedKeys(this.dataForm.deptIdList)
|
||
|
this.dataForm.appMenuIdList.forEach(item => this.$refs.appMenuListTree.setChecked(item, true))
|
||
|
}).catch(() => { })
|
||
|
},
|
||
|
// 表单提交
|
||
|
dataFormSubmitHandle: debounce(function () {
|
||
|
this.$refs['dataForm'].validate((valid) => {
|
||
|
if (!valid) {
|
||
|
return false
|
||
|
}
|
||
|
this.dataForm.menuIdList = [
|
||
|
...this.$refs.menuListTree.getCheckedKeys(),
|
||
|
...this.$refs.menuListTree.getHalfCheckedKeys()
|
||
|
]
|
||
|
this.dataForm.deptIdList = this.$refs.deptListTree.getCheckedKeys()
|
||
|
this.dataForm.appMenuIdList = [
|
||
|
...this.$refs.appMenuListTree.getCheckedKeys(),
|
||
|
...this.$refs.appMenuListTree.getHalfCheckedKeys()
|
||
|
]
|
||
|
this.$http[!this.dataForm.id ? 'post' : 'put']('/sys/role', this.dataForm).then(({ data: res }) => {
|
||
|
if (res.code !== 0) {
|
||
|
return this.$message.error(res.msg)
|
||
|
}
|
||
|
this.$message({
|
||
|
message: this.$t('prompt.success'),
|
||
|
type: 'success',
|
||
|
duration: 500,
|
||
|
onClose: () => {
|
||
|
this.visible = false
|
||
|
this.$emit('refreshDataList')
|
||
|
}
|
||
|
})
|
||
|
}).catch(() => { })
|
||
|
})
|
||
|
}, 1000, { 'leading': true, 'trailing': false }),
|
||
|
getRoleTypeList () {
|
||
|
this.$http.get(`/sys/dict/listSimple/sysRoleType`).then(({ data: res }) => {
|
||
|
if (res.code !== 0) {
|
||
|
return this.$message.error(res.msg)
|
||
|
}
|
||
|
this.roleTypeList = res.data
|
||
|
}).catch(() => { })
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|