jufubao-base 1.0.279-beta103 → 1.0.279-beta104
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
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
</view>
|
|
56
56
|
<view :style="[addCoMpStyle]" class="jfb-base-chose-company__body-add"
|
|
57
57
|
>{{ addTitle
|
|
58
|
-
}}<view @click="handleToAdd" style="color:
|
|
58
|
+
}}<view @click="handleToAdd" :style="{color:mainColor}"
|
|
59
59
|
>去添加<XdFontIcon
|
|
60
60
|
size="28"
|
|
61
61
|
icon="iconxiangyou_xian"
|
|
@@ -64,8 +64,9 @@
|
|
|
64
64
|
class="jfb-base-wallet-index__body-type-item"
|
|
65
65
|
@click="handleToWalletDetail(item)"
|
|
66
66
|
>
|
|
67
|
-
<view>{{
|
|
68
|
-
<view
|
|
67
|
+
<view class="jfb-base-wallet-index__body-type-item-name" :style="{ color: mainColor }">{{ item.wallet_name }}</view>
|
|
68
|
+
<view class="jfb-base-wallet-index__body-type-item-amount">{{ dividePrice(item.amount) }}</view>
|
|
69
|
+
<view class="jfb-base-wallet-index__body-type-item-company" v-if="item.customer_name">{{item.customer_name}}</view>
|
|
69
70
|
</view>
|
|
70
71
|
</view>
|
|
71
72
|
</view>
|
|
@@ -589,12 +590,16 @@ export default {
|
|
|
589
590
|
&-item {
|
|
590
591
|
text-align: center;
|
|
591
592
|
margin-bottom: 20rpx;
|
|
592
|
-
|
|
593
|
+
&-name{
|
|
593
594
|
font-size: 36rpx;
|
|
594
595
|
}
|
|
595
|
-
|
|
596
|
+
&-amount {
|
|
597
|
+
font-size: 36rpx;
|
|
598
|
+
margin: 10rpx 0;
|
|
599
|
+
}
|
|
600
|
+
&-company {
|
|
596
601
|
font-size: 24rpx;
|
|
597
|
-
|
|
602
|
+
color: #999
|
|
598
603
|
}
|
|
599
604
|
}
|
|
600
605
|
}
|