jufubao-mall 2.0.32-beta3 → 2.0.32-beta6
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
|
@@ -80,7 +80,12 @@
|
|
|
80
80
|
v-for="item in blessingData"
|
|
81
81
|
:key="item.id"
|
|
82
82
|
>
|
|
83
|
-
<input
|
|
83
|
+
<input
|
|
84
|
+
:maxlength="item.struct.maxlength||16"
|
|
85
|
+
:minlength="item.struct.minlength||0"
|
|
86
|
+
v-model="item.data"
|
|
87
|
+
placeholder-style="color: #ccc"
|
|
88
|
+
:placeholder="item.value || item.struct.placeholder" />
|
|
84
89
|
<view
|
|
85
90
|
class="media-input-tip"
|
|
86
91
|
v-if="item.struct && item.struct.explain"
|
|
@@ -397,7 +402,6 @@
|
|
|
397
402
|
if(this.$configProject['isPreview']) {
|
|
398
403
|
this.addressPid = 157696
|
|
399
404
|
}
|
|
400
|
-
|
|
401
405
|
await this.getCategoryList();
|
|
402
406
|
},
|
|
403
407
|
|
|
@@ -415,7 +419,7 @@
|
|
|
415
419
|
else this.parentId = categoryParent;
|
|
416
420
|
}
|
|
417
421
|
|
|
418
|
-
this.xnamespace = gCPVal(container, 'xnamespace', this.projectAttr.business_code||this.xnamespace);
|
|
422
|
+
this.xnamespace = 'ad5cb47e'//gCPVal(container, 'xnamespace', this.projectAttr.business_code||this.xnamespace);
|
|
419
423
|
this.showIndex = gCPVal(container, 'showIndex', 'Y');
|
|
420
424
|
this.nowBuyText = gCPVal(container, 'nowBuyText', '立即充值');
|
|
421
425
|
let showIndexIcon = 'iconshouye1';
|
|
@@ -766,6 +770,7 @@
|
|
|
766
770
|
}
|
|
767
771
|
else {
|
|
768
772
|
this.$xdHideLoading();
|
|
773
|
+
this.blessingData = [];
|
|
769
774
|
}
|
|
770
775
|
|
|
771
776
|
}).catch(err=>{
|
|
@@ -972,7 +977,8 @@
|
|
|
972
977
|
|
|
973
978
|
& > input {
|
|
974
979
|
padding: 20rpx;
|
|
975
|
-
background-color: #
|
|
980
|
+
background-color: #fff;
|
|
981
|
+
border: 1px solid #ccc;
|
|
976
982
|
height: 40rpx;
|
|
977
983
|
line-height: 40rpx;
|
|
978
984
|
border-radius: 16rpx;
|