jufubao-base 1.0.197-beta3 → 1.0.197-beta5
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/JfbBaseAddress/JfbBaseAddress.vue +4 -13
- package/src/components/JfbBaseCardEntry/Attr.js +472 -443
- package/src/components/JfbBaseCardEntry/JfbBaseCardEntry.vue +123 -98
- package/src/components/JfbBaseCardEntry/Mock.js +1 -0
- package/src/components/JfbBaseCardEntry/XdCardNew.vue +124 -0
- package/src/components/JfbBaseHeader/Attr.js +129 -53
- package/src/components/JfbBaseHeader/JfbBaseHeader.vue +98 -30
- package/src/components/JfbBaseHeaderElephant/Api.js +22 -0
- package/src/components/JfbBaseHeaderElephant/Attr.js +496 -0
- package/src/components/JfbBaseHeaderElephant/JfbBaseHeaderElephant.vue +453 -0
- package/src/components/JfbBaseHeaderElephant/JfbBaseHeaderElephantLess.less +79 -0
- package/src/components/JfbBaseHeaderElephant/JfbBaseHeaderElephantMixin.js +30 -0
- package/src/components/JfbBaseHeaderElephant/Mock.js +5 -0
- package/src/components/JfbBaseNotice/Attr.js +26 -0
- package/src/components/JfbBaseNotice/JfbBaseNotice.vue +13 -1
- package/src/components/JfbBaseOrderDetail/JfbBaseOrderDetail.vue +1 -1
- package/src/components/JfbBaseUserInfo/Attr.js +136 -2
- package/src/components/JfbBaseUserInfo/JfbBaseUserInfo.vue +107 -17
package/package.json
CHANGED
|
@@ -184,8 +184,7 @@ export default {
|
|
|
184
184
|
location_url: "",
|
|
185
185
|
addressList: null,
|
|
186
186
|
...styleForm.getDataItem(),
|
|
187
|
-
version: ''
|
|
188
|
-
cache_key: ''
|
|
187
|
+
version: ''
|
|
189
188
|
};
|
|
190
189
|
},
|
|
191
190
|
filters: {
|
|
@@ -215,9 +214,6 @@ export default {
|
|
|
215
214
|
methods: {
|
|
216
215
|
onJfbLoad(options) {
|
|
217
216
|
let { back } = options;
|
|
218
|
-
if(options.cache_key) {
|
|
219
|
-
this.cache_key = options.cache_key
|
|
220
|
-
}
|
|
221
217
|
this.backStatus = back;
|
|
222
218
|
jfbRootExec("getVersion", {
|
|
223
219
|
vm: this,
|
|
@@ -246,8 +242,7 @@ export default {
|
|
|
246
242
|
jfbRootExec("getBaseAddressList", {
|
|
247
243
|
vm: this,
|
|
248
244
|
data: {
|
|
249
|
-
version: this.version
|
|
250
|
-
cache_key: this.cache_key
|
|
245
|
+
version: this.version
|
|
251
246
|
},
|
|
252
247
|
})
|
|
253
248
|
.then((res) => {
|
|
@@ -354,7 +349,6 @@ export default {
|
|
|
354
349
|
data: {
|
|
355
350
|
address_nnid: address_nnid,
|
|
356
351
|
member_address: params,
|
|
357
|
-
cache_key: this.cache_key
|
|
358
352
|
},
|
|
359
353
|
})
|
|
360
354
|
.then((res) => {
|
|
@@ -380,7 +374,6 @@ export default {
|
|
|
380
374
|
vm: this,
|
|
381
375
|
data: {
|
|
382
376
|
member_address: params,
|
|
383
|
-
cache_key: this.cache_key
|
|
384
377
|
},
|
|
385
378
|
})
|
|
386
379
|
.then((res) => {
|
|
@@ -477,8 +470,7 @@ export default {
|
|
|
477
470
|
data: {
|
|
478
471
|
address_nnid: item.address_nnid,
|
|
479
472
|
is_select: "Y",
|
|
480
|
-
version: this.version
|
|
481
|
-
cache_key: this.cache_key
|
|
473
|
+
version: this.version
|
|
482
474
|
},
|
|
483
475
|
})
|
|
484
476
|
.then((res) => {
|
|
@@ -544,8 +536,7 @@ export default {
|
|
|
544
536
|
vm: this,
|
|
545
537
|
data: {
|
|
546
538
|
address_nnid: item.address_nnid,
|
|
547
|
-
version: this.version
|
|
548
|
-
cache_key: this.cache_key
|
|
539
|
+
version: this.version
|
|
549
540
|
},
|
|
550
541
|
})
|
|
551
542
|
.then(() => {
|