Files
quinn-accounts/pages/account/index.wxml
2023-01-28 14:37:45 +08:00

40 lines
1.3 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 : 1200.00 }}</text>
</view>
<view class="balance_look">
<text>总资产: {{ hiddenMoney ? noMoney : 900.00 }}</text>
<text> | </text>
<text>总负债: {{ hiddenMoney ? noMoney : -300.00 }}</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="/image/account/5.png"
url="/pages/account/detail/index"
note="{{hiddenMoney ? noMoney : item.money}}"
/>
</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="/image/account/10.png"
url="/pages/account/detail/index"
note="{{hiddenMoney ? noMoney : item.money}}"
/>
</t-cell-group>
<view class="placeholder"/>
<foot-tab value="label_3"/>