24 lines
821 B
Plaintext
24 lines
821 B
Plaintext
<view class="main_look">
|
|
<view class="look_content">
|
|
<view class="pay_look">
|
|
<view class="inline_box font_big">分类总计</view>
|
|
</view>
|
|
<view class="pay_look">
|
|
<text class="center_look font_big">{{ sumMoney }}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view wx:if="{{billList != null && billList.length > 0}}">
|
|
<t-cell-group theme="card">
|
|
<t-cell wx:for="{{billList}}" wx:key="index"
|
|
title="{{item.moneyName}}"
|
|
description="{{item.date}} • {{item.accountName}}"
|
|
align="top"
|
|
image="{{item.moneyIcon}}"
|
|
note="{{item.money}}"
|
|
class="t-cell-{{item.billType}}"
|
|
url="{{'/pages/bill/index?id=' + item.id}}"
|
|
/>
|
|
</t-cell-group>
|
|
</view>
|