jufubao-base 1.0.242-beta2 → 1.0.242-beta3
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
|
@@ -24,7 +24,6 @@
|
|
|
24
24
|
<view class="column_value text-gray">
|
|
25
25
|
<xd-unit
|
|
26
26
|
:price="payInfo.total_amount"
|
|
27
|
-
:isShowIcon="isShowIcon"
|
|
28
27
|
:isOld="false"
|
|
29
28
|
:font-size="28"
|
|
30
29
|
:icon-size="0.28"
|
|
@@ -40,7 +39,6 @@
|
|
|
40
39
|
<!-- <xd-button width="220rpx" radius="60rpx" type="primary" size="small" @click="xdDownDrawer=true">使用新票券</xd-button> -->
|
|
41
40
|
<xd-unit
|
|
42
41
|
:price="payInfo.card_amount"
|
|
43
|
-
:isShowIcon="isShowIcon"
|
|
44
42
|
:isOld="false"
|
|
45
43
|
:font-size="28"
|
|
46
44
|
:icon-size="0.28"
|
|
@@ -106,7 +104,6 @@
|
|
|
106
104
|
<view class="column_value text-primary">
|
|
107
105
|
<xd-unit
|
|
108
106
|
:price="payInfo.channel_amount"
|
|
109
|
-
:isShowIcon="isShowIcon"
|
|
110
107
|
:isOld="false"
|
|
111
108
|
:font-size="28"
|
|
112
109
|
:icon-size="0.28"
|
|
@@ -247,10 +244,6 @@ export default {
|
|
|
247
244
|
}
|
|
248
245
|
return url
|
|
249
246
|
},
|
|
250
|
-
isShowIcon() {
|
|
251
|
-
if(this.$configProject['isPreview']) return true;
|
|
252
|
-
return this.siteInfo.mapping.is_show_coin_icon==='Y'
|
|
253
|
-
},
|
|
254
247
|
...styleForm.getComputedItem(),
|
|
255
248
|
},
|
|
256
249
|
created() {
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
</view>
|
|
26
26
|
|
|
27
27
|
<view v-if="showShare" class="share_wrap">
|
|
28
|
-
<button class="share_btn" open-type="share" @click="toSendWx"
|
|
29
|
-
|
|
28
|
+
<button class="share_btn" open-type="share" @click="toSendWx">
|
|
29
|
+
<image :src="shareImage" mode="widthFix"></image>
|
|
30
30
|
</button>
|
|
31
|
-
<view class="share_btn" @click="toSaveImg"
|
|
32
|
-
|
|
31
|
+
<view class="share_btn" @click="toSaveImg">
|
|
32
|
+
<image :src="savaImage" mode="widthFix"></image>
|
|
33
33
|
</view>
|
|
34
34
|
</view>
|
|
35
35
|
|
|
@@ -245,16 +245,19 @@
|
|
|
245
245
|
}
|
|
246
246
|
.share_wrap{
|
|
247
247
|
display: flex;
|
|
248
|
-
align-items: center;
|
|
248
|
+
// align-items: center;
|
|
249
|
+
align-items: flex-start;
|
|
249
250
|
justify-content: center;
|
|
250
251
|
.share_btn{
|
|
251
252
|
width: 300rpx;
|
|
252
|
-
height: 80rpx;
|
|
253
|
+
// height: 80rpx;
|
|
253
254
|
background-size: 100% 100%;
|
|
254
255
|
background-color: transparent;
|
|
255
256
|
margin: 60rpx 0 0 0;
|
|
257
|
+
padding: 0;
|
|
256
258
|
&::after{
|
|
257
259
|
border: none !important;
|
|
260
|
+
content: initial !important;
|
|
258
261
|
}
|
|
259
262
|
image{
|
|
260
263
|
width: 100%;
|