jufubao-base 1.0.169-beta10 → 1.0.169-beta11
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
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
partnerName: "",
|
|
111
111
|
useSearch: "N", //Y:用于搜索; N:用于跳转搜索页面
|
|
112
112
|
searchPagePath: "",
|
|
113
|
-
placeholder: "
|
|
113
|
+
placeholder: "请输入关键词",
|
|
114
114
|
choseCityPath: "", //选择城市i
|
|
115
115
|
|
|
116
116
|
|
|
@@ -166,7 +166,7 @@
|
|
|
166
166
|
this.showBack = getContainerPropsValue(container, "content.showBack", "Y");
|
|
167
167
|
this.showPartner = getContainerPropsValue(container, "content.showPartner", "N")
|
|
168
168
|
this.showPartnerName = getContainerPropsValue(container, "content.showPartnerName", "N");
|
|
169
|
-
this.placeholder = getContainerPropsValue(container, "content.placeholder");
|
|
169
|
+
this.placeholder = getContainerPropsValue(container, "content.placeholder",'请输入关键词');
|
|
170
170
|
this.useSearch = getContainerPropsValue(container, "content.useSearch", "Y");
|
|
171
171
|
this.searchPagePath = getContainerPropsValue(container, "content.searchPagePath", {value:""}).value;
|
|
172
172
|
this.choseCityPath = getContainerPropsValue(container, "content.choseCityPath", {value:""}).value;
|
|
@@ -631,7 +631,7 @@ export default {
|
|
|
631
631
|
valueKey: 'my_card_url',
|
|
632
632
|
groupKey: 'advanced',
|
|
633
633
|
placeholder: '请选择我的票券跳转地址',
|
|
634
|
-
value: null,
|
|
634
|
+
value: data.my_card_url || null,
|
|
635
635
|
setting: {
|
|
636
636
|
router: XdBus.getParentApi('getPagesTree'),
|
|
637
637
|
},
|
|
@@ -643,7 +643,7 @@ export default {
|
|
|
643
643
|
valueKey: 'back_url',
|
|
644
644
|
groupKey: 'advanced',
|
|
645
645
|
placeholder: '请选择卡绑定成功回跳地址',
|
|
646
|
-
value: null,
|
|
646
|
+
value: data.back_url || null,
|
|
647
647
|
setting: {
|
|
648
648
|
router: XdBus.getParentApi('getPagesTree'),
|
|
649
649
|
},
|
|
@@ -248,12 +248,12 @@
|
|
|
248
248
|
return bg
|
|
249
249
|
},
|
|
250
250
|
listColWrapBoxStyle(){
|
|
251
|
-
let
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
251
|
+
let padding = `${this.checkValue(this.listColMargin.top, 20)}rpx`;
|
|
252
|
+
padding = `${padding} ${this.checkValue(this.listColMargin.right, 20)}rpx`;
|
|
253
|
+
padding = `${padding} ${this.checkValue(this.listColMargin.bottom, 20)}rpx`;
|
|
254
|
+
padding = `${padding} ${this.checkValue(this.listColMargin.left, 20)}rpx`;
|
|
255
255
|
return this.styleObjectToString({
|
|
256
|
-
|
|
256
|
+
padding: padding,
|
|
257
257
|
})
|
|
258
258
|
},
|
|
259
259
|
listColItemStyle(){
|
|
@@ -652,7 +652,6 @@
|
|
|
652
652
|
}
|
|
653
653
|
}
|
|
654
654
|
.list_col_wrap{
|
|
655
|
-
margin: 40rpx 0;
|
|
656
655
|
|
|
657
656
|
.list_item{
|
|
658
657
|
display: flex;
|