diff --git a/src/assets/scss/modules/management/list-main.scss b/src/assets/scss/modules/management/list-main.scss index 101e97295..dd8a7f865 100644 --- a/src/assets/scss/modules/management/list-main.scss +++ b/src/assets/scss/modules/management/list-main.scss @@ -4,7 +4,7 @@ width: 100%; .m-search { - padding: 10px; + padding: 24px 10px 10px; // box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.1); background: #FFFFFF; box-shadow: 0px 6px 16px 0px rgba(0,0,0,0.08), 0px 3px 6px -4px rgba(0,0,0,0.12); diff --git a/src/views/components/resiInfo.vue b/src/views/components/resiInfo.vue index b06f2935a..fbb4a7fd3 100644 --- a/src/views/components/resiInfo.vue +++ b/src/views/components/resiInfo.vue @@ -11,7 +11,8 @@ -
本地户籍:
{{resiDetailObj.localResidenceFlag==1?'是':resiDetailObj.localResidenceFlag==0?'否':'--'}} +
本地户籍:
+ {{resiDetailObj.localResidenceFlag==1?'是':resiDetailObj.localResidenceFlag==0?'否':'--'}}
@@ -33,7 +34,9 @@ -
联系电话:
{{resiDetailObj.showMobile?resiDetailObj.showMobile:resiDetailObj.mobile?`${resiDetailObj.mobile.substr(0,3)}`+ "****" +`${resiDetailObj.mobile.substr(7,5)}`:'--'}}
+
联系电话:
+ {{resiDetailObj.showMobile?resiDetailObj.showMobile:resiDetailObj.mobile?`${resiDetailObj.mobile.substr(0,3)}`+ "****" +`${resiDetailObj.mobile.substr(7,5)}`:'--'}} +
显示
-
证件号:
{{resiDetailObj.showIdNum?resiDetailObj.showIdNum:resiDetailObj.idNum?`${resiDetailObj.idNum.substr(0, 11)}` +"******" +`${resiDetailObj.idNum.substr(16, 2)}`:'--'}}
+
证件号:
+
{{resiDetailObj.showIdNum?resiDetailObj.showIdNum:resiDetailObj.idNum?`${resiDetailObj.idNum.substr(0, 11)}` +"******" +`${resiDetailObj.idNum.substr(16, 2)}`:'--'}} +
-
备注:
{{resiDetailObj.remark?resiDetailObj.remark:'--'}}
- +
备注:
+
{{resiDetailObj.remark?resiDetailObj.remark:'--'}}
-
分类信息
@@ -169,13 +173,13 @@
监护人:
- {{resiHealthInfonObj.guardianFlag?resiHealthInfonObj.guardianFlag==1?'有':'--':'无'}} + {{resiHealthInfonObj.guardianFlag==1?'有':resiHealthInfonObj.guardianFlag==0?'无':'--'}}
技能特长:
- {{resiHealthInfonObj.specialSkillFlag?resiHealthInfonObj.specialSkillFlag==1?'有':'--':'无'}} + {{resiHealthInfonObj.specialSkillFlag==1?'有':resiHealthInfonObj.specialSkillFlag==0?'无':'--'}}
@@ -184,13 +188,13 @@
劳动能力:
- {{resiHealthInfonObj.workCapacityFlag?resiHealthInfonObj.workCapacityFlag==1?'有':'--':'无'}} + {{resiHealthInfonObj.workCapacityFlag==1?'有':resiHealthInfonObj.workCapacityFlag==0?'无':'--'}}
非义务教育阶段助学:
- {{resiHealthInfonObj.voluntaryEducationFlag!=''?resiHealthInfonObj.voluntaryEducationFlag==1?'有':'--':'无'}} + {{resiHealthInfonObj.voluntaryEducationFlag==1?'有':resiHealthInfonObj.voluntaryEducationFlag==0?'无':'--'}}
@@ -254,7 +258,9 @@ {{resiHealthInfonObj?resiHealthInfonObj.deliveranceNum?resiHealthInfonObj.deliveranceNum:'--':'--'}}
- +
+ +
备注:
{{resiHealthInfonObj?resiHealthInfonObj.healthRemark?resiHealthInfonObj.healthRemark:'--':'--'}} @@ -369,7 +375,7 @@
有无赡养人 :
- {{residentFamilyInfoObj?residentFamilyInfoObj.elderlyFlag==1?'有':'--':'无'}} + {{residentFamilyInfoObj.elderlyFlag==1?'有':residentFamilyInfoObj.elderlyFlag==0?'无':'--'}}
@@ -662,7 +668,7 @@ - +
备注 :
{{residentVolunteerObj?residentVolunteerObj.volunteerRemark?residentVolunteerObj.volunteerRemark:'--':'--'}} diff --git a/src/views/components/resiSearch.vue b/src/views/components/resiSearch.vue index cd1c357fa..7bfc7107b 100644 --- a/src/views/components/resiSearch.vue +++ b/src/views/components/resiSearch.vue @@ -742,7 +742,7 @@ export default { } console.log( agencyIdTemp); this.$http - .post('/actual/base/communityQuarters/listQuartersOptions', { + .post('/gov/org/icneighborhood/neighborhoodoption', { gridId: agencyIdTemp[1], agencyId: agencyIdTemp[0], // agencyId: user.agencyId @@ -761,8 +761,8 @@ export default { }, getBuildList() { this.$http - .post('/actual/base/communityBuilding/buildingoption', { - quartersId: this.form.villageId + .post('/gov/org/icbuilding/buildingoption', { + neighborHoodId: this.form.villageId }) .then(({ data: res }) => { if (res.code !== 0) { @@ -778,7 +778,7 @@ export default { }, getUniList() { this.$http - .post('/actual/base/communityBuildingUnit/unitoption', { + .post('/gov/org/icbuildingunit/unitoption', { buildingId: this.form.buildId }) .then(({ data: res }) => { @@ -795,7 +795,7 @@ export default { }, getHouseList() { this.$http - .post('/actual/base/communityHouse/houseoption', { unitId: this.form.unitId }) + .post('/gov/org/ichouse/houseoption', { unitId: this.form.unitId }) .then(({ data: res }) => { if (res.code !== 0) { return this.$message.error(res.msg)