This commit is contained in:
java110 2020-11-03 15:03:23 +08:00
parent 19b3a10e62
commit 135f584eb0

View File

@ -153,7 +153,6 @@ export default {
}, },
methods: { methods: {
...mapActions(['addCartGoods', 'getCartList']),
jump(path, parmas) { jump(path, parmas) {
this.$Router.push({ this.$Router.push({
path: path, path: path,
@ -271,6 +270,11 @@ export default {
return true; return true;
} }
} }
},
addCartGoods:function(_confirmGoodsList){
return new Promise((resolve, reject) => {
console.log('_confirmGoodsList',_confirmGoodsList)
})
} }
} }
}; };