diff --git a/src/router/index.js b/src/router/index.js index f96f01b6..b3d6d94b 100644 --- a/src/router/index.js +++ b/src/router/index.js @@ -313,11 +313,11 @@ router.beforeEach((to, from, next) => { name: "事件处理分析", id: "shijianchulifenxi", }, - { - url: "visual/communityGovern/processAnalyze", - name: "事件处置分析", - id: "processAnalyze", - }, + // { + // url: "visual/communityGovern/processAnalyze", + // name: "事件处置分析", + // id: "processAnalyze", + // }, { url: "/visual/communityGovern/shijianfenlei/shijianfenleifenxi", name: "事件分类分析", @@ -333,16 +333,16 @@ router.beforeEach((to, from, next) => { // name: "事件分类分析", // id: "typeAnalyze", // }, - { - url: "/visual/communityGovern/resibuzz", - name: "居民热议分析", - id: "resibuzz", - }, - { - url: "/visual/communityGovern/distributionAnalyze", - name: "事件分布分析", - id: "distributionAnalyze", - }, + // { + // url: "/visual/communityGovern/resibuzz", + // name: "居民热议分析", + // id: "resibuzz", + // }, + // { + // url: "/visual/communityGovern/distributionAnalyze", + // name: "事件分布分析", + // id: "distributionAnalyze", + // }, ], }, diff --git a/src/views/modules/base/community/community.vue b/src/views/modules/base/community/community.vue index 01f94046..7ba9c649 100644 --- a/src/views/modules/base/community/community.vue +++ b/src/views/modules/base/community/community.vue @@ -210,7 +210,7 @@ export default { this.showRoomTable = true this.$nextTick(() => { - this.$refs['ref_buildingTable'].loadTable('search', this.selTreeObj, this.ownerName, this.ownerPhone, this.rentFlag) + this.$refs['ref_buildingTable'].loadTable('search', this.selTreeObj) }) } else { this.$message.warning('请输入查询条件') diff --git a/src/views/modules/base/community/roomTable.vue b/src/views/modules/base/community/roomTable.vue index a3b8a17a..a866b6f3 100644 --- a/src/views/modules/base/community/roomTable.vue +++ b/src/views/modules/base/community/roomTable.vue @@ -209,9 +209,7 @@ export default { // showImportBtn: false,//是否显示操作按钮,根据登录人所属组织判断 agencyObj: {},//树所选的小区对象 - ownerName: '', - ownerPhone: '', - rentFlag: '', + validTableDataNum: 0,//有效的数据数量,即有权限操作的数据数量 selection: [], @@ -262,13 +260,13 @@ export default { return index + 1; }, handleSortOrderChange (value) { - console.log(value.column, value.prop, value.order) + this.sortType = value.order === 'ascending' ? 'asc' : 'desc' this.loadTable() }, handleSortChange (value) { - console.log(value.column, value.prop, value.order) + this.sortType = value.order === 'ascending' ? 'asc' : 'desc' this.loadTable() @@ -283,7 +281,7 @@ export default { async handleChangeSort (row, index) { // row.isChange = false - console.log(row.sort) + let params = { id: row.houseId, sort: row.sort, @@ -323,7 +321,7 @@ export default { }, - async loadTable (source, treeObj, ownerName, ownerPhone, rentFlag) { + async loadTable (source, treeObj) { this.source = source this.tableLoading = true @@ -331,14 +329,10 @@ export default { if (source === 'tree') {//来源于tree,查询数据清空 this.sortType = 'asc' this.agencyObj = treeObj - this.ownerName = null - this.ownerPhone = null - this.rentFlag = null + } else if (source === 'search') {//来源于查询 this.agencyObj = treeObj - this.ownerName = ownerName - this.ownerPhone = ownerPhone - this.rentFlag = rentFlag + } // if (fromTree) { @@ -403,7 +397,7 @@ export default { this.formTitle = '新增房屋' this.formShow = true this.$nextTick(() => { - console.log(this.agencyObj) + this.$refs.ref_form.initForm('add', null, this.agencyObj) }) }, @@ -618,16 +612,39 @@ export default { let url = "/gov/org/house/exportHouseUser" + let params = { agencyId: '', gridId: '', ownerName: this.ownerName, ownerPhone: this.ownerPhone, rentFlag: this.rentFlag, - buildingId: this.agencyObj.id + buildingId: '', + neighborHoodId: '' } + if (this.agencyObj.level === 'grid') { + params.gridId = this.agencyObj.id + params.agencyId = '' + params.buildingId = '' + params.neighborHoodId = '' + } else if (this.agencyObj.level === 'neighborHood') { + params.neighborHoodId = this.agencyObj.id + params.agencyId = '' + params.buildingId = '' + params.gridId = '' + } else if (this.agencyObj.level === 'building') { + params.buildingId = this.agencyObj.id + params.agencyId = '' + params.neighborHoodId = '' + params.gridId = '' + } else { + params.agencyId = this.agencyObj.id + params.buildingId = '' + params.neighborHoodId = '' + params.gridId = '' + } app.ajax.exportFilePost( url, diff --git a/src/views/modules/base/huji/immigration/edit.vue b/src/views/modules/base/huji/immigration/edit.vue index 8cf1a260..2999880c 100644 --- a/src/views/modules/base/huji/immigration/edit.vue +++ b/src/views/modules/base/huji/immigration/edit.vue @@ -142,14 +142,23 @@ > - 享受福利 + 享受福利 + + 补充居民信息 @@ -421,7 +430,8 @@ export default { lazy: true, lazyLoad: this.lzayLoadArea }, - userInfo: {} + userInfo: {}, + initCheck: null } }, components: {}, @@ -777,6 +787,7 @@ export default { const { data, code, msg } = await requestPost(url, params) if (code === 0) { this.fmData = { ...data } + this.initCheck = data.isCheck this.nowAllCode = data.sourceAddressPathCode && data.sourceAddressPathCode.split(',') } else this.$message.error(msg) }, diff --git a/src/views/modules/shequzhili/event/cpts/event-detail.vue b/src/views/modules/shequzhili/event/cpts/event-detail.vue index 711f9416..2853aa23 100644 --- a/src/views/modules/shequzhili/event/cpts/event-detail.vue +++ b/src/views/modules/shequzhili/event/cpts/event-detail.vue @@ -31,9 +31,9 @@ class="info-prop"> 语音: diff --git a/src/views/modules/shequzhili/event/cpts/process-form.vue b/src/views/modules/shequzhili/event/cpts/process-form.vue index dcfa39a1..4f9e0701 100644 --- a/src/views/modules/shequzhili/event/cpts/process-form.vue +++ b/src/views/modules/shequzhili/event/cpts/process-form.vue @@ -12,7 +12,8 @@ prop="operationType"> - 暂不处理 + 暂不处理 回复 立项 转服务 diff --git a/src/views/modules/shequzhili/event/eventList.vue b/src/views/modules/shequzhili/event/eventList.vue index 6c6621bf..caeede23 100644 --- a/src/views/modules/shequzhili/event/eventList.vue +++ b/src/views/modules/shequzhili/event/eventList.vue @@ -169,7 +169,8 @@ width="80" label="音频"> @@ -290,6 +291,30 @@ @dialogOk="handleEditSuccess" /> + +
+
+ + +
+
+ +
+ 取消 + +
+
+ @@ -384,7 +409,8 @@ export default { eventDetailData: {}, - + showVoice: false, + selVoiceUrl: '', }; }, computed: { @@ -518,6 +544,11 @@ export default { } }, + //显示语音窗口 + handleShowVoice (url) { + this.selVoiceUrl = url + this.showVoice = true + }, handleClose () { this.pageType = "list"; diff --git a/src/views/modules/visual/communityGovern/duoyuanfuwu/duoyuanDialog.vue b/src/views/modules/visual/communityGovern/duoyuanfuwu/duoyuanDialog.vue index 3b26bcec..eef1de18 100644 --- a/src/views/modules/visual/communityGovern/duoyuanfuwu/duoyuanDialog.vue +++ b/src/views/modules/visual/communityGovern/duoyuanfuwu/duoyuanDialog.vue @@ -23,10 +23,7 @@