jufubao-base 1.0.295 → 1.0.296-beta2

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jufubao-base",
3
- "version": "1.0.295",
3
+ "version": "1.0.296-beta2",
4
4
  "private": false,
5
5
  "description": "聚福宝业务组件基础插件包",
6
6
  "main": "index.js",
@@ -76,6 +76,16 @@
76
76
  </view>
77
77
  </view>
78
78
  </view>
79
+ </view>
80
+
81
+ <!-- 回寄地址 -->
82
+ <view class="refund_section" v-if="return_address">
83
+ <view class="sec_title">回寄地址</view>
84
+ <view class="sec_body">
85
+ <view style="color:#999999;word-break: break-all;">
86
+ {{return_address}}
87
+ </view>
88
+ </view>
79
89
  </view>
80
90
 
81
91
  <!-- 新商品 -->
@@ -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
  })