...
|
...
|
@@ -3,7 +3,7 @@ |
|
|
<ScrollView ref="scroll" :observe-dom="false" :pull-up-load="true" @pullingUp="onPullingUp" @pullingDown="onPullingDown">
|
|
|
<div class="order-page">
|
|
|
<div class="title">出售中</div>
|
|
|
<div class="product">
|
|
|
<div class="product" @click="onClickProduct">
|
|
|
<ImgSize class="pro-img" :src="productInfo.imageUrl" :width="200" :height="200"></ImgSize>
|
|
|
<div class="pro-info">
|
|
|
<p class="pro-name">{{productInfo.productName}}</p>
|
...
|
...
|
@@ -72,6 +72,12 @@ export default { |
|
|
methods: {
|
|
|
...mapMutations(['MERGE_CHANGEPRICE_DATA']),
|
|
|
...mapActions(['fetchProduct', 'postChangePrice', 'postNoSale']),
|
|
|
onClickProduct() {
|
|
|
this.$yoho.goPage('go.ufo', {
|
|
|
pagename: 'productDetail',
|
|
|
productId: this.$route.params.orderId,
|
|
|
});
|
|
|
},
|
|
|
async onPullingUp() {
|
|
|
const beginCount = this.skcs.length;
|
|
|
|
...
|
...
|
|