This commit is contained in:
aihe 2024-07-30 11:10:52 +08:00
parent 15ef4e0283
commit 8ee6c8eca1
2 changed files with 10 additions and 2 deletions

View File

@ -170,6 +170,7 @@
}, 300)
},
handleToolsRangChange(val) {
this.rangeVal = val
if(val == -1) {
this.handleSwitchCladar()
} else {

View File

@ -13,7 +13,7 @@
</view>
<!-- 空数据页 -->
<view v-if="resObject.list.length == 0">
<view v-if="!showLoadMore && resObject.list.length == 0">
<tpx-empty :size="size"></tpx-empty>
</view>
</scroll-view>
@ -43,6 +43,11 @@
}
},
props: {
createReload: {
default () {
return true
}
},
autoReload: {
default () {
return true
@ -93,7 +98,9 @@
}
},
created() {
this.getDataList(true)
if(this.createReload) {
this.getDataList(true)
}
},
onHide() {