Browse Source

人员列表对应组织

shibei_master
13176889840 3 years ago
parent
commit
74e15f913e
  1. 4
      src/views/modules/visual/basicinfo/basicInfoMain.vue
  2. 8
      src/views/modules/visual/basicinfo/peopleList.vue

4
src/views/modules/visual/basicinfo/basicInfoMain.vue

@ -316,7 +316,9 @@ const vueGis = {
path: `/main-shuju/visual-basicinfo-people-list`,
query: {
columnName: item.columnName,
label: item.label
label: item.label,
id: this.orgId,
level: this.orgLevel
}
});
},

8
src/views/modules/visual/basicinfo/peopleList.vue

@ -127,10 +127,10 @@ export default {
this.searchName = ''
this.tableData = []
const { columnName, label } = this.$route.query
const { columnName, label, id, level } = this.$route.query
this.searchName = columnName
this.tableTitle = label
this.loadList()
this.loadList(id, level)
},
beforeRouteEnter(to, from, next) {
@ -146,11 +146,13 @@ export default {
async loadList () {
async loadList (id, level) {
this.loading = true
const url = "/epmetuser/icresiuser/searchbycategory"
let params = {
columnName: this.searchName,
id,
level,
pageSize: this.pageSize,
pageNo: this.pageNo
}

Loading…
Cancel
Save