jufubao-base 1.0.196 → 1.0.197-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
|
@@ -184,7 +184,8 @@ export default {
|
|
|
184
184
|
location_url: "",
|
|
185
185
|
addressList: null,
|
|
186
186
|
...styleForm.getDataItem(),
|
|
187
|
-
version: ''
|
|
187
|
+
version: '',
|
|
188
|
+
cache_key: ''
|
|
188
189
|
};
|
|
189
190
|
},
|
|
190
191
|
filters: {
|
|
@@ -214,6 +215,9 @@ export default {
|
|
|
214
215
|
methods: {
|
|
215
216
|
onJfbLoad(options) {
|
|
216
217
|
let { back } = options;
|
|
218
|
+
if(options.cache_key) {
|
|
219
|
+
this.cache_key = options.cache_key
|
|
220
|
+
}
|
|
217
221
|
this.backStatus = back;
|
|
218
222
|
jfbRootExec("getVersion", {
|
|
219
223
|
vm: this,
|
|
@@ -242,7 +246,8 @@ export default {
|
|
|
242
246
|
jfbRootExec("getBaseAddressList", {
|
|
243
247
|
vm: this,
|
|
244
248
|
data: {
|
|
245
|
-
version: this.version
|
|
249
|
+
version: this.version,
|
|
250
|
+
cache_key: this.cache_key
|
|
246
251
|
},
|
|
247
252
|
})
|
|
248
253
|
.then((res) => {
|
|
@@ -349,6 +354,7 @@ export default {
|
|
|
349
354
|
data: {
|
|
350
355
|
address_nnid: address_nnid,
|
|
351
356
|
member_address: params,
|
|
357
|
+
cache_key: this.cache_key
|
|
352
358
|
},
|
|
353
359
|
})
|
|
354
360
|
.then((res) => {
|
|
@@ -374,6 +380,7 @@ export default {
|
|
|
374
380
|
vm: this,
|
|
375
381
|
data: {
|
|
376
382
|
member_address: params,
|
|
383
|
+
cache_key: this.cache_key
|
|
377
384
|
},
|
|
378
385
|
})
|
|
379
386
|
.then((res) => {
|
|
@@ -470,7 +477,8 @@ export default {
|
|
|
470
477
|
data: {
|
|
471
478
|
address_nnid: item.address_nnid,
|
|
472
479
|
is_select: "Y",
|
|
473
|
-
version: this.version
|
|
480
|
+
version: this.version,
|
|
481
|
+
cache_key: this.cache_key
|
|
474
482
|
},
|
|
475
483
|
})
|
|
476
484
|
.then((res) => {
|
|
@@ -536,7 +544,8 @@ export default {
|
|
|
536
544
|
vm: this,
|
|
537
545
|
data: {
|
|
538
546
|
address_nnid: item.address_nnid,
|
|
539
|
-
version: this.version
|
|
547
|
+
version: this.version,
|
|
548
|
+
cache_key: this.cache_key
|
|
540
549
|
},
|
|
541
550
|
})
|
|
542
551
|
.then(() => {
|
|
@@ -222,6 +222,23 @@
|
|
|
222
222
|
<view v-html="Ditem.value"></view>
|
|
223
223
|
</view>
|
|
224
224
|
</view>
|
|
225
|
+
<view
|
|
226
|
+
class="jfb-base-order-detail__body-delivery-bottom"
|
|
227
|
+
v-if="item.pick_up_addr_info && item.pick_up_addr_info.length > 0"
|
|
228
|
+
>
|
|
229
|
+
<view class="jfb-base-order-detail__body-delivery-bottom-title">预约信息</view>
|
|
230
|
+
<view
|
|
231
|
+
v-for="(Ditem, Dindex) in item.pick_up_addr_info"
|
|
232
|
+
:key="Dindex"
|
|
233
|
+
class="jfb-base-order-detail__body-delivery-bottom-item"
|
|
234
|
+
>
|
|
235
|
+
<view style="width: 130rpx;display: flex;">
|
|
236
|
+
<view v-html="Ditem.label"></view>
|
|
237
|
+
<text v-if="Ditem.label">:</text>
|
|
238
|
+
</view>
|
|
239
|
+
<view v-html="Ditem.value"></view>
|
|
240
|
+
</view>
|
|
241
|
+
</view>
|
|
225
242
|
</view>
|
|
226
243
|
</view>
|
|
227
244
|
<view
|