jufubao-third 1.0.7-beta2 → 1.0.7-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
|
@@ -15,22 +15,24 @@
|
|
|
15
15
|
<!-- #endif -->
|
|
16
16
|
<view class="jfb-third-pay__body">
|
|
17
17
|
<view class="column-group">
|
|
18
|
-
<view
|
|
19
|
-
<view
|
|
20
|
-
|
|
21
|
-
<
|
|
18
|
+
<view style="margin: 20rpx 0;">
|
|
19
|
+
<view class="column-item noBorder">
|
|
20
|
+
<view v-if="product_total_price" class="column_label">商品总额</view>
|
|
21
|
+
<view class="column_value text-gray">
|
|
22
|
+
<xd-unit :price="product_total_price" :isOld="false" :font-size="24" :icon-size="0.3"></xd-unit>
|
|
23
|
+
</view>
|
|
22
24
|
</view>
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
25
|
+
<view v-if="servicePrice" class="column-item noBorder">
|
|
26
|
+
<view class="column_label" style="color: #333;">平台服务费总额</view>
|
|
27
|
+
<view class="column_value text-gray">
|
|
28
|
+
<xd-unit :price="servicePrice" :isOld="false" :font-size="24" :icon-size="0.3"></xd-unit>
|
|
29
|
+
</view>
|
|
28
30
|
</view>
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
31
|
+
<view v-if="logisticsPrice" class="column-item noBorder">
|
|
32
|
+
<view class="column_label" style="color: #333;">运费</view>
|
|
33
|
+
<view class="column_value text-gray">
|
|
34
|
+
<xd-unit :price="logisticsPrice" :isOld="false" :font-size="24" :icon-size="0.3"></xd-unit>
|
|
35
|
+
</view>
|
|
34
36
|
</view>
|
|
35
37
|
</view>
|
|
36
38
|
<view class="column-item">
|
|
@@ -46,19 +48,6 @@
|
|
|
46
48
|
></xd-unit>
|
|
47
49
|
</view>
|
|
48
50
|
</view>
|
|
49
|
-
<view v-if="serviceFee" class="column-item">
|
|
50
|
-
<view class="column_label">
|
|
51
|
-
平台服务费
|
|
52
|
-
</view>
|
|
53
|
-
<view class="column_value text-gray">
|
|
54
|
-
<xd-unit
|
|
55
|
-
:price="serviceFee"
|
|
56
|
-
:isOld="false"
|
|
57
|
-
:font-size="24"
|
|
58
|
-
:icon-size="0.3"
|
|
59
|
-
></xd-unit>
|
|
60
|
-
</view>
|
|
61
|
-
</view>
|
|
62
51
|
<view class="column-item">
|
|
63
52
|
<view class="column_label">
|
|
64
53
|
仍需支付
|
|
@@ -824,6 +813,11 @@
|
|
|
824
813
|
border-bottom: 1px solid rgba(238, 238, 238, 1);
|
|
825
814
|
padding: 30rpx 50rpx;
|
|
826
815
|
|
|
816
|
+
&.noBorder{
|
|
817
|
+
border-bottom: none;
|
|
818
|
+
padding: 10rpx 50rpx;
|
|
819
|
+
}
|
|
820
|
+
|
|
827
821
|
.column_label{
|
|
828
822
|
display: flex;
|
|
829
823
|
align-items: center;
|