24 lines
788 B
Plaintext
24 lines
788 B
Plaintext
<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="../edit/index?isAccount=1&isIncome=0&isAdd=0&id={{item.id}}"
|
|
/>
|
|
</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="../edit/index?isAccount=1&isIncome=0&isAdd=0&id={{item.id}}"
|
|
/>
|
|
</t-cell-group>
|
|
<t-fab icon="add" bind:click="handleClick" aria-label="新增账户"/>
|