监测对象bug

This commit is contained in:
liuye
2022-03-31 14:24:29 +08:00
parent e03aabf61a
commit 9c6766772d
3 changed files with 10 additions and 2 deletions

View File

@@ -115,7 +115,7 @@
info.family && info.family.length ? '已填写' : '未填写' info.family && info.family.length ? '已填写' : '未填写'
}})</i> }})</i>
</div> </div>
<span @click="linkTo(`./MonitorFamilyMember?id=${info.id}&houseIdNumber=${info.idNumber}&objectType=${info.objectType}`)" v-if="info.status == 1">编辑</span> <span @click="linkTo(`./MonitorFamilyMember?id=${info.id}&houseIdNumber=${info.idNumber}&objectType=${info.objectType}`)">编辑</span>
</div> </div>
<div class="item-info"> <div class="item-info">
<label>未参加医疗参保</label> <label>未参加医疗参保</label>

View File

@@ -47,6 +47,9 @@ export default {
onLoad(query) { onLoad(query) {
this.id = query.id this.id = query.id
this.getList() this.getList()
uni.$on('reload', () => {
this.getList()
})
}, },
onShow() { onShow() {
document.title = '帮扶措施' document.title = '帮扶措施'

View File

@@ -42,7 +42,12 @@ export default {
} }
}, },
onShow() { onShow() {
document.title = this.id ? '编辑帮扶日志' : '添加帮扶日志' if(this.type == 1) {
document.title = this.id ? '编辑帮扶日志' : '添加帮扶日志'
}else {
document.title = this.id ? '编辑走访日志' : '添加走访日志'
}
}, },
methods: { methods: {
getInfo() { getInfo() {