个人中心

This commit is contained in:
2020-06-19 18:07:11 +08:00
parent f0244f8077
commit 7e71f97e01
12 changed files with 182 additions and 55 deletions

View File

@@ -73,7 +73,18 @@ export default {
checkedAll: false
}
},
onLoad() {
this.getCartList();
},
methods: {
getCartList() {
this.$u.api.getCartList().then((res)=>{
if (res.errCode == 0) {
console.log(res);
}
})
},
reduce(value, store) {
console.log(value, store)
},