3 changed files with 355 additions and 0 deletions
@ -0,0 +1,211 @@ |
|||
<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('dept.name')"> |
|||
<el-input v-model="dataForm.name" |
|||
:placeholder="$t('dept.name')"></el-input> |
|||
</el-form-item> |
|||
<el-form-item prop="partyCode" |
|||
:label="$t('dept.partyCode')"> |
|||
<el-input v-model="dataForm.partyCode" |
|||
:placeholder="$t('dept.partyCode')" :disabled="true"></el-input> |
|||
</el-form-item> |
|||
<el-form-item prop="parentName" |
|||
:label="$t('dept.parentName')" |
|||
class="dept-list"> |
|||
<el-popover v-model="deptListVisible" |
|||
ref="deptListPopover" |
|||
placement="bottom-start" |
|||
trigger="click" :disabled="true"> |
|||
<el-tree :data="deptList" |
|||
:props="{ label: 'name', children: 'children' }" |
|||
node-key="id" |
|||
ref="deptListTree" |
|||
:highlight-current="true" |
|||
:expand-on-click-node="false" |
|||
accordion |
|||
@current-change="deptListTreeCurrentChangeHandle"> |
|||
</el-tree> |
|||
</el-popover> |
|||
<el-input v-model="dataForm.parentName" |
|||
v-popover:deptListPopover |
|||
:readonly="true" |
|||
:placeholder="$t('dept.parentName')" :disabled="true"> |
|||
<i v-if="$store.state.user.superAdmin === 1 && dataForm.pid !== '0'" |
|||
slot="suffix" |
|||
@click.stop="deptListTreeSetDefaultHandle()" |
|||
class="el-icon-circle-close el-input__icon"> |
|||
</i> |
|||
</el-input> |
|||
</el-form-item> |
|||
<el-form-item label="机构类型" |
|||
prop="typeKey"> |
|||
<el-select v-model="dataForm.typeKey" |
|||
@change="changeOrgType" |
|||
placeholder="机构类型" :disabled="true"> |
|||
<el-option v-for="item in secondOrgDictList" |
|||
:key="item.dictValue" |
|||
:label="item.dictName" |
|||
:value="item.dictValue"> |
|||
</el-option> |
|||
</el-select> |
|||
</el-form-item> |
|||
<el-form-item prop="sort" |
|||
:label="$t('dept.sort')"> |
|||
<el-input-number v-model="dataForm.sort" |
|||
controls-position="right" |
|||
:min="0" |
|||
:label="$t('dept.sort')"></el-input-number> |
|||
</el-form-item> |
|||
</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, |
|||
deptList: [], |
|||
deptListVisible: false, |
|||
dataForm: { |
|||
id: '', |
|||
name: '', |
|||
pid: '', |
|||
parentName: '', |
|||
sort: 0, |
|||
typeKey: '', |
|||
typeName: '', |
|||
partyCode: '' |
|||
}, |
|||
secondOrgDictList: [] |
|||
} |
|||
}, |
|||
computed: { |
|||
dataRule () { |
|||
return { |
|||
name: [ |
|||
{ required: true, message: this.$t('validate.required'), trigger: 'blur' } |
|||
] |
|||
} |
|||
} |
|||
}, |
|||
methods: { |
|||
init () { |
|||
this.visible = true |
|||
this.$nextTick(() => { |
|||
this.$refs['dataForm'].resetFields() |
|||
this.getDeptList().then(() => { |
|||
if (this.dataForm.id) { |
|||
this.getInfo() |
|||
} else if (this.$store.state.user.superAdmin === 1) { |
|||
this.deptListTreeSetDefaultHandle() |
|||
} |
|||
if (this.dataForm.id) { |
|||
} else { |
|||
this.dataForm.partyCode = '' |
|||
this.dataForm.typeKey = '' |
|||
} |
|||
}) |
|||
}) |
|||
this.getSecondOrgDicList() |
|||
}, |
|||
// 改变机构类型 |
|||
changeOrgType (item) { |
|||
this.typeKey = item |
|||
}, |
|||
// 获取部门列表 |
|||
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(() => { }) |
|||
}, |
|||
// 获取二级党委字典列表 |
|||
getSecondOrgDicList () { |
|||
this.$http.get(`/sys/dict/listSimple/org_type`).then(({ data: res }) => { |
|||
if (res.code !== 0) { |
|||
return this.$message.error(res.msg) |
|||
} |
|||
this.secondOrgDictList = res.data |
|||
}).catch(() => { }) |
|||
}, |
|||
// 获取信息 |
|||
getInfo () { |
|||
this.$http.get(`/cloudAnalysis/metaSysdeptManager/${this.dataForm.id}`).then(({ data: res }) => { |
|||
if (res.code !== 0) { |
|||
return this.$message.error(res.msg) |
|||
} |
|||
this.dataForm = { |
|||
...this.dataForm, |
|||
...res.data |
|||
} |
|||
if (this.dataForm.pid === '0') { |
|||
return this.deptListTreeSetDefaultHandle() |
|||
} |
|||
this.$refs.deptListTree.setCurrentKey(this.dataForm.pid) |
|||
}).catch(() => { }) |
|||
}, |
|||
// 上级部门树, 设置默认值 |
|||
deptListTreeSetDefaultHandle () { |
|||
this.dataForm.pid = '0' |
|||
this.dataForm.parentName = this.$t('dept.parentNameDefault') |
|||
}, |
|||
// 上级部门树, 选中 |
|||
deptListTreeCurrentChangeHandle (data) { |
|||
this.dataForm.pid = data.id |
|||
this.dataForm.parentName = data.name |
|||
this.deptListVisible = false |
|||
}, |
|||
// 表单提交 |
|||
dataFormSubmitHandle: debounce(function () { |
|||
this.$refs['dataForm'].validate((valid) => { |
|||
if (!valid) { |
|||
return false |
|||
} |
|||
this.$http[!this.dataForm.id ? 'post' : 'put']('/cloudAnalysis/metaSysdeptManager', 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 }) |
|||
} |
|||
} |
|||
</script> |
|||
|
|||
<style lang="scss"> |
|||
.mod-sys__dept { |
|||
.dept-list { |
|||
.el-input__inner, |
|||
.el-input__suffix { |
|||
cursor: pointer; |
|||
} |
|||
} |
|||
} |
|||
</style> |
|||
@ -0,0 +1,117 @@ |
|||
<template> |
|||
<el-card shadow="never" class="aui-card--fill"> |
|||
<div class="mod-sys__metasysdept}"> |
|||
<el-form :inline="true" :model="dataForm" @keyup.enter.native="getDataList()"> |
|||
<div v-if="dataForm.pid != 0"> |
|||
<el-form-item> |
|||
<el-button type="primary" @click="backToDeptList">返回</el-button> |
|||
</el-form-item> |
|||
</div> |
|||
<el-form-item label="组织架构名称" prop="name"> |
|||
<el-input v-model="dataForm.name" placeholder="组织架构名称" clearable></el-input> |
|||
</el-form-item> |
|||
<el-form-item> |
|||
<el-button @click="getDataList()">{{ $t('query') }}</el-button> |
|||
</el-form-item> |
|||
<el-form-item> |
|||
<el-button v-if="$hasPermission('sys:metasysdept:save')" type="primary" @click="addOrUpdateHandle()">{{ $t('add') }}</el-button> |
|||
</el-form-item> |
|||
<el-form-item> |
|||
<el-button v-if="$hasPermission('sys:metasysdept:delete')" type="danger" @click="deleteHandle()">{{ $t('deleteBatch') }}</el-button> |
|||
</el-form-item> |
|||
</el-form> |
|||
<el-table v-loading="dataListLoading" :data="dataList" border @selection-change="dataListSelectionChangeHandle" style="width: 100%;"> |
|||
<el-table-column prop="name" label="名称" header-align="center"></el-table-column> |
|||
<el-table-column prop="sort" label="排序" header-align="center" align="center" width="80"></el-table-column> |
|||
<el-table-column :label="$t('handle')" fixed="right" header-align="center" align="center" width="150"> |
|||
<template slot-scope="scope"> |
|||
<el-button v-if="$hasPermission('sys:metasysdeptManagement:update')" type="text" size="small" @click="addOrUpdateHandle(scope.row.id)">{{ $t('update') }}</el-button> |
|||
<el-button v-if="$hasPermission('sys:metasysdeptManagement:delete')" type="text" size="small" @click="deleteHandle(scope.row.id)">{{ $t('delete') }}</el-button> |
|||
<el-button type="text" size="small" @click="lookHandle(scope.row.id,scope.row.pid)" :disabled="scope.row.typeKey == 'grid_party'">查看</el-button> |
|||
</template> |
|||
</el-table-column> |
|||
</el-table> |
|||
<el-pagination |
|||
:current-page="page" |
|||
:page-sizes="[10, 20, 50, 100]" |
|||
:page-size="limit" |
|||
:total="total" |
|||
layout="total, sizes, prev, pager, next, jumper" |
|||
@size-change="pageSizeChangeHandle" |
|||
@current-change="pageCurrentChangeHandle"> |
|||
</el-pagination> |
|||
<!-- 弹窗, 新增 / 修改 --> |
|||
<add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getDataList"></add-or-update> |
|||
</div> |
|||
</el-card> |
|||
</template> |
|||
|
|||
<script> |
|||
import mixinViewModule from '@/mixins/view-module' |
|||
import TableTreeColumn from '@/components/table-tree-column' |
|||
import AddOrUpdate from './metaSysDeptManagement-add-or-update' |
|||
export default { |
|||
mixins: [mixinViewModule], |
|||
data () { |
|||
return { |
|||
mixinViewModuleOptions: { |
|||
getDataListURL: '/cloudAnalysis/metaSysdeptManager/page', |
|||
getDataListIsPage: true, |
|||
deleteURL: '/cloudAnalysis/metaSysdeptManager', |
|||
deleteIsBatch: true |
|||
}, |
|||
dataForm: { |
|||
id: '', |
|||
pid: '', |
|||
name: '' |
|||
}, |
|||
pidList: [0] |
|||
} |
|||
}, |
|||
mounted () { |
|||
if (this.$route.query.pidList !== null && this.$route.query.pidList !== undefined) { |
|||
this.pidList = JSON.parse(this.$route.query.pidList) |
|||
this.dataForm.pid = this.pidList[this.pidList.length - 1] |
|||
} else { |
|||
this.dataForm.pid = 0 |
|||
} |
|||
this.getDataList() |
|||
}, |
|||
created: function () { |
|||
}, |
|||
components: { |
|||
TableTreeColumn, |
|||
AddOrUpdate |
|||
}, |
|||
methods: { |
|||
lookHandle (id, pid) { |
|||
this.page = 1 |
|||
this.pidList.push(id) |
|||
this.$parent.selectComponent = 'Metasysdept' |
|||
this.$router.push({ path: '/organize-organizedeptManagementroute', query: { pidList: JSON.stringify(this.pidList) } }) |
|||
if (this.$route.query.pidList !== null && this.$route.query.pidList !== undefined) { |
|||
this.pidList = JSON.parse(this.$route.query.pidList) |
|||
this.dataForm.pid = this.pidList[this.pidList.length - 1] |
|||
} else { |
|||
this.dataForm.pid = 0 |
|||
} |
|||
this.getDataList() |
|||
}, |
|||
backToDeptList () { |
|||
this.page = 1 |
|||
var m = this.pidList.splice(this.pidList.length - 1, 1) |
|||
m.pop() |
|||
this.$emit('refreshDataList') |
|||
this.$parent.selectComponent = 'Metasysdept' |
|||
this.$router.push({ path: '/organize-organizedeptManagementroute', query: { pidList: JSON.stringify(this.pidList) } }) |
|||
if (this.$route.query.pidList !== null && this.$route.query.pidList !== undefined) { |
|||
this.pidList = JSON.parse(this.$route.query.pidList) |
|||
this.dataForm.pid = this.pidList[this.pidList.length - 1] |
|||
} else { |
|||
this.dataForm.pid = 0 |
|||
} |
|||
this.getDataList() |
|||
} |
|||
} |
|||
} |
|||
</script> |
|||
@ -0,0 +1,27 @@ |
|||
<template> |
|||
<keep-alive include="metasysdept"> |
|||
<component :is="selectComponent"></component> |
|||
</keep-alive> |
|||
</template> |
|||
<script> |
|||
import Metasysdept from './metaSysDeptManagement' |
|||
export default { |
|||
data () { |
|||
return { |
|||
selectComponent: Metasysdept |
|||
} |
|||
}, |
|||
components: { |
|||
Metasysdept |
|||
}, |
|||
methods: { |
|||
init () { |
|||
this.selectComponent = Metasysdept |
|||
} |
|||
} |
|||
} |
|||
</script> |
|||
|
|||
<style lang="scss" scoped> |
|||
|
|||
</style> |
|||
Loading…
Reference in new issue