This commit is contained in:
cclu 2024-01-16 14:17:17 +08:00
parent 52bf80d479
commit e4f794e666
3 changed files with 31 additions and 32 deletions

View File

@ -43,8 +43,8 @@
<image class="moneyItemIcon" src="https://eshangtech.com/ShopICO/ahyd-BID/merchantAccount/accountIcon.svg"/>
</view>
<view class="moneyDetail">
<text class="itemLabel">到账 /</text>
<text class="itemValue">{{item.SubRoyaltyPrice?$util.fmoney(item.SubRoyaltyPrice,2):'-'}}</text>
<text class="itemLabel">到账 /</text>
<text class="itemValue">{{item.SubRoyaltyPrice?$util.getMoney(item.SubRoyaltyPrice/10000):'-'}}</text>
</view>
</view>
@ -53,8 +53,8 @@
<image class="moneyItemIcon" src="https://eshangtech.com/ShopICO/ahyd-BID/merchantAccount/entryIcon.svg"/>
</view>
<view class="moneyDetail">
<text class="itemLabel">入账 /</text>
<text class="itemValue">{{item.SubRoyaltyTheory?$util.fmoney(item.SubRoyaltyTheory,2):'-'}}</text>
<text class="itemLabel">入账 /</text>
<text class="itemValue">{{item.SubRoyaltyTheory?$util.getMoney(item.SubRoyaltyTheory/10000):'-'}}</text>
</view>
</view>
@ -63,8 +63,8 @@
<image class="moneyItemIcon" src="https://eshangtech.com/ShopICO/ahyd-BID/merchantAccount/payIcon.svg"/>
</view>
<view class="moneyDetail">
<text class="itemLabel">应缴 /</text>
<text class="itemValue">{{item.ReceivableAmount?$util.fmoney(item.ReceivableAmount,2):'-'}}</text>
<text class="itemLabel">应缴 /</text>
<text class="itemValue">{{item.ReceivableAmount?$util.getMoney(item.ReceivableAmount/10000):'-'}}</text>
</view>
</view>
</view>
@ -134,18 +134,18 @@
<view class="itemRightBottom">
<view class="bottomItem">
<text class="bottomLabel">到账<text class="bottomUnit">/</text></text>
<text class="bottomValue">{{item.SubRoyaltyPrice?$util.fmoney(item.SubRoyaltyPrice,2):'-'}}</text>
<text class="bottomLabel">到账<text class="bottomUnit">/</text></text>
<text class="bottomValue">{{item.SubRoyaltyPrice?$util.getMoney(item.SubRoyaltyPrice/10000):'-'}}</text>
</view>
<view class="bottomItem">
<text class="bottomLabel">入账<text class="bottomUnit">/</text></text>
<text class="bottomValue">{{item.SubRoyaltyTheory?$util.fmoney(item.SubRoyaltyTheory,2):'-'}}</text>
<text class="bottomLabel">入账<text class="bottomUnit">/</text></text>
<text class="bottomValue">{{item.SubRoyaltyTheory?$util.getMoney(item.SubRoyaltyTheory/10000):'-'}}</text>
</view>
<view class="bottomItem">
<text class="bottomLabel">应缴<text class="bottomUnit">/</text></text>
<text class="bottomValue">{{item.ReceivableAmount ?$util.fmoney(item.ReceivableAmount ,2):'-'}}</text>
<text class="bottomLabel">应缴<text class="bottomUnit">/</text></text>
<text class="bottomValue">{{item.ReceivableAmount ?$util.getMoney(item.ReceivableAmount/10000):'-'}}</text>
</view>
</view>
</view>
@ -175,15 +175,15 @@
<view class="otherBox">
<view class="otherItem">
<text class="otherLabel">到账<text class="otherUnit">/</text></text>
<text class="otherValue">{{subItem.SubRoyaltyPrice?$util.fmoney(subItem.SubRoyaltyPrice,2):'-'}}</text>
<text class="otherValue">{{subItem.SubRoyaltyPrice?$util.getMoney(subItem.SubRoyaltyPrice):'-'}}</text>
</view>
<view class="otherItem">
<text class="otherLabel">入账<text class="otherUnit">/</text></text>
<text class="otherValue">{{subItem.SubRoyaltyTheory?$util.fmoney(subItem.SubRoyaltyTheory,2):'-'}}</text>
<text class="otherValue">{{subItem.SubRoyaltyTheory?$util.getMoney(subItem.SubRoyaltyTheory):'-'}}</text>
</view>
<view class="otherItem">
<text class="otherLabel">应缴<text class="otherUnit">/</text></text>
<text class="otherValue">{{subItem.ReceivableAmount ?$util.fmoney(subItem.ReceivableAmount ,2):'-'}}</text>
<text class="otherValue">{{subItem.ReceivableAmount ?$util.getMoney(subItem.ReceivableAmount):'-'}}</text>
</view>
</view>
</view>
@ -522,7 +522,7 @@ export default {
line-height: 36rpx;
}
.itemValue{
font-size: 24rpx;
font-size: 28rpx;
font-family: DINAlternate, DINAlternate;
font-weight: bold;
color: #160002;
@ -747,7 +747,7 @@ export default {
}
}
.bottomValue{
font-size: 24rpx;
font-size: 28rpx;
font-family: DINAlternate, DINAlternate;
font-weight: bold;
color: #160002;
@ -843,7 +843,7 @@ export default {
}
}
.otherValue{
font-size: 24rpx;
font-size: 28rpx;
font-family: DINAlternate, DINAlternate;
font-weight: bold;
color: #160002;

View File

@ -25,7 +25,7 @@
<text class="itemTitle">商家到账<text class="itemUnit">/</text></text>
<image class="noticeIcon" src="https://eshangtech.com/ShopICO/ahyd-BID/newIndex3/noticeIcon.svg"/>
</view>
<text class="itemRight">{{pageData && pageData.SubRoyaltyPrice?$util.fmoney(pageData.SubRoyaltyPrice,2):'-'}}</text>
<text class="itemRight">{{pageData && pageData.SubRoyaltyPrice?$util.getMoney(pageData.SubRoyaltyPrice):'-'}}</text>
</view>
<view class="entryItem">
@ -34,7 +34,7 @@
<text class="itemTitle">商家入账<text class="itemUnit">/</text></text>
<image class="noticeIcon" src="https://eshangtech.com/ShopICO/ahyd-BID/newIndex3/noticeIcon.svg"/>
</view>
<text class="itemRight">{{pageData && pageData.SubRoyaltyTheory?$util.fmoney(pageData.SubRoyaltyTheory,2):'-'}}</text>
<text class="itemRight">{{pageData && pageData.SubRoyaltyTheory?$util.getMoney(pageData.SubRoyaltyTheory):'-'}}</text>
</view>
<view class="entryItem">
@ -43,7 +43,7 @@
<text class="itemTitle">商家应缴<text class="itemUnit">/</text></text>
<image class="noticeIcon" src="https://eshangtech.com/ShopICO/ahyd-BID/newIndex3/noticeIcon.svg"/>
</view>
<text class="itemRight">{{pageData && pageData.ReceivableAmount?$util.fmoney(pageData.ReceivableAmount,2):'-'}}</text>
<text class="itemRight">{{pageData && pageData.ReceivableAmount?$util.getMoney(pageData.ReceivableAmount):'-'}}</text>
</view>
</view>
</view>
@ -100,18 +100,17 @@
<view class="moneyBox">
<view class="moneyItem">
<text class="itemLabel">到账 /</text>
<text class="itemValue">{{item.SubRoyaltyPrice?$util.fmoney(item.SubRoyaltyPrice,2):'-'}}</text>
<text class="itemLabel">到账 /万元</text>
<text class="itemValue">{{item.SubRoyaltyPrice?$util.getMoney(item.SubRoyaltyPrice/10000):'-'}}</text>
</view>
<view class="moneyItem">
<text class="itemLabel">入账 /万元</text>
<text class="itemValue">{{item.SubRoyaltyTheory?$util.getMoney(item.SubRoyaltyTheory/10000):'-'}}</text>
</view>
<view class="moneyItem">
<text class="itemLabel">入账 /</text>
<text class="itemValue">{{item.SubRoyaltyTheory?$util.fmoney(item.SubRoyaltyTheory,2):'-'}}</text>
</view>
<view class="moneyItem">
<text class="itemLabel">应缴 /</text>
<text class="itemValue">{{item.ReceivableAmount ?$util.fmoney(item.ReceivableAmount ,2):'-'}}</text>
<text class="itemLabel">应缴 /万元</text>
<text class="itemValue">{{item.ReceivableAmount ?$util.getMoney(item.ReceivableAmount/10000):'-'}}</text>
</view>
</view>
</view>
@ -481,7 +480,7 @@ export default {
margin-bottom: 4rpx;
}
.itemValue{
font-size: 24rpx;
font-size: 28rpx;
font-family: DINAlternate, DINAlternate;
font-weight: bold;
color: #160002;