40 lines
1.4 KiB
Plaintext
40 lines
1.4 KiB
Plaintext
<view class="main_look">
|
|
<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 : sumBalance }}</text>
|
|
</view>
|
|
<view class="balance_look">
|
|
<text>总资产: {{ hiddenMoney ? noMoney : cashBalance }}</text>
|
|
<text> | </text>
|
|
<text>总负债: {{ hiddenMoney ? noMoney : oweBalance }}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="padding_box">
|
|
<t-divider dashed content="资金账户"/>
|
|
</view>
|
|
<t-cell-group theme="card">
|
|
<t-cell wx:for="{{cashAccountList}}" wx:key="index"
|
|
title="{{item.name}}"
|
|
align="top"
|
|
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">
|
|
<t-divider dashed content="负债账户"/>
|
|
</view>
|
|
<t-cell-group theme="card">
|
|
<t-cell wx:for="{{oweAccountList}}" wx:key="index"
|
|
title="{{item.name}}"
|
|
align="top"
|
|
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"/>
|
|
<foot-tab value="label_3"/>
|