|
@@ -142,7 +142,8 @@ export default {
|
|
|
pagesize: 100,
|
|
|
numFetchStatus: 0, // 购物车列表加载状态
|
|
|
arrFetchStatus: ['正在努力加载~', '到底了'],
|
|
|
- booFetchData: false // 页面第一次获取数据是否成功
|
|
|
+ booFetchData: false, // 页面第一次获取数据是否成功
|
|
|
+ isFetchLock: false // 接口调用加锁
|
|
|
}
|
|
|
},
|
|
|
computed: {
|
|
@@ -201,6 +202,7 @@ export default {
|
|
|
this.pagesize = 100
|
|
|
this.numFetchStatus = 0
|
|
|
this.booFetchData = false
|
|
|
+ this.isFetchLock = false
|
|
|
|
|
|
this.$nextTick(() => {
|
|
|
this.fetchCartList()
|
|
@@ -211,6 +213,10 @@ export default {
|
|
|
if (this.numFetchStatus === 1) {
|
|
|
return
|
|
|
}
|
|
|
+ if (this.isFetchLock) {
|
|
|
+ return
|
|
|
+ }
|
|
|
+ this.isFetchLock = true
|
|
|
try {
|
|
|
const { status, msg, data } = await apiCartList(id, this.pagenum, this.pagesize)
|
|
|
if (status) {
|
|
@@ -219,7 +225,7 @@ export default {
|
|
|
this.booFetchData = true
|
|
|
if (Array.isArray(list)) {
|
|
|
this.selectFoods = this.selectFoods.concat(list)
|
|
|
- if (list.length <= 0) {
|
|
|
+ if (list.length < this.pagesize) {
|
|
|
this.numFetchStatus = 1
|
|
|
}
|
|
|
this.$nextTick(() => {
|
|
@@ -244,7 +250,10 @@ export default {
|
|
|
} else {
|
|
|
Toast(msg)
|
|
|
}
|
|
|
- } catch (err) {}
|
|
|
+ this.isFetchLock = false
|
|
|
+ } catch (err) {
|
|
|
+ this.isFetchLock = false
|
|
|
+ }
|
|
|
},
|
|
|
drop (el) {
|
|
|
for (let i = 0; i < this.balls.length; i++) {
|