jufubao-base 1.0.243-beta207 → 1.0.243-beta209
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/components/JfbBaseAfterSales/JfbBaseAfterSales.vue +2 -1
- package/src/components/JfbBaseAfterSales/refundOrderInfo.vue +1 -1
- package/src/components/JfbBaseAfterSalesDetail/JfbBaseAfterSalesDetail.vue +2 -3
- package/src/components/JfbBaseAfterSalesList/JfbBaseAfterSalesList.vue +2 -0
- package/src/components/JfbBaseOrderDetail/JfbBaseOrderDetail.vue +2 -1
package/package.json
CHANGED
|
@@ -298,6 +298,7 @@
|
|
|
298
298
|
}
|
|
299
299
|
this.productList = product_list.map(item => {
|
|
300
300
|
item.product_thumb = getServiceUrl(item.product_thumb, 'size2');
|
|
301
|
+
item.max = item.product_num;
|
|
301
302
|
return item;
|
|
302
303
|
});
|
|
303
304
|
this.baseInfo = base_info;
|
|
@@ -317,7 +318,7 @@
|
|
|
317
318
|
})
|
|
318
319
|
},
|
|
319
320
|
toAfterSaleDetail(){
|
|
320
|
-
this.$xdUniHelper.
|
|
321
|
+
this.$xdUniHelper.redirectTo({
|
|
321
322
|
url: `${this.refundStepPath}?service_order_id=${this.last_service_order_id}`,
|
|
322
323
|
});
|
|
323
324
|
},
|
|
@@ -1062,7 +1062,8 @@ export default {
|
|
|
1062
1062
|
custom_content_container_id: this.cid,
|
|
1063
1063
|
is_show_jhd_code: Number(this.is_show),
|
|
1064
1064
|
is_show_product: this.is_show_product === "Y" ? 1 : 0,
|
|
1065
|
-
version: 'v2'
|
|
1065
|
+
version: 'v2',
|
|
1066
|
+
is_show_after_btn: this.showApplyAfter === 'Y' ? 1 : 0
|
|
1066
1067
|
},
|
|
1067
1068
|
})
|
|
1068
1069
|
.then((res) => {
|