|
@@ -4,6 +4,21 @@
|
|
|
class="wrapper"
|
|
|
ref="shopsWrapper">
|
|
|
<ul>
|
|
|
+ <li
|
|
|
+ :class="{'static': isRefresh}"
|
|
|
+ class="pulldown-wrapper">
|
|
|
+ <van-loading
|
|
|
+ v-show="isRefresh"
|
|
|
+ size="24px"
|
|
|
+ type="spinner">加载中...
|
|
|
+ </van-loading>
|
|
|
+ <div
|
|
|
+ v-show="!isRefresh"
|
|
|
+ class="van-loading">
|
|
|
+ <span
|
|
|
+ class="van-loading__text">下拉刷新</span>
|
|
|
+ </div>
|
|
|
+ </li>
|
|
|
<!--首屏只展示前3个-->
|
|
|
<li
|
|
|
v-for="(item, index) in shops.slice(0, 3)"
|
|
@@ -37,6 +52,7 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
+import { Loading } from 'vant'
|
|
|
import BScroll from 'better-scroll'
|
|
|
import Mall from './mall'
|
|
|
import { getHomeList } from './api'
|
|
@@ -44,16 +60,19 @@ import { getHomeList } from './api'
|
|
|
export default {
|
|
|
name: 'index',
|
|
|
components: {
|
|
|
+ 'van-loading': Loading,
|
|
|
Mall
|
|
|
},
|
|
|
data () {
|
|
|
return {
|
|
|
+ isRefresh: false, // 是否下拉刷新
|
|
|
shopsScroll: null,
|
|
|
shops: []
|
|
|
}
|
|
|
},
|
|
|
activated () {
|
|
|
if (!this.$route.meta.isUseCache) {
|
|
|
+ this.isRefresh = false
|
|
|
this.fetchData()
|
|
|
} else {
|
|
|
if (this.shopsScroll) {
|
|
@@ -65,7 +84,15 @@ export default {
|
|
|
_initScroll () {
|
|
|
this.shopsScroll = new BScroll(this.$refs.shopsWrapper, {
|
|
|
click: true,
|
|
|
- probeType: 3
|
|
|
+ pullDownRefresh: {
|
|
|
+ threshold: 50, // 顶部下拉的距离
|
|
|
+ stop: 0 // 回弹停留的距离
|
|
|
+ },
|
|
|
+ scrollbar: true
|
|
|
+ })
|
|
|
+
|
|
|
+ this.shopsScroll.on('pullingDown', () => {
|
|
|
+ this.onRefresh()
|
|
|
})
|
|
|
},
|
|
|
handleJump (shop) {
|
|
@@ -74,10 +101,19 @@ export default {
|
|
|
handleShowMall () {
|
|
|
this.shops.length && this.$refs.myMall.show()
|
|
|
},
|
|
|
+ onRefresh () {
|
|
|
+ this.isRefresh = true
|
|
|
+ this.fetchData()
|
|
|
+ },
|
|
|
async fetchData () {
|
|
|
try {
|
|
|
const { status, data } = await getHomeList()
|
|
|
if (status) {
|
|
|
+ // 下拉刷新数据清空
|
|
|
+ if (this.isRefresh) {
|
|
|
+ this.isRefresh = false
|
|
|
+ this.shops = []
|
|
|
+ }
|
|
|
if (Array.isArray(data)) {
|
|
|
this.shops = data
|
|
|
}
|
|
@@ -90,6 +126,12 @@ export default {
|
|
|
},
|
|
|
beforeDestroy () {
|
|
|
this.shopsScroll && this.shopsScroll.destroy()
|
|
|
+ },
|
|
|
+ beforeRouteLeave (to, form, next) {
|
|
|
+ if (['MarketingReturn', 'MarketingMake'].findIndex(item => item === to.name) > -1) {
|
|
|
+ form.meta.isUseCache = true
|
|
|
+ }
|
|
|
+ next()
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
@@ -123,6 +165,21 @@ export default {
|
|
|
top: 0;
|
|
|
width: 365px;
|
|
|
margin-bottom: 28px;
|
|
|
+
|
|
|
+ &.pulldown-wrapper {
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ top: -43px;
|
|
|
+ width: 100%;
|
|
|
+ text-align: center;
|
|
|
+ margin-bottom: 10px;
|
|
|
+
|
|
|
+ &.static {
|
|
|
+ position: static;
|
|
|
+ left: 0;
|
|
|
+ top: 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|