<template>
|
<div class="dept">
|
<el-row :gutter="10">
|
<el-col :xs="24" :sm="12">
|
<div class="app-container">
|
<div class="filter-container">
|
<el-input v-model="deptName" :placeholder="$t('table.dept.deptName')" class="filter-item search-item" />
|
<el-button class="hr-but-all" type="primary" @click="search">
|
{{ $t('table.search') }}
|
</el-button>
|
<el-button class="hr-but-all" type="success" @click="reset">
|
{{ $t('table.reset') }}
|
</el-button>
|
|
<el-button v-has-permission="['dept:add']" class="hr-but-all" type="success" @click.native="add">
|
{{ $t('table.add') }}
|
</el-button>
|
<el-button v-has-permission="['dept:delete']" type="primary" @click.native="deleteDept">
|
{{ $t('table.delete') }}
|
</el-button>
|
<el-button v-has-permission="['dept:export']" class="hr-but-all" type="success" @click.native="exportExcel">
|
{{ $t('table.export') }}
|
</el-button>
|
</div>
|
<el-tree
|
ref="deptTree"
|
:data="deptTree"
|
:check-strictly="false"
|
show-checkbox
|
accordion
|
node-key="id"
|
default-expand-all
|
:expand-on-click-node="false"
|
highlight-current
|
:filter-node-method="filterNode"
|
@node-click="nodeClick"
|
/>
|
</div>
|
</el-col>
|
<el-col :xs="24" :sm="12">
|
<el-card class="box-card">
|
<div slot="header" class="clearfix">
|
<span>{{ dept.deptId === '' ? this.$t('common.add') : this.$t('common.edit') }}</span>
|
</div>
|
<div>
|
<el-form ref="form" :model="dept" :rules="rules" label-position="right" label-width="100px">
|
<el-form-item :label="$t('table.dept.parentId')" prop="parentId">
|
<treeselect
|
v-model="dept.parentId"
|
:multiple="false"
|
|
:options="deptTree"
|
:clear-value-text="$t('common.clear')"
|
placeholder=" "
|
style="width:100%"
|
/>
|
</el-form-item>
|
<el-form-item :label="$t('table.dept.deptName')" prop="deptName">
|
<el-input v-model="dept.deptName" />
|
</el-form-item>
|
<el-form-item :label="$t('table.dept.orderNum')" prop="orderNum">
|
<el-input-number v-model="dept.orderNum" :min="0" :max="100" @change="handleNumChange" />
|
</el-form-item>
|
<el-form-item label="部门性质" prop="deptType">
|
<el-select v-model="dept.deptType" placeholder="请选择">
|
<el-option label="集团" value="01" />
|
<el-option label="公司" value="02" />
|
<el-option label="分(子)公司、办事处" value="03" />
|
<el-option label="部门" value="04" />
|
<el-option label="子部门" value="05" />
|
<el-option label="护卫点" value="06" />
|
</el-select>
|
</el-form-item>
|
</el-form>
|
</div>
|
</el-card>
|
<el-card class="box-card" style="margin-top: -2rem;">
|
<el-row>
|
<el-col :span="24" style="text-align: right">
|
<el-button type="primary" plain :loading="buttonLoading" @click="submit">
|
{{ dept.deptId === '' ? this.$t('common.add') : this.$t('common.edit') }}
|
</el-button>
|
</el-col>
|
</el-row>
|
</el-card>
|
|
</el-col>
|
</el-row>
|
</div>
|
</template>
|
<script>
|
import Treeselect from '@riophae/vue-treeselect'
|
import '@riophae/vue-treeselect/dist/vue-treeselect.css'
|
|
export default {
|
name: 'DeptManager',
|
components: {
|
Treeselect
|
},
|
data() {
|
return {
|
dialogShowXzgw: false,
|
activeName: 'first',
|
deptName: '',
|
buttonLoading: false,
|
deptTree: [],
|
dept: this.initDept(),
|
rules: {
|
deptName: [{
|
required: true,
|
message: this.$t('rules.require'),
|
trigger: 'blur'
|
},
|
{
|
min: 1,
|
max: 10,
|
message: this.$t('rules.range3to10'),
|
trigger: 'blur'
|
}
|
]
|
}
|
}
|
},
|
mounted() {
|
this.initDeptTree()
|
},
|
methods: {
|
initDept() {
|
return {
|
deptId: '',
|
deptName: '',
|
parentId: null,
|
deptType: '',
|
deptFunction: '',
|
orderNum: 0,
|
allDeptName: ''
|
}
|
},
|
initDeptTree() {
|
this.$get('system/dept').then((r) => {
|
this.deptTree = r.data.data.rows
|
})
|
},
|
exportExcel() {
|
this.$download('system/dept/excel', {
|
deptName: this.deptName
|
}, `dept_${new Date().getTime()}.xlsx`)
|
},
|
handleNumChange(val) {
|
this.dept.orderNum = val
|
},
|
filterNode(value, data) {
|
if (!value) return true
|
return data.label.indexOf(value) !== -1
|
},
|
nodeClick(data) {
|
this.dept.parentId = data.parentId
|
if (this.dept.parentId === '0') {
|
this.dept.parentId = null
|
}
|
this.dept.orderNum = data.orderNum
|
this.dept.deptName = data.label
|
this.dept.deptId = data.id
|
this.dept.deptType = data.deptType
|
this.dept.deptFunction = data.deptFunction
|
this.dept.allDeptName = data.allDeptName
|
this.$refs.form.clearValidate()
|
},
|
add() {
|
this.resetForm()
|
this.$message({
|
message: this.$t('tips.createTips'),
|
type: 'info'
|
})
|
},
|
deleteDept() {
|
const checked = this.$refs.deptTree.getCheckedKeys()
|
if (checked.length === 0) {
|
this.$message({
|
message: this.$t('tips.noNodeSelected'),
|
type: 'warning'
|
})
|
} else {
|
this.$confirm(this.$t('tips.confirmDeleteNode'), this.$t('common.tips'), {
|
confirmButtonText: this.$t('common.confirm'),
|
cancelButtonText: this.$t('common.cancel'),
|
type: 'warning'
|
}).then(() => {
|
this.dept.deptIds = checked.join(',')
|
this.$delete(`system/dept/${this.dept.deptIds}`).then(() => {
|
this.$message({
|
message: this.$t('tips.deleteSuccess'),
|
type: 'success'
|
})
|
this.reset()
|
})
|
}).catch(() => {
|
this.$refs.deptTree.setCheckedKeys([])
|
})
|
}
|
},
|
search() {
|
this.$refs.deptTree.filter(this.deptName)
|
},
|
reset() {
|
this.initDeptTree()
|
this.deptName = ''
|
this.resetForm()
|
},
|
submit() {
|
this.$refs.form.validate((valid) => {
|
if (valid) {
|
this.buttonLoading = true
|
this.dept.createTime = this.dept.modifyTime = null
|
if (this.dept.deptId) {
|
this.$put('system/dept', {
|
...this.dept
|
}).then(() => {
|
this.buttonLoading = false
|
this.$message({
|
message: this.$t('tips.updateSuccess'),
|
type: 'success'
|
})
|
this.reset()
|
})
|
} else {
|
this.$post('system/dept', {
|
...this.dept
|
}).then(() => {
|
this.buttonLoading = false
|
this.$message({
|
message: this.$t('tips.createSuccess'),
|
type: 'success'
|
})
|
this.reset()
|
})
|
}
|
} else {
|
return false
|
}
|
})
|
},
|
resetForm() {
|
this.$refs.form.clearValidate()
|
this.$refs.form.resetFields()
|
this.dept = this.initDept()
|
}
|
}
|
}
|
</script>
|
<style lang="scss" scoped>
|
.dept {
|
margin: 10px;
|
|
.app-container {
|
margin: 0 0 10px 0 !important;
|
}
|
}
|
|
.el-card.is-always-shadow {
|
box-shadow: none;
|
}
|
|
.el-card {
|
border-radius: 0;
|
border: none;
|
|
.el-card__header {
|
padding: 10px 20px !important;
|
border-bottom: 1px solid #f1f1f1 !important;
|
}
|
}
|
</style>
|
<style lang="scss">
|
.vue-treeselect__menu {
|
max-height: 165px !important;
|
}
|
</style>
|