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.
112 lines
4.3 KiB
112 lines
4.3 KiB
<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>
|
|
<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="parentName" 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 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>
|
|
|