jufubao-base 1.0.196-beta102 → 1.0.196-beta103
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
|
@@ -220,7 +220,7 @@ export default {
|
|
|
220
220
|
addressList: null,
|
|
221
221
|
...styleForm.getDataItem(),
|
|
222
222
|
version: '',
|
|
223
|
-
|
|
223
|
+
cache_key: '',
|
|
224
224
|
layout_style: "old",
|
|
225
225
|
edit_icon: "",
|
|
226
226
|
delete_icon: "",
|
|
@@ -269,6 +269,9 @@ export default {
|
|
|
269
269
|
methods: {
|
|
270
270
|
onJfbLoad(options) {
|
|
271
271
|
let { back } = options;
|
|
272
|
+
if(options.cache_key) {
|
|
273
|
+
this.cache_key = options.cache_key
|
|
274
|
+
}
|
|
272
275
|
this.backStatus = back;
|
|
273
276
|
jfbRootExec("getVersion", {
|
|
274
277
|
vm: this,
|
|
@@ -307,7 +310,8 @@ export default {
|
|
|
307
310
|
jfbRootExec("getBaseAddressList", {
|
|
308
311
|
vm: this,
|
|
309
312
|
data: {
|
|
310
|
-
version: this.version
|
|
313
|
+
version: this.version,
|
|
314
|
+
cache_key: this.cache_key
|
|
311
315
|
},
|
|
312
316
|
})
|
|
313
317
|
.then((res) => {
|
|
@@ -414,6 +418,7 @@ export default {
|
|
|
414
418
|
data: {
|
|
415
419
|
address_nnid: address_nnid,
|
|
416
420
|
member_address: params,
|
|
421
|
+
cache_key: this.cache_key
|
|
417
422
|
},
|
|
418
423
|
})
|
|
419
424
|
.then((res) => {
|
|
@@ -439,6 +444,7 @@ export default {
|
|
|
439
444
|
vm: this,
|
|
440
445
|
data: {
|
|
441
446
|
member_address: params,
|
|
447
|
+
cache_key: this.cache_key
|
|
442
448
|
},
|
|
443
449
|
})
|
|
444
450
|
.then((res) => {
|
|
@@ -535,7 +541,8 @@ export default {
|
|
|
535
541
|
data: {
|
|
536
542
|
address_nnid: item.address_nnid,
|
|
537
543
|
is_select: "Y",
|
|
538
|
-
version: this.version
|
|
544
|
+
version: this.version,
|
|
545
|
+
cache_key: this.cache_key
|
|
539
546
|
},
|
|
540
547
|
})
|
|
541
548
|
.then((res) => {
|
|
@@ -613,7 +620,8 @@ export default {
|
|
|
613
620
|
vm: this,
|
|
614
621
|
data: {
|
|
615
622
|
address_nnid: item.address_nnid,
|
|
616
|
-
version: this.version
|
|
623
|
+
version: this.version,
|
|
624
|
+
cache_key: this.cache_key
|
|
617
625
|
},
|
|
618
626
|
})
|
|
619
627
|
.then(() => {
|
|
@@ -212,7 +212,7 @@
|
|
|
212
212
|
class="jfb-base-order-detail__body-delivery-bottom"
|
|
213
213
|
v-if="item.info && item.info.length > 0"
|
|
214
214
|
>
|
|
215
|
-
<view class="jfb-base-order-detail__body-delivery-bottom-title"
|
|
215
|
+
<view class="jfb-base-order-detail__body-delivery-bottom-title">{{item.service_name}}</view>
|
|
216
216
|
<view
|
|
217
217
|
v-for="(Ditem, Dindex) in item.info"
|
|
218
218
|
:key="Dindex"
|