+ @keyup.enter.native="dataFormSubmitHandle()" label-width="140px">
@@ -30,6 +30,7 @@
+
@@ -52,52 +53,59 @@
合同信息
出租人信息
-
+
-
+
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
承租人信息
-
+
-
+
-
-
-
-
-
+
-
-
-
-
-
+
+
+
合同内容
-
+
-
+
-
+
@@ -145,16 +153,30 @@ export default {
lessorName: '',
lessorIdCard: '',
lessorMobile: '',
+ lessorRelation: '',
lesseeName: '',
lesseeIdCard: '',
lesseeMobile: '',
+ lesseeUnit: '',
signDate: '',
startDate: '',
endDate: ''
},
dataListLoading: false,
dialogVisible: false,
- dialogImageUrl: ''
+ dialogImageUrl: '',
+ lessorRelationArr: [
+ { dictValue: '本人', dictName: '本人' },
+ { dictValue: '配偶', dictName: '配偶' },
+ { dictValue: '子女', dictName: '子女' },
+ { dictValue: '父母', dictName: '父母' },
+ { dictValue: '岳父母或公婆', dictName: '岳父母或公婆' },
+ { dictValue: '祖父母', dictName: '祖父母' },
+ { dictValue: '媳婿', dictName: '媳婿' },
+ { dictValue: '孙子女', dictName: '孙子女' },
+ { dictValue: '兄弟姐妹', dictName: '兄弟姐妹' },
+ { dictValue: '中介', dictName: '中介' }
+ ]
}
},
computed: {
@@ -252,7 +274,8 @@ export default {
const params = {
id: this.dataForm.id,
state: type,
- homeId: this.dataForm.homeId
+ homeId: this.dataForm.homeId,
+ lessorRelation: this.dataForm.lessorRelation
}
this.$http.post('/pli/power/rentContractInfo/review', params).then(({ data: res }) => {
if (res.code !== 0) {
diff --git a/src/views/modules/visual/basicinfo/basicInfoCommunity.vue b/src/views/modules/visual/basicinfo/basicInfoCommunity.vue
index 34b08a885..e28220ff8 100644
--- a/src/views/modules/visual/basicinfo/basicInfoCommunity.vue
+++ b/src/views/modules/visual/basicinfo/basicInfoCommunity.vue
@@ -46,7 +46,7 @@
-
{{item.rentFlag}}
+
{{item.rentFlag}}
@@ -163,9 +163,6 @@ export default {
runNum: 0,
runAgencyArray: [],
-
-
-
}
},
async mounted () {
diff --git a/src/views/modules/visual/basicinfo/houseStatic/houseStatic.vue b/src/views/modules/visual/basicinfo/houseStatic/houseStatic.vue
index 25c1f970d..893f8c5bb 100644
--- a/src/views/modules/visual/basicinfo/houseStatic/houseStatic.vue
+++ b/src/views/modules/visual/basicinfo/houseStatic/houseStatic.vue
@@ -233,21 +233,21 @@ export default {
xzHouseTotal: 200,//房屋闲置总数
xzHouseRatio: '70%',//房屋闲置总数占比(保留两位小数,带百分号的)
},
- houseColorArray: ['#FAC126', '#3DDA83', '#2865FA'],
+ houseColorArray: ['#3dda83', '#e43c26', '#fac126'],
housePieData: [],
legendArray: [
{
name: '自住房屋数',
- url: require('../../../../../assets/img/shuju/measure/huang@2x.png')
+ url: require('../../../../../assets/img/shuju/measure/lv@2x.png')
},
{
name: '出租房屋数',
- url: require('../../../../../assets/img/shuju/measure/lv@2x.png')
+ url: require('../../../../../assets/img/shuju/measure/hong@2x.png')
},
{
name: '闲置房屋数',
- url: require('../../../../../assets/img/shuju/measure/lan@2x.png')
+ url: require('../../../../../assets/img/shuju/measure/huang@2x.png')
}
],
@@ -265,7 +265,7 @@ export default {
ldUserRatio: '5%',//流动居民总数占比
},
- userColorArray: ['#ff7800', '#00E5ED'],
+ userColorArray: ['#3dda83', '#e43c26'],
userPieData: [],
subList: [],
diff --git a/src/views/modules/visual/communityParty/community.vue b/src/views/modules/visual/communityParty/community.vue
index 73af5c970..3194f8ee1 100644
--- a/src/views/modules/visual/communityParty/community.vue
+++ b/src/views/modules/visual/communityParty/community.vue
@@ -1255,7 +1255,7 @@ export default {
}
}
.table-h {
- height: 360px;
+ height: 320px;
}
.calc-h {
height: calc(100vh - 240px);
diff --git a/src/views/modules/visual/communityParty/gridParty.vue b/src/views/modules/visual/communityParty/gridParty.vue
index fbe6af598..6b6aa616d 100644
--- a/src/views/modules/visual/communityParty/gridParty.vue
+++ b/src/views/modules/visual/communityParty/gridParty.vue
@@ -10,8 +10,7 @@
:options="propTree"
:props="{ checkStrictly: true }"
:show-all-levels="false"
- :getCheckedNodes="getCheckedNodes"
- clearable
+ :getCheckedNodes="getCheckedNodes"
@change="handleCascader">
@@ -166,8 +165,9 @@ export default {
]
await this.loadOrgData()
await this.getWorkUserInfo()
- this.loadMap()
- this.isfirstInit = false
+ // this.loadMap()
+ this.getMapData()
+ // this.isfirstInit = false
// 地图相关end
},
methods: {
@@ -189,7 +189,6 @@ export default {
// };
const { data, code, msg } = await requestPost(url);
if (code === 0) {
- console.log('data-org----o', data)
this.selectAgency = [`${data.agencyId}-${data.level}`]
this.orgType = data.level
this.agencyId = data.agencyId
@@ -230,7 +229,6 @@ export default {
},
// 组织点击事件
async handleCascader(val) {
- console.log('val-vvv', val)
const _arr = val[val.length - 1].split('-')
const orgType = _arr[1] !== 'grid' ? 'agency': 'grid'
this.agencyId = _arr[0]
@@ -238,7 +236,6 @@ export default {
this.orgType = orgType
this.noEduInit = false
this.agencyInfo = { ...this.orgData }
- console.log('agencyInfo-----', this.agencyInfo)
this.eduCode = ''
await this.loadOrgData()
this.getEduCount(_arr[0])
@@ -342,7 +339,6 @@ export default {
}
};
- console.log('zlcm')
} else {
element.isClick = false
element.label = {
@@ -400,7 +396,6 @@ export default {
this.visibleLoading = false
},
pieInitOks (dom) {
- console.log('pies准备好了', dom)
this.pieEduChartS = dom
// this.pieInitState = true
},
@@ -424,7 +419,6 @@ export default {
this.showedUnitMoreInfo = true
this.unitAclist = data.list
this.$nextTick(() => {
- console.log(this.unitAclist[0].demandRecId)
this.$refs['unitdetailInfo'].getDetail(this.unitAclist[0].demandRecId)
})
} else {
@@ -511,10 +505,11 @@ export default {
window.app.ajax.post(
url,
params,
- (data, rspMsg) => {
+ (data, rspMsg) => {
this.unitMapList = data
- this.isfirstInit = false
this.loadMap()
+ this.isfirstInit = false
+ this.$refs.map.handleClosePopup()
},
(rspMsg, data) => {
this.$message.error(rspMsg)
@@ -526,9 +521,7 @@ export default {
this.userId = ''
const featureInfo = feature.values_.properties.info
this.userId = feature.values_.properties.info.id
- console.log('feature.values_.properties.info:::', JSON.stringify(feature.values_.properties.info))
let coordinate = [featureInfo.longitude, featureInfo.latitude]
- console.log(feature.values_.properties.info)
let showData = `
个人信息
姓名:
@@ -557,7 +550,6 @@ export default {
},
lookMore(e) {
this.userId = this.userId
- console.log('userId:', this.userId)
this.showedMoreInfo = true
}
},
diff --git a/src/views/modules/visual/communityParty/memberInfo.vue b/src/views/modules/visual/communityParty/memberInfo.vue
index 55041b781..1b07df9c1 100644
--- a/src/views/modules/visual/communityParty/memberInfo.vue
+++ b/src/views/modules/visual/communityParty/memberInfo.vue
@@ -29,6 +29,10 @@
需求类型:
{{ info.categoryName }}
+
+ 上报类型:
+ {{ info.reportTypeName }}
+
上报人:
{{ info.reportUserName }}
@@ -171,7 +175,7 @@ export default {
margin-bottom: 0;
.list {
display: block;
- width: 50%;
+ width: auto;
.item {
display: flex;
width: 100%;
@@ -228,6 +232,7 @@ export default {
overflow: auto;
.left-item {
padding: 10px 0;
+ border-right: 1px dashed #1257c9;
cursor: pointer;
.item-title {
font-size: 16px;
diff --git a/src/views/modules/visual/communityParty/unitInfo.vue b/src/views/modules/visual/communityParty/unitInfo.vue
index 75ff68ca8..8ee4c9ea3 100644
--- a/src/views/modules/visual/communityParty/unitInfo.vue
+++ b/src/views/modules/visual/communityParty/unitInfo.vue
@@ -234,6 +234,7 @@ export default {
overflow: auto;
.left-item {
padding: 10px 0;
+ border-bottom: 1px dashed #1257c9;
cursor: pointer;
.item-title {
font-size: 16px;
diff --git a/src/views/modules/visual/components/screen-map/index.vue b/src/views/modules/visual/components/screen-map/index.vue
index 2b6c77953..bf2870126 100644
--- a/src/views/modules/visual/components/screen-map/index.vue
+++ b/src/views/modules/visual/components/screen-map/index.vue
@@ -33,7 +33,8 @@
+ id="popup-goMore"
+ class="popup-goMore">更多>>>>