|
@@ -111,7 +111,7 @@
|
|
|
<script type="text/ecmascript-6">
|
|
|
import BScroll from 'better-scroll'
|
|
|
import cartcontrol from '../cartcontrol/cartcontrol'
|
|
|
-import { Toast } from 'vant'
|
|
|
+import { Toast, Dialog } from 'vant'
|
|
|
import { mapGetters } from 'vuex'
|
|
|
import { apiCartList, apiCartClear, apiCartUpdate } from '../goods/api'
|
|
|
|
|
@@ -141,10 +141,9 @@ export default {
|
|
|
selectFoods: [],
|
|
|
pagenum: 1,
|
|
|
pagesize: 20,
|
|
|
- numFetchStatus: 0,
|
|
|
+ numFetchStatus: 0, // 购物车列表加载状态
|
|
|
arrFetchStatus: ['正在努力加载~', '到底了'],
|
|
|
- booFetchData: false,
|
|
|
- finished: false
|
|
|
+ booFetchData: false // 页面第一次获取数据是否成功
|
|
|
}
|
|
|
},
|
|
|
computed: {
|
|
@@ -202,7 +201,6 @@ export default {
|
|
|
this.pagesize = 20
|
|
|
this.numFetchStatus = 0
|
|
|
this.booFetchData = false
|
|
|
- this.finished = false
|
|
|
|
|
|
this.$nextTick(() => {
|
|
|
this.fetchCartList()
|
|
@@ -210,7 +208,7 @@ export default {
|
|
|
},
|
|
|
async fetchCartList () {
|
|
|
const { id } = this.objCurrentBarInfo
|
|
|
- if (this.finished) {
|
|
|
+ if (this.numFetchStatus === 1) {
|
|
|
return
|
|
|
}
|
|
|
try {
|
|
@@ -222,7 +220,7 @@ export default {
|
|
|
if (Array.isArray(list)) {
|
|
|
this.selectFoods = this.selectFoods.concat(list)
|
|
|
if (list.length <= 0) {
|
|
|
- this.finished = true
|
|
|
+ this.numFetchStatus = 1
|
|
|
}
|
|
|
this.$nextTick(() => {
|
|
|
if (!this.scroll) {
|
|
@@ -271,20 +269,26 @@ export default {
|
|
|
/*
|
|
|
* 清空购物车
|
|
|
* */
|
|
|
- async empty () {
|
|
|
+ empty () {
|
|
|
+ const vm = this
|
|
|
const { id } = this.objCurrentBarInfo
|
|
|
-
|
|
|
- this.selectFoods.forEach((food) => {
|
|
|
- food.product_num = 0
|
|
|
+ Dialog.confirm({
|
|
|
+ message: '清空购物车?'
|
|
|
+ }).then(async () => {
|
|
|
+ vm.selectFoods.forEach((food) => {
|
|
|
+ food.product_num = 0
|
|
|
+ })
|
|
|
+ try {
|
|
|
+ const { status, msg } = await apiCartClear(id)
|
|
|
+ if (status) {
|
|
|
+ vm.init()
|
|
|
+ } else {
|
|
|
+ Toast(msg)
|
|
|
+ }
|
|
|
+ } catch (err) {}
|
|
|
+ }).catch(() => {
|
|
|
+ // on cancel
|
|
|
})
|
|
|
- try {
|
|
|
- const { status, msg } = await apiCartClear(id)
|
|
|
- if (status) {
|
|
|
- this.init()
|
|
|
- } else {
|
|
|
- Toast(msg)
|
|
|
- }
|
|
|
- } catch (err) {}
|
|
|
},
|
|
|
pay () {
|
|
|
if (this.totalPrice < 1) {
|
|
@@ -340,7 +344,8 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
dropping (el, done) {
|
|
|
- // const rf = el.offsetHeight
|
|
|
+ /* eslint-disable no-unused-vars */
|
|
|
+ const rf = el.offsetHeight
|
|
|
this.$nextTick(() => {
|
|
|
el.style.webkitTransform = 'translate3d(0,0,0)'
|
|
|
el.style.transform = 'translate3d(0,0,0)'
|