...
|
...
|
@@ -187,24 +187,27 @@ export default { |
|
|
}
|
|
|
|
|
|
this.$yoho.auth()
|
|
|
.then(() => {
|
|
|
this.$store.commit('order/sellerAskOrder/SELLER_ASK_SET_PRODUCTINFO', {
|
|
|
goodImg: get(this.product, 'goods_list[0].image_list[0].image_url', ''),
|
|
|
colorName: get(this.product, 'goods_list[0].color_name', ''),
|
|
|
sizeName: get(this.selectedSize, 'size_name', '') ? get(this.selectedSize, 'size_name', '') + '码' : '',
|
|
|
goodPrice: get(this.selectedSize, 'bid_moster_price', ''),
|
|
|
productId: this.product.product_id,
|
|
|
bid_moster_price: get(this.selectedSize, 'bid_moster_price', ''),
|
|
|
});
|
|
|
|
|
|
// 跳转变现
|
|
|
this.$router.push({
|
|
|
name: 'sellAskOrder',
|
|
|
query: {
|
|
|
skup: get(this.selectedSize, 'bid_skup', 0),
|
|
|
price: get(this.selectedSize, 'bid_moster_price', 0),
|
|
|
}
|
|
|
});
|
|
|
.then((res) => {
|
|
|
if (res) {
|
|
|
this.$store.commit('order/sellerAskOrder/SELLER_ASK_SET_PRODUCTINFO', {
|
|
|
goodImg: get(this.product, 'goods_list[0].image_list[0].image_url', ''),
|
|
|
colorName: get(this.product, 'goods_list[0].color_name', ''),
|
|
|
sizeName: get(this.selectedSize, 'size_name', '') ? get(this.selectedSize, 'size_name', '') + '码' : '',
|
|
|
goodPrice: get(this.selectedSize, 'bid_moster_price', ''),
|
|
|
productId: this.product.product_id,
|
|
|
bid_moster_price: get(this.selectedSize, 'bid_moster_price', ''),
|
|
|
});
|
|
|
|
|
|
// 跳转变现
|
|
|
this.$router.push({
|
|
|
name: 'sellAskOrder',
|
|
|
query: {
|
|
|
skup: get(this.selectedSize, 'bid_skup', 0),
|
|
|
price: get(this.selectedSize, 'bid_moster_price', 0),
|
|
|
}
|
|
|
});
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
},
|
...
|
...
|
|