24 lines
757 B
Plaintext
24 lines
757 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="/image/account/11.png"
|
|
url="../edit/index?isAccount=true"
|
|
/>
|
|
</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/4.png"
|
|
url="../edit/index?isAccount=1&isIncome=0&isAdd=0"
|
|
/>
|
|
</t-cell-group>
|
|
<t-fab icon="add" bind:click="handleClick" aria-label="新增账户"/>
|