You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
245 lines
7.1 KiB
Vue
245 lines
7.1 KiB
Vue
<template>
|
|
<layout-content
|
|
:header="formType == 'add' ? $t('organization.create') : $t('organization.modify')"
|
|
back-name="system-dept"
|
|
>
|
|
<el-form ref="deptForm" :model="form" :rules="rule" size="small" label-width="auto" label-position="right">
|
|
<el-form-item :label="$t('organization.name')" prop="name">
|
|
<el-input v-model="form.name" :placeholder="$t('organization.name')" />
|
|
</el-form-item>
|
|
<el-form-item :label="$t('organization.sort')" prop="deptSort">
|
|
<el-input-number v-model="form.deptSort" :min="0" :max="999" controls-position="right" :placeholder="$t('organization.sort')" />
|
|
</el-form-item>
|
|
<el-form-item :label="$t('organization.top_org')" prop="top">
|
|
<el-radio-group v-model="form.top" @change="topChange">
|
|
<el-radio-button :label="true">{{ $t('commons.yes') }}</el-radio-button>
|
|
<el-radio-button :label="false">{{ $t('commons.no') }}</el-radio-button>
|
|
</el-radio-group>
|
|
</el-form-item>
|
|
<el-form-item v-if="!form.top" :label="$t('organization.parent_org')" prop="pid">
|
|
<treeselect
|
|
v-model="form.pid"
|
|
:auto-load-root-options="false"
|
|
:options="depts"
|
|
:load-options="loadDepts"
|
|
:placeholder="$t('organization.select_parent_org')"
|
|
@select="nodeChange"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item>
|
|
<el-button type="primary" @click="save">{{ $t('commons.confirm') }}</el-button>
|
|
<el-button @click="reset">{{ $t('commons.reset') }}</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
</layout-content>
|
|
</template>
|
|
|
|
<script>
|
|
import LayoutContent from '@/components/business/LayoutContent'
|
|
import Treeselect from '@riophae/vue-treeselect'
|
|
import IconSelect from '@/components/IconSelect'
|
|
import '@riophae/vue-treeselect/dist/vue-treeselect.css'
|
|
import {
|
|
LOAD_CHILDREN_OPTIONS,
|
|
LOAD_ROOT_OPTIONS
|
|
} from '@riophae/vue-treeselect'
|
|
import {
|
|
addMenu,
|
|
editMenu,
|
|
getMenusTree,
|
|
treeByMenuId
|
|
} from '@/api/system/dept'
|
|
import { execute } from '@/api/system/dynamic'
|
|
export default {
|
|
name: 'SystemDeptForm',
|
|
components: { LayoutContent },
|
|
data() {
|
|
return {
|
|
defaultForm: { deptId: null, top: true, pid: null },
|
|
maps: new Map(),
|
|
form: {},
|
|
rule: {
|
|
name: [{ required: true, message: this.$t('organization.input_name'), trigger: 'blur' }, { min: 2, max: 25, message: this.$t('commons.input_limit', [2, 25]), trigger: 'blur' }],
|
|
description: [{ max: 50, message: this.$t('commons.input_limit', [0, 50]), trigger: 'blur' }]
|
|
},
|
|
depts: null,
|
|
|
|
formType: 'add',
|
|
pLabel: this.$t('dept.root_org')
|
|
}
|
|
},
|
|
|
|
created() {
|
|
if (this.$router.currentRoute.params && this.$router.currentRoute.params.deptId) {
|
|
var row = this.$router.currentRoute.params
|
|
this.edit(row)
|
|
} else {
|
|
this.create()
|
|
}
|
|
this.setLoyoutInfo()
|
|
},
|
|
mounted() {
|
|
this.bindKey()
|
|
},
|
|
destroyed() {
|
|
this.unBindKey()
|
|
},
|
|
methods: {
|
|
entryKey(event) {
|
|
var keyCode = event.keyCode
|
|
if (keyCode === 13) {
|
|
this.save()
|
|
}
|
|
},
|
|
bindKey() {
|
|
document.addEventListener('keypress', this.entryKey)
|
|
},
|
|
unBindKey() {
|
|
document.removeEventListener('keypress', this.entryKey)
|
|
},
|
|
executeAxios(url, type, data, callBack) {
|
|
var param = {
|
|
url: url,
|
|
type: type,
|
|
data: data,
|
|
callBack: callBack
|
|
}
|
|
execute(param)
|
|
.then(function(res) {
|
|
if (param.callBack) {
|
|
param.callBack(res)
|
|
}
|
|
})
|
|
.catch(function(e) {
|
|
if (param.error) {
|
|
param.error(e)
|
|
}
|
|
})
|
|
},
|
|
setLoyoutInfo() {
|
|
this.$emit('on-plugin-layout', {
|
|
header: this.formType === 'add' ? this.$t('organization.create') : this.$t('organization.modify'),
|
|
backName: 'system-dept'
|
|
})
|
|
},
|
|
create() {
|
|
this.formType = 'add'
|
|
this.form = Object.assign({}, this.defaultForm)
|
|
},
|
|
edit(row) {
|
|
this.formType = 'modify'
|
|
this.form = Object.assign({}, row)
|
|
this.initDeptTree()
|
|
},
|
|
initDeptTree() {
|
|
var _this = this
|
|
this.executeAxios('/plugin/dept/nodesByDeptId/' + (this.form.pid || 0), 'post', {}, function(res) {
|
|
var results = res.data.map(function(node) {
|
|
if (node.hasChildren && !node.children) {
|
|
node.children = null
|
|
}
|
|
return node
|
|
})
|
|
_this.depts = results
|
|
})
|
|
},
|
|
// 获取弹窗内部门数据
|
|
loadDepts(_ref) {
|
|
var action = _ref.action
|
|
var parentNode = _ref.parentNode
|
|
var callback = _ref.callback
|
|
|
|
if (action === 'LOAD_ROOT_OPTIONS' && !this.form.pid) {
|
|
var _self = this
|
|
this.executeAxios('/plugin/dept/nodesByDeptId/' + 0, 'post', {}, function(res) {
|
|
var results = res.data.map(function(node) {
|
|
if (node.hasChildren && !node.children) {
|
|
node.children = null
|
|
}
|
|
return node
|
|
})
|
|
_self.depts = _self.excludeSelf(results)
|
|
callback()
|
|
})
|
|
}
|
|
|
|
if (action === 'LOAD_CHILDREN_OPTIONS') {
|
|
var _self2 = this
|
|
this.executeAxios('/plugin/dept/childNodes/' + parentNode.id, 'post', {}, function(res) {
|
|
var kids = res.data.map(function(obj) {
|
|
return _self2.normalizer(obj)
|
|
})
|
|
|
|
parentNode.children = _self2.excludeSelf(kids)
|
|
callback()
|
|
})
|
|
}
|
|
},
|
|
normalizer(node) {
|
|
if (node.hasChildren) {
|
|
node.children = null
|
|
}
|
|
return {
|
|
id: node.deptId,
|
|
label: node.name,
|
|
children: node.children
|
|
}
|
|
},
|
|
topChange(value) {
|
|
if (!value) {
|
|
this.form.pid = null
|
|
this.depts = null
|
|
this.pLabel = this.$t('dept.root_org')
|
|
}
|
|
},
|
|
reset() {
|
|
if (this.formType !== 'add') {
|
|
var row = this.$router.currentRoute.params
|
|
this.edit(row)
|
|
} else {
|
|
this.$refs.deptForm.resetFields()
|
|
}
|
|
},
|
|
save() {
|
|
var _this2 = this
|
|
|
|
this.$refs.deptForm.validate(function(valid) {
|
|
if (valid) {
|
|
var url = _this2.formType === 'add' ? '/plugin/dept/create' : '/plugin/dept/update'
|
|
_this2.executeAxios(url, 'post', _this2.form, function(res) {
|
|
if (res.data && res.data === -2) {
|
|
var msg = _this2.pLabel + _this2.$t('dept.name_exist_pre') + _this2.form.name + _this2.$t('dept.name_exist_suf')
|
|
_this2.$warning(msg)
|
|
return
|
|
}
|
|
_this2.$success(_this2.$t('commons.save_success'))
|
|
_this2.backToList()
|
|
})
|
|
} else {
|
|
return false
|
|
}
|
|
})
|
|
},
|
|
backToList() {
|
|
this.$router.push({ name: 'system-dept' })
|
|
},
|
|
excludeSelf(nodes) {
|
|
var _this3 = this
|
|
|
|
if (this.formType !== 'modify') return nodes
|
|
nodes.forEach(function(node) {
|
|
return node.id === _this3.form.deptId && (node.isDisabled = true)
|
|
})
|
|
return nodes
|
|
},
|
|
nodeChange(node, instanceId) {
|
|
if (node.label) {
|
|
this.pLabel = node.label
|
|
}
|
|
// console.log(node)
|
|
console.log(instanceId)
|
|
}
|
|
}
|
|
}
|
|
</script>
|