24 lines
837 B
Plaintext
24 lines
837 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}}"
|
|
url="{{'/pages/bill/index?id=' + item.id}}"
|
|
>
|
|
<text slot="note" class="t-color-{{item.billType}}">{{item.money}}</text>
|
|
</t-cell>
|
|
</t-cell-group>
|
|
</view>
|