账单查询
This commit is contained in:
@@ -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"/>
|
||||
|
||||
Reference in New Issue
Block a user