+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- {{ $t('query') }}
+ {{ $t('query') }}
- {{ $t('add') }}
+ {{ $t('export') }}
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- {{ $t('update') }}
- {{ $t('delete') }}
+ {{
+ scope.row.type == 'out'
+ ? "客户外"
+ : scope.row.type == 'in'
+ ? "客户内"
+ : ""
+ }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -79,15 +141,86 @@ export default {
getDataListURL: '/pli/power/changeRelocation/page',
getDataListIsPage: true,
deleteURL: '/pli/power/changeRelocation',
- deleteIsBatch: true
+ deleteIsBatch: true,
+ exportURL: '/pli/power/changeRelocation/export'
},
+ timeRange: '',
dataForm: {
- id: ''
+ id: '',
+ name: '',
+ mobile: '',
+ idCard: ''
}
}
},
components: {
AddOrUpdate
- }
+ },
+ watch: {
+ timeRange (val) {
+ if (Array.isArray(val) && val.length == 2) {
+ this.dataForm.startTime = val[0];
+ this.dataForm.endTime = val[1];
+ } else {
+ this.dataForm.startTime = '';
+ this.dataForm.endTime = '';
+ }
+ }
+ },
}
+
diff --git a/src/views/modules/plugins/change/resichange.vue b/src/views/modules/plugins/change/resichange.vue
index 1b8180452..312a53c75 100644
--- a/src/views/modules/plugins/change/resichange.vue
+++ b/src/views/modules/plugins/change/resichange.vue
@@ -83,6 +83,10 @@
align="center"
width="150">
+ 迁出
-
+
@@ -281,7 +285,7 @@ import resiForm from '../../../components/resiForm.vue'
import editResi from '../../../components/editResi.vue'
import axios from 'axios'
import { mapGetters } from 'vuex'
-import resiTransfer from '../../../components/resiTransfer.vue'
+import resiChangeTransfer from '../../../components/resiChangeTransfer.vue'
import resiChangeRecord from '../../../components/resiChangeRecord.vue'
import peopleMore from "@/views/modules/shequ/cpts/people-more";
@@ -290,7 +294,7 @@ export default {
deathSearch,
resiForm,
editResi,
- resiTransfer,
+ resiChangeTransfer,
resiChangeRecord,
peopleMore
},
@@ -453,7 +457,7 @@ export default {
await nextTick(200)
- this.$refs.ref_transfer.initForm(row)
+ this.$refs.ref_change_transfer.initForm(row)
},
//变更记录
async handleChangeRecord (row) {
diff --git a/src/views/modules/plugins/rent/rentcontractinfo.vue b/src/views/modules/plugins/rent/rentcontractinfo.vue
index 3ca6eb70d..f825fd3ab 100644
--- a/src/views/modules/plugins/rent/rentcontractinfo.vue
+++ b/src/views/modules/plugins/rent/rentcontractinfo.vue
@@ -233,7 +233,8 @@ export default {
lessorMobile: '',
startTime: '',
endTime: '',
- endDate: ''
+ endDate: '',
+ state: '1'
},
pickerBeginDateBefore: {
disabledDate: (time) => {
diff --git a/src/views/modules/plugins/rent/rentcontractreview.vue b/src/views/modules/plugins/rent/rentcontractreview.vue
index 795e44efa..7e58728ff 100644
--- a/src/views/modules/plugins/rent/rentcontractreview.vue
+++ b/src/views/modules/plugins/rent/rentcontractreview.vue
@@ -230,7 +230,23 @@ export default {
{dictValue: '0', dictName: '未审核'},
{dictValue: '1', dictName: '审核通过'},
{dictValue: '2', dictName: '审核不通过'}
- ]
+ ],
+ pickerBeginDateBefore: {
+ disabledDate: (time) => {
+ let beginDateVal = this.dataForm.endTime
+ if (beginDateVal) {
+ return time.getTime() > new Date(beginDateVal + ' 00:00:00').getTime()
+ }
+ }
+ },
+ pickerBeginDateAfter: {
+ disabledDate: (time) => {
+ let EndDateVal = this.dataForm.startTime
+ if (EndDateVal) {
+ return time.getTime() < new Date(EndDateVal + ' 00:00:00').getTime()
+ }
+ }
+ }
}
},
components: {
From 854247030aa451fb0307a47739e69e33154b32a8 Mon Sep 17 00:00:00 2001
From: wanggongfeng <1305282856@qq.com>
Date: Sat, 7 May 2022 17:54:45 +0800
Subject: [PATCH 2/4] =?UTF-8?q?=E8=BF=81=E5=87=BA?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/components/resiChangeTransfer.vue | 17 +++++-
.../plugins/change/changerelocation.vue | 53 +++----------------
2 files changed, 24 insertions(+), 46 deletions(-)
diff --git a/src/views/components/resiChangeTransfer.vue b/src/views/components/resiChangeTransfer.vue
index 09d8e8fb7..b214ccd45 100644
--- a/src/views/components/resiChangeTransfer.vue
+++ b/src/views/components/resiChangeTransfer.vue
@@ -13,6 +13,17 @@
{{ gridName }}
+
+
+
+
+
-
-
-
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {{
- scope.row.type == 'out'
- ? "客户外"
- : scope.row.type == 'in'
- ? "客户内"
- : ""
- }}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
Date: Mon, 9 May 2022 09:51:28 +0800
Subject: [PATCH 3/4] =?UTF-8?q?=E7=A6=8F=E5=88=A9=E5=8A=9F=E8=83=BD?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../change/changewelfare-add-or-update.vue | 201 +++
.../modules/plugins/change/changewelfare.vue | 83 +
.../modules/plugins/change/resiwelfare.vue | 1350 +++++++++++++++++
3 files changed, 1634 insertions(+)
create mode 100644 src/views/modules/plugins/change/changewelfare-add-or-update.vue
create mode 100644 src/views/modules/plugins/change/changewelfare.vue
create mode 100644 src/views/modules/plugins/change/resiwelfare.vue
diff --git a/src/views/modules/plugins/change/changewelfare-add-or-update.vue b/src/views/modules/plugins/change/changewelfare-add-or-update.vue
new file mode 100644
index 000000000..902508f5b
--- /dev/null
+++ b/src/views/modules/plugins/change/changewelfare-add-or-update.vue
@@ -0,0 +1,201 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ $t('cancel') }}
+ {{ $t('confirm') }}
+
+
+
+
+
diff --git a/src/views/modules/plugins/change/changewelfare.vue b/src/views/modules/plugins/change/changewelfare.vue
new file mode 100644
index 000000000..b8036b633
--- /dev/null
+++ b/src/views/modules/plugins/change/changewelfare.vue
@@ -0,0 +1,83 @@
+
+
+
+
+
+
+
+
+ {{ $t('query') }}
+
+
+ {{ $t('add') }}
+
+
+ {{ $t('deleteBatch') }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ $t('update') }}
+ {{ $t('delete') }}
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/views/modules/plugins/change/resiwelfare.vue b/src/views/modules/plugins/change/resiwelfare.vue
new file mode 100644
index 000000000..1b8180452
--- /dev/null
+++ b/src/views/modules/plugins/change/resiwelfare.vue
@@ -0,0 +1,1350 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ handleFilterSpan(scope.row, item) }}
+
+ {{ handleFilterSpan(scope.row, item) }}
+
+
+
+
+ 迁入死亡人口
+
+
+
+
+
+
+
+
+
+
+
+
+ 取消
+ 提交
+
+
+
+
+
+
+ 取消
+ 提交
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
From 163eaf90322179e5dfcddc3ad7a5ad361300c266 Mon Sep 17 00:00:00 2001
From: wanggongfeng <1305282856@qq.com>
Date: Mon, 9 May 2022 10:05:05 +0800
Subject: [PATCH 4/4] =?UTF-8?q?=E8=BF=81=E5=87=BA?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../plugins/change/changerelocation.vue | 253 +++++++++++++++++-
.../modules/plugins/change/resichange.vue | 8 +-
.../modules/plugins/rent/rentcontractinfo.vue | 10 +-
3 files changed, 260 insertions(+), 11 deletions(-)
diff --git a/src/views/modules/plugins/change/changerelocation.vue b/src/views/modules/plugins/change/changerelocation.vue
index 39ebbe057..003ab87f7 100644
--- a/src/views/modules/plugins/change/changerelocation.vue
+++ b/src/views/modules/plugins/change/changerelocation.vue
@@ -2,7 +2,104 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
{
+ if (res.code !== 0) {
+ return this.$message.error(res.msg)
+ } else {
+ console.log('获取查询详情成功', res.data)
+ this.optionsG = res.data
+ }
+ })
+ .catch(() => {
+ return this.$message.error('网络错误')
+ })
+ },
+ getValiheList() {
+ const { user } = this.$store.state
+ this.$http
+ .post('/gov/org/icneighborhood/neighborhoodoption', {
+ gridId: this.dataForm.gridId,
+ agencyId: ''
+ // agencyId: user.agencyId
+ })
+ .then(({ data: res }) => {
+ if (res.code !== 0) {
+ return this.$message.error(res.msg)
+ } else {
+ console.log('获取查询详情成功', res.data)
+ this.optionsV = res.data
+ }
+ })
+ .catch(() => {
+ return this.$message.error('网络错误')
+ })
+ },
+ getBuildList() {
+ this.$http
+ .post('/gov/org/icbuilding/buildingoption', {
+ neighborHoodId: this.dataForm.villageId
+ })
+ .then(({ data: res }) => {
+ if (res.code !== 0) {
+ return this.$message.error(res.msg)
+ } else {
+ console.log('获取查询详情成功', res.data)
+ this.optionsB = res.data
+ }
+ })
+ .catch(() => {
+ return this.$message.error('网络错误')
+ })
+ },
+ getUniList() {
+ this.$http
+ .post('/gov/org/icbuildingunit/unitoption', {
+ buildingId: this.dataForm.buildId
+ })
+ .then(({ data: res }) => {
+ if (res.code !== 0) {
+ return this.$message.error(res.msg)
+ } else {
+ console.log('获取查询详情成功', res.data)
+ this.optionsD = res.data
+ }
+ })
+ .catch(() => {
+ return this.$message.error('网络错误')
+ })
+ },
+ getHouseList() {
+ this.$http
+ .post('/gov/org/ichouse/houseoption', { unitId: this.dataForm.unitId })
+ .then(({ data: res }) => {
+ if (res.code !== 0) {
+ return this.$message.error(res.msg)
+ } else {
+ console.log('获取查询详情成功', res.data)
+ this.optionsH = res.data
+ }
+ })
+ .catch(() => {
+ return this.$message.error('网络错误')
+ })
+ },
+ handleChangeV(val) {
+ console.log('val', val)
+ this.dataForm.buildId = ''
+ this.dataForm.unitId = ''
+ this.dataForm.homeId = ''
+ this.getBuildList()
+ },
+ handleChangeB(val) {
+ console.log('val', val)
+ this.dataForm.unitId = ''
+ this.dataForm.homeId = ''
+ this.getUniList()
+ },
+ handleChangeD(val) {
+ console.log('val', val)
+ this.dataForm.homeId = ''
+ this.getHouseList()
+ },
+ }
}