jufubao-base 1.0.181-beta7 → 1.0.181-beta9
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
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
background: status === 'N' ? canReceiveBgColor : cannotReceiveBgColor,
|
|
22
22
|
}"
|
|
23
23
|
>
|
|
24
|
-
<view class="jfb-base-card-receive-cover__body" :style="bgStyle">
|
|
24
|
+
<view class="jfb-base-card-receive-cover__body" :style="[bgStyle]">
|
|
25
25
|
<view v-if="status === 'N'" class="content" :style="contentBgStyle">
|
|
26
26
|
<view class="content-info">{{ greeting }}</view>
|
|
27
27
|
</view>
|
|
@@ -93,13 +93,13 @@ export default {
|
|
|
93
93
|
border: "none",
|
|
94
94
|
});
|
|
95
95
|
},
|
|
96
|
-
contentBgStyle() {
|
|
97
|
-
return this.styleObjectToString({
|
|
96
|
+
contentBgStyle() {
|
|
97
|
+
return [this.styleObjectToString({
|
|
98
98
|
backgroundImage: "url(" + this.contentBg + ")",
|
|
99
99
|
backgroundRepeat: "no-repeat",
|
|
100
100
|
backgroundSize: "100% 100%",
|
|
101
101
|
color: this.mainColor,
|
|
102
|
-
});
|
|
102
|
+
})];
|
|
103
103
|
},
|
|
104
104
|
},
|
|
105
105
|
watch: {
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
<view class="remain_pay" v-if="payInfo.channel_amount > 0">
|
|
101
101
|
<view style="border-bottom: 2rpx solid #eee;" class="column-group">
|
|
102
102
|
<view class="column-item" style="padding: 30rpx 60rpx">
|
|
103
|
-
<view class="column_label"
|
|
103
|
+
<view class="column_label">仍需扣点<text class="label_sub">(可使用多张票券点数)</text></view>
|
|
104
104
|
<view class="column_value text-primary">
|
|
105
105
|
<xd-unit
|
|
106
106
|
:price="payInfo.channel_amount"
|
|
@@ -112,9 +112,9 @@
|
|
|
112
112
|
</view>
|
|
113
113
|
</view>
|
|
114
114
|
<view class="remain_header">
|
|
115
|
-
<view
|
|
115
|
+
<view>选择以下补差方式</view>
|
|
116
116
|
<view class="flex align-center text-primary">
|
|
117
|
-
<view class="margin-right"
|
|
117
|
+
<view class="margin-right">继续补差</view>
|
|
118
118
|
<xd-unit
|
|
119
119
|
:price="payInfo.channel_amount"
|
|
120
120
|
:is-show-icon="false"
|
|
@@ -150,7 +150,7 @@
|
|
|
150
150
|
type="primary"
|
|
151
151
|
radius="50rpx"
|
|
152
152
|
@click="doThirdPay"
|
|
153
|
-
|
|
153
|
+
>确认</xd-button>
|
|
154
154
|
</view>
|
|
155
155
|
</view>
|
|
156
156
|
</view>
|