优化购物车
This commit is contained in:
parent
0607292316
commit
778faddcd4
|
@ -83,52 +83,39 @@ export default {
|
|||
...mapState({
|
||||
cart: (state) => state.cart.cart,
|
||||
}),
|
||||
...mapGetters({
|
||||
isLogin: "user/isLogin",
|
||||
}),
|
||||
},
|
||||
onLoad() {
|
||||
if (!this.isLogin) {
|
||||
this.$store.commit("user/showLoginModal", true);
|
||||
return;
|
||||
}
|
||||
this.initPage();
|
||||
onLoad() {},
|
||||
async onShow() {
|
||||
await this.$store.dispatch("cart/update");
|
||||
this.list = [];
|
||||
this.cart.list.forEach((item) => {
|
||||
let goods = [];
|
||||
item.good.forEach((v) => {
|
||||
goods.push({
|
||||
id: v.gid,
|
||||
name: v.title,
|
||||
times: v.post_hits,
|
||||
cover: v.thumbnail,
|
||||
price: v.money,
|
||||
number: v.number,
|
||||
checked: false,
|
||||
});
|
||||
});
|
||||
this.list.push({
|
||||
name: item.cate,
|
||||
total: 0,
|
||||
list: goods,
|
||||
checked: false,
|
||||
canUse: false,
|
||||
});
|
||||
});
|
||||
},
|
||||
onShow() {},
|
||||
onReady() {},
|
||||
onReachBottom() {},
|
||||
onPullDownRefresh() {},
|
||||
onShareTimeline() {},
|
||||
onShareAppMessage() {},
|
||||
methods: {
|
||||
/**
|
||||
* 初始化页面
|
||||
*/
|
||||
async initPage(e) {
|
||||
await this.$store.dispatch("cart/update");
|
||||
this.list = [];
|
||||
this.cart.list.forEach((item) => {
|
||||
let goods = [];
|
||||
item.good.forEach((v) => {
|
||||
goods.push({
|
||||
id: v.gid,
|
||||
name: v.title,
|
||||
times: v.post_hits,
|
||||
cover: v.thumbnail,
|
||||
price: v.money,
|
||||
number: v.number,
|
||||
checked: false,
|
||||
});
|
||||
});
|
||||
this.list.push({
|
||||
name: item.cate,
|
||||
total: 0,
|
||||
list: goods,
|
||||
checked: false,
|
||||
canUse: false,
|
||||
});
|
||||
});
|
||||
},
|
||||
/**
|
||||
* 选中组
|
||||
*/
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
:animation="false"
|
||||
:x="position.x"
|
||||
:y="position.y"
|
||||
@click="toCartPage"
|
||||
@click="utils.toPage('/pages/service/cart')"
|
||||
>
|
||||
<view class="cart-icon">
|
||||
<text class="iconfont icon-gouwuche"></text>
|
||||
|
@ -47,6 +47,7 @@ export default {
|
|||
name: "service-cate",
|
||||
data() {
|
||||
return {
|
||||
utils: this.$utils,
|
||||
movableAreaStyle: {
|
||||
height: 0,
|
||||
bottom: 0,
|
||||
|
@ -178,11 +179,6 @@ export default {
|
|||
this.loadCate();
|
||||
}, 1000);
|
||||
},
|
||||
toCartPage() {
|
||||
if (this.briefCart.count > 0) {
|
||||
this.$utils.toPage("/pages/service/cart");
|
||||
}
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
|
|
@ -158,9 +158,12 @@ export default {
|
|||
this.appraise.total = this.appraise.cate[0].count;
|
||||
this.changeAppraiseCate(this.appraise.cate[0], 0);
|
||||
});
|
||||
this.initPage();
|
||||
},
|
||||
onShow() {},
|
||||
onShow() {
|
||||
if (this.isLogin) {
|
||||
this.$store.dispatch("cart/update");
|
||||
}
|
||||
},
|
||||
onReady() {},
|
||||
onReachBottom() {
|
||||
if (this.tabIndex == 0) return;
|
||||
|
@ -170,14 +173,6 @@ export default {
|
|||
onShareTimeline() {},
|
||||
onShareAppMessage() {},
|
||||
methods: {
|
||||
/**
|
||||
* 初始化页面
|
||||
*/
|
||||
initPage() {
|
||||
if (this.isLogin) {
|
||||
this.$store.dispatch("cart/update");
|
||||
}
|
||||
},
|
||||
/**
|
||||
* 分享
|
||||
*/
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
/>
|
||||
</view>
|
||||
<view class="common-bottom-components" :style="{ paddingBottom: pageConfig.safeAreaInsets.bottom + 'px' }">
|
||||
<view class="cart" @click="toCartPage">
|
||||
<view class="cart" @click="utils.toPage('/pages/service/cart')">
|
||||
<view class="cart-icon">
|
||||
<text class="iconfont icon-gouwuche"></text>
|
||||
</view>
|
||||
|
@ -34,6 +34,7 @@ export default {
|
|||
name: "service-list",
|
||||
data() {
|
||||
return {
|
||||
utils: this.$utils,
|
||||
pageConfig: {},
|
||||
data: [],
|
||||
currentId: 0,
|
||||
|
@ -50,31 +51,26 @@ export default {
|
|||
}),
|
||||
},
|
||||
onLoad(e) {
|
||||
this.initPage(e);
|
||||
this.pageConfig = getApp().globalData.pageConfig;
|
||||
if (!e.id) {
|
||||
return this.$utils.toast("参数错误");
|
||||
}
|
||||
this.currentId = e.id;
|
||||
// 初始化列表
|
||||
this.data = [];
|
||||
this.loadList(this.currentId);
|
||||
},
|
||||
onShow() {
|
||||
if (this.isLogin) {
|
||||
this.$store.dispatch("cart/update");
|
||||
}
|
||||
},
|
||||
onShow() {},
|
||||
onReady() {},
|
||||
onReachBottom() {},
|
||||
onPullDownRefresh() {},
|
||||
onShareTimeline() {},
|
||||
onShareAppMessage() {},
|
||||
methods: {
|
||||
/**
|
||||
* 初始化页面
|
||||
*/
|
||||
initPage(e) {
|
||||
this.pageConfig = getApp().globalData.pageConfig;
|
||||
if (this.isLogin) {
|
||||
this.$store.dispatch("cart/update");
|
||||
}
|
||||
if (!e.id) {
|
||||
return this.$utils.toast("参数错误");
|
||||
}
|
||||
this.currentId = e.id;
|
||||
// 初始化列表
|
||||
this.data = [];
|
||||
this.loadList(this.currentId);
|
||||
},
|
||||
/**
|
||||
* 加载列表
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue