bug
This commit is contained in:
@@ -114,7 +114,7 @@
|
|||||||
<div class="btn">保存</div>
|
<div class="btn">保存</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<u-picker mode="time" v-model="dateShow" :params="deteParams" start-year="2010" @confirm="dateConfirm">请选择
|
<u-picker mode="time" v-model="dateShow" :params="deteParams" start-year="1900" @confirm="dateConfirm">请选择
|
||||||
</u-picker>
|
</u-picker>
|
||||||
<u-select v-model="showSelect" :list="selectList" label-name="dictName" value-name="dictValue"
|
<u-select v-model="showSelect" :list="selectList" label-name="dictName" value-name="dictValue"
|
||||||
@confirm="confirmSelect"/>
|
@confirm="confirmSelect"/>
|
||||||
@@ -175,6 +175,7 @@ export default {
|
|||||||
this.$http.post(`app/appcommunityhouseinfo/update`, this.houseInfo).then(res => {
|
this.$http.post(`app/appcommunityhouseinfo/update`, this.houseInfo).then(res => {
|
||||||
if (res?.code == 0) {
|
if (res?.code == 0) {
|
||||||
this.$u.toast('提交成功')
|
this.$u.toast('提交成功')
|
||||||
|
uni.$emit('changeHouseInfo')
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
uni.navigateBack({})
|
uni.navigateBack({})
|
||||||
}, 600)
|
}, 600)
|
||||||
|
|||||||
@@ -150,7 +150,6 @@ export default {
|
|||||||
params: {
|
params: {
|
||||||
current: 1,
|
current: 1,
|
||||||
size: 1000000,
|
size: 1000000,
|
||||||
areaId: this.user.areaId
|
|
||||||
}
|
}
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
if (res?.data) {
|
if (res?.data) {
|
||||||
@@ -299,7 +298,6 @@ export default {
|
|||||||
params: {
|
params: {
|
||||||
current: 1,
|
current: 1,
|
||||||
size: 20,
|
size: 20,
|
||||||
areaId: this.user.areaId,
|
|
||||||
name: this.name
|
name: this.name
|
||||||
}
|
}
|
||||||
}).then(res => {
|
}).then(res => {
|
||||||
|
|||||||
@@ -168,6 +168,9 @@ export default {
|
|||||||
this.$dict.load('householdRelation', 'houselivingStatus', 'houseLeaseSituation', 'houseUseStatus',
|
this.$dict.load('householdRelation', 'houselivingStatus', 'houseLeaseSituation', 'houseUseStatus',
|
||||||
'isFilingCertificateStatus', 'communityBuildingType', 'yesOrNo', 'BulidResidentType')
|
'isFilingCertificateStatus', 'communityBuildingType', 'yesOrNo', 'BulidResidentType')
|
||||||
this.getBuilding()
|
this.getBuilding()
|
||||||
|
uni.$on('changeHouseInfo', res => {
|
||||||
|
this.getHouseDetail(this.houseInfo.id)
|
||||||
|
})
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
getSelectList(communityId) {
|
getSelectList(communityId) {
|
||||||
|
|||||||
@@ -26,18 +26,22 @@
|
|||||||
<div v-if="form.girdMemberManageList && form.girdMemberManageList.length">
|
<div v-if="form.girdMemberManageList && form.girdMemberManageList.length">
|
||||||
<div class="info-flex" v-for="(item, index) in form.girdMemberManageList" :key="index">
|
<div class="info-flex" v-for="(item, index) in form.girdMemberManageList" :key="index">
|
||||||
<span class="label">网格长</span>
|
<span class="label">网格长</span>
|
||||||
<span class="value">{{ item.name }} {{ item.phone }}
|
<span class="value">
|
||||||
|
<AiOpenData v-if="item.name" type="userName" :openid="item.name" />
|
||||||
|
<!-- {{ item.phone }}
|
||||||
<img :src="$cdn + 'common/phone.png'" alt="" @click="callPhone(item.phone)" class="phone-icon"
|
<img :src="$cdn + 'common/phone.png'" alt="" @click="callPhone(item.phone)" class="phone-icon"
|
||||||
v-if="item.phone">
|
v-if="item.phone"> -->
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="form.girdMemberList && form.girdMemberList.length">
|
<div v-if="form.girdMemberList && form.girdMemberList.length">
|
||||||
<div class="info-flex" v-for="(item, index) in form.girdMemberList" :key="index">
|
<div class="info-flex" v-for="(item, index) in form.girdMemberList" :key="index">
|
||||||
<span class="label">网格管理员</span>
|
<span class="label">网格管理员</span>
|
||||||
<span class="value">{{ item.name }} {{ item.phone }}
|
<span class="value">
|
||||||
|
<AiOpenData v-if="item.name" type="userName" :openid="item.name" />
|
||||||
|
<!-- {{ item.phone }}
|
||||||
<img :src="$cdn + 'common/phone.png'" alt="" @click="callPhone(item.phone)" class="phone-icon"
|
<img :src="$cdn + 'common/phone.png'" alt="" @click="callPhone(item.phone)" class="phone-icon"
|
||||||
v-if="item.phone">
|
v-if="item.phone"> -->
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user