jufubao-third 1.0.7-beta3 → 1.0.7
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,21 +15,21 @@
|
|
|
15
15
|
<!-- #endif -->
|
|
16
16
|
<view class="jfb-third-pay__body">
|
|
17
17
|
<view class="column-group">
|
|
18
|
-
<view style="
|
|
18
|
+
<view style="padding: 20rpx 0 0;">
|
|
19
19
|
<view class="column-item noBorder">
|
|
20
|
-
<view v-if="product_total_price" class="column_label">商品总额</view>
|
|
20
|
+
<view v-if="product_total_price" class="column_label text_gray">商品总额</view>
|
|
21
21
|
<view class="column_value text-gray">
|
|
22
22
|
<xd-unit :price="product_total_price" :isOld="false" :font-size="24" :icon-size="0.3"></xd-unit>
|
|
23
23
|
</view>
|
|
24
24
|
</view>
|
|
25
25
|
<view v-if="servicePrice" class="column-item noBorder">
|
|
26
|
-
<view class="column_label
|
|
26
|
+
<view class="column_label text_gray">平台服务费总额</view>
|
|
27
27
|
<view class="column_value text-gray">
|
|
28
28
|
<xd-unit :price="servicePrice" :isOld="false" :font-size="24" :icon-size="0.3"></xd-unit>
|
|
29
29
|
</view>
|
|
30
30
|
</view>
|
|
31
31
|
<view v-if="logisticsPrice" class="column-item noBorder">
|
|
32
|
-
<view class="column_label
|
|
32
|
+
<view class="column_label text_gray">运费</view>
|
|
33
33
|
<view class="column_value text-gray">
|
|
34
34
|
<xd-unit :price="logisticsPrice" :isOld="false" :font-size="24" :icon-size="0.3"></xd-unit>
|
|
35
35
|
</view>
|
|
@@ -805,6 +805,10 @@
|
|
|
805
805
|
&__body{
|
|
806
806
|
padding-bottom: 150rpx;
|
|
807
807
|
background: #FFFFFF;
|
|
808
|
+
|
|
809
|
+
.text_gray{
|
|
810
|
+
color: #666666 !important;
|
|
811
|
+
}
|
|
808
812
|
.column-group{
|
|
809
813
|
.column-item{
|
|
810
814
|
display: flex;
|
|
@@ -815,13 +819,15 @@
|
|
|
815
819
|
|
|
816
820
|
&.noBorder{
|
|
817
821
|
border-bottom: none;
|
|
818
|
-
padding:
|
|
822
|
+
padding: 12rpx 50rpx;
|
|
819
823
|
}
|
|
820
824
|
|
|
821
825
|
.column_label{
|
|
822
826
|
display: flex;
|
|
823
827
|
align-items: center;
|
|
824
|
-
font-size:
|
|
828
|
+
font-size: 24rpx;
|
|
829
|
+
color: #333333;
|
|
830
|
+
font-weight: 500;
|
|
825
831
|
}
|
|
826
832
|
.column_value{
|
|
827
833
|
display: flex;
|
|
@@ -95,6 +95,7 @@ export default {
|
|
|
95
95
|
.my-list_label{
|
|
96
96
|
font-size: 28rpx;
|
|
97
97
|
font-weight: 400;
|
|
98
|
+
|
|
98
99
|
}
|
|
99
100
|
}
|
|
100
101
|
&.size_default{
|
|
@@ -109,6 +110,7 @@ export default {
|
|
|
109
110
|
.my-list_label{
|
|
110
111
|
font-size: 24rpx;
|
|
111
112
|
font-weight: 400;
|
|
113
|
+
color: #666666;
|
|
112
114
|
}
|
|
113
115
|
}
|
|
114
116
|
|