账单查询

This commit is contained in:
limqhz
2023-02-08 16:59:00 +08:00
parent 1f5580c0f3
commit 668a387554
13 changed files with 98 additions and 93 deletions

View File

@@ -2,12 +2,12 @@
<view class="look_content">
<view class="pay_look">
<view class="inline_box font_big">净资产<t-icon bind:tap="changeHidden" name="{{ hiddenMoney ? 'browse' : 'browse-off'}}"/></view>
<text class="font_big">{{ hiddenMoney ? noMoney : 1200.00 }}</text>
<text class="font_big">{{ hiddenMoney ? noMoney : sumBalance }}</text>
</view>
<view class="balance_look">
<text>总资产: {{ hiddenMoney ? noMoney : 900.00 }}</text>
<text>总资产: {{ hiddenMoney ? noMoney : cashBalance }}</text>
<text> | </text>
<text>总负债: {{ hiddenMoney ? noMoney : -300.00 }}</text>
<text>总负债: {{ hiddenMoney ? noMoney : oweBalance }}</text>
</view>
</view>
</view>
@@ -18,9 +18,9 @@
<t-cell wx:for="{{cashAccountList}}" wx:key="index"
title="{{item.name}}"
align="top"
image="/image/account/5.png"
url="/pages/account/detail/index"
note="{{hiddenMoney ? noMoney : item.money}}"
image="{{item.icon}}"
url="/pages/account/detail/index?sid={{item.id}}&balance={{item.balance}}"
note="{{hiddenMoney ? noMoney : item.balance}}"
/>
</t-cell-group>
<view class="padding_box">
@@ -30,9 +30,9 @@
<t-cell wx:for="{{oweAccountList}}" wx:key="index"
title="{{item.name}}"
align="top"
image="/image/account/10.png"
url="/pages/account/detail/index"
note="{{hiddenMoney ? noMoney : item.money}}"
image="{{item.icon}}"
url="/pages/account/detail/index?sid={{item.id}}&balance={{item.balance}}"
note="{{hiddenMoney ? noMoney : item.balance}}"
/>
</t-cell-group>
<view class="placeholder"/>