jufubao-base 1.0.295 → 1.0.296-beta1
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
CHANGED
|
@@ -78,6 +78,16 @@
|
|
|
78
78
|
</view>
|
|
79
79
|
</view>
|
|
80
80
|
|
|
81
|
+
<!-- 物流信息、退款明细 -->
|
|
82
|
+
<view class="refund_section" v-if="return_address">
|
|
83
|
+
<view class="sec_title">回寄地址</view>
|
|
84
|
+
<view class="sec_body">
|
|
85
|
+
<view class="sec_item">
|
|
86
|
+
{{return_address}}
|
|
87
|
+
</view>
|
|
88
|
+
</view>
|
|
89
|
+
</view>
|
|
90
|
+
|
|
81
91
|
<!-- 新商品 -->
|
|
82
92
|
<view v-if="newProductList.length" class="refund_section">
|
|
83
93
|
<view class="sec_title">
|
|
@@ -161,6 +171,7 @@
|
|
|
161
171
|
after_sale_method: "",
|
|
162
172
|
loaded: false,
|
|
163
173
|
serviceListPath: "",
|
|
174
|
+
return_address:'',
|
|
164
175
|
}
|
|
165
176
|
},
|
|
166
177
|
computed: {
|
|
@@ -261,6 +272,8 @@
|
|
|
261
272
|
item.key = 'price';
|
|
262
273
|
return item;
|
|
263
274
|
});
|
|
275
|
+
//回寄地址
|
|
276
|
+
this.return_address = res.return_address;
|
|
264
277
|
|
|
265
278
|
this.loaded = true;
|
|
266
279
|
})
|