BUG 27986

This commit is contained in:
aixianling
2022-03-03 11:13:15 +08:00
parent 7e48145889
commit 06554e4cd6
2 changed files with 24 additions and 24 deletions

View File

@@ -1,5 +1,5 @@
<template>
<div class="returnHomeRegister" v-if="pageShow">
<div class="returnHomeRegister">
<div class="title">
<h2>全部记录</h2>
<div class="right">
@@ -31,7 +31,7 @@
</div>
</div>
</div>
<AiEmpty v-if="!list.length && isMore"></AiEmpty>
<AiEmpty v-if="!list.length && !isMore"/>
</div>
<div class="btn-wrapper">
<div class="btn" @click="toReport" hover-class="text-hover">添加返乡记录</div>
@@ -81,10 +81,11 @@ export default {
},
getList() {
if (this.isMore) return
if (this.isMore) return uni.hideLoading()
this.$instance.post(`/app/appepidemicbackhomerecord/list?openId=${this.user.openId}`, null, {
this.$instance.post(`/app/appepidemicbackhomerecord/list`, null, {
params: {
openId: this.user.openId,
current: this.current,
size: 15
}