Browse Source

修复购物车邮费满减

master
lincm 4 years ago
parent
commit
1103039d30
  1. 6
      pages/shippingCart/index.vue

6
pages/shippingCart/index.vue

@ -336,6 +336,7 @@
console.info(res) console.info(res)
if (res.error == 0) { if (res.error == 0) {
this.getList() this.getList()
this.getorder()
} }
}) })
}, },
@ -421,6 +422,7 @@
} else { } else {
this.getList() this.getList()
this.getorder()
} }
setTimeout(() => { setTimeout(() => {
uni.showToast({ uni.showToast({
@ -544,6 +546,7 @@
defaultRequest2(data).then(res => { defaultRequest2(data).then(res => {
if (res.error == 0) { if (res.error == 0) {
this.getList() this.getList()
this.getorder()
uni.startPullDownRefresh() uni.startPullDownRefresh()
uni.showToast({ uni.showToast({
icon: 'none', icon: 'none',
@ -579,6 +582,7 @@
this.outlist = [] this.outlist = []
this.getList() this.getList()
this.getorder()
uni.startPullDownRefresh() uni.startPullDownRefresh()
} }
@ -738,6 +742,7 @@
defaultRequest4(this.addQuery).then(res =>{ defaultRequest4(this.addQuery).then(res =>{
if(res.error ==0){ if(res.error ==0){
this.getList() this.getList()
this.getorder()
this.isCahnge = false this.isCahnge = false
} }
}) })
@ -770,6 +775,7 @@
}, },
onPullDownRefresh() { onPullDownRefresh() {
this.getList() this.getList()
this.getorder()
this.getCatList(0) this.getCatList(0)
setTimeout(function() { setTimeout(function() {

Loading…
Cancel
Save