jufubao-base 1.0.275 → 1.0.276
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
|
@@ -7,6 +7,17 @@ export default {
|
|
|
7
7
|
style: [],
|
|
8
8
|
content: (data) => {
|
|
9
9
|
return [
|
|
10
|
+
{
|
|
11
|
+
label: "是否展示优先支付账户:",
|
|
12
|
+
ele: "xd-radio",
|
|
13
|
+
valueKey: "isShowPaySoft",
|
|
14
|
+
value: data.isShowPaySoft || "N",
|
|
15
|
+
groupKey: "content",
|
|
16
|
+
list: [
|
|
17
|
+
{ label: "展示", value: "Y" },
|
|
18
|
+
{ label: "不展示", value: "N" }
|
|
19
|
+
]
|
|
20
|
+
},
|
|
10
21
|
{
|
|
11
22
|
label: '背景图片:', //label
|
|
12
23
|
ele: 'xd-upload', //package 名称
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
</view>
|
|
73
73
|
|
|
74
74
|
<view class="code-refresh">{{expiration_sec_str}}后自动更新</view>
|
|
75
|
-
<view class="pay_way">
|
|
75
|
+
<view v-if="isShowPaySoft === 'Y'" class="pay_way">
|
|
76
76
|
<view class="pay_title">此二维码优先使用以下账户进行支付</view>
|
|
77
77
|
<view class="pay_select" @click="showSortDialog">
|
|
78
78
|
<view>{{ curPaySelectShow }}</view>
|
|
@@ -249,6 +249,7 @@
|
|
|
249
249
|
tempList: [],
|
|
250
250
|
|
|
251
251
|
bodyBgImg: "",
|
|
252
|
+
isShowPaySoft: "N",
|
|
252
253
|
}
|
|
253
254
|
},
|
|
254
255
|
watch: {
|
|
@@ -398,7 +399,8 @@
|
|
|
398
399
|
).value;
|
|
399
400
|
this.cityPath = getContainerPropsValue(container, 'content.cityPath', { value: "" }
|
|
400
401
|
).value;
|
|
401
|
-
this.bodyBgImg = getServiceUrl(getContainerPropsValue(container, 'content.bodyBgImg', {url: ""}).url)
|
|
402
|
+
this.bodyBgImg = getServiceUrl(getContainerPropsValue(container, 'content.bodyBgImg', {url: ""}).url);
|
|
403
|
+
this.isShowPaySoft = getContainerPropsValue(container, 'content.isShowPaySoft', "N");
|
|
402
404
|
},
|
|
403
405
|
handleSortClose(){
|
|
404
406
|
this.deductDialog = false;
|
|
@@ -1102,7 +1104,7 @@
|
|
|
1102
1104
|
color: #333333;
|
|
1103
1105
|
text-align: center;
|
|
1104
1106
|
padding-top: 40rpx;
|
|
1105
|
-
margin-top: 40rpx;
|
|
1107
|
+
// margin-top: 40rpx;
|
|
1106
1108
|
border-top: 1px dashed rgba(229, 229, 229, 1);
|
|
1107
1109
|
|
|
1108
1110
|
&>text:first-child {
|