uu
This commit is contained in:
parent
15ef4e0283
commit
8ee6c8eca1
@ -170,6 +170,7 @@
|
||||
}, 300)
|
||||
},
|
||||
handleToolsRangChange(val) {
|
||||
this.rangeVal = val
|
||||
if(val == -1) {
|
||||
this.handleSwitchCladar()
|
||||
} else {
|
||||
|
||||
@ -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() {
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user