白色主题
This commit is contained in:
@@ -3,26 +3,23 @@
|
||||
</view>
|
||||
<t-tabs defaultValue="{{0}}" t-class="custom-tabs" theme="card">
|
||||
<t-tab-panel label="总览" value="0" class="tab_content">
|
||||
<view class="space_box font_big">
|
||||
<text class="t-color-EXPEND">支出\n {{sumExpend}}</text>
|
||||
<text class="t-color-INCOME">收入\n {{sumIncome}}</text>
|
||||
<text class="t-color-TRANSFER">转账\n {{sumTransfer}}</text>
|
||||
<text class="t-color-REPAYMENT">还款\n {{sumRepayment}}</text>
|
||||
</view>
|
||||
<view class="padding_box">
|
||||
<t-divider dashed content="账单明细"/>
|
||||
</view>
|
||||
<view wx:if="{{accountList != null && accountList.length > 0}}">
|
||||
<view class="space_box font_big allLook">
|
||||
<text class="t-color-EXPEND">支出\n {{sumExpend}}</text>
|
||||
<text class="t-color-INCOME">收入\n {{sumIncome}}</text>
|
||||
<text class="t-color-TRANSFER">转账\n {{sumTransfer}}</text>
|
||||
<text class="t-color-REPAYMENT">还款\n {{sumRepayment}}</text>
|
||||
</view>
|
||||
<t-cell-group theme="card">
|
||||
<t-cell wx:for="{{accountList}}" 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 wx:for="{{accountList}}" 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>
|
||||
<view wx:else class="empty-view" >
|
||||
@@ -68,12 +65,15 @@
|
||||
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}}"
|
||||
/>
|
||||
>
|
||||
<text slot="note" class="t-color-{{item.billType}}">{{item.money}}</text>
|
||||
</t-cell>
|
||||
</t-cell-group>
|
||||
</view>
|
||||
<view wx:else class="empty-view" >
|
||||
<t-empty icon="chart-bubble" description="本月无账单记录" />
|
||||
</view>
|
||||
</t-tab-panel>
|
||||
<t-tab-panel label="收入" value="1">
|
||||
<view class="tabs_crevice"/>
|
||||
@@ -84,12 +84,15 @@
|
||||
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}}"
|
||||
/>
|
||||
>
|
||||
<text slot="note" class="t-color-{{item.billType}}">{{item.money}}</text>
|
||||
</t-cell>
|
||||
</t-cell-group>
|
||||
</view>
|
||||
<view wx:else class="empty-view" >
|
||||
<t-empty icon="chart-bubble" description="本月无账单记录" />
|
||||
</view>
|
||||
</t-tab-panel>
|
||||
</t-tabs>
|
||||
</t-tab-panel>
|
||||
|
||||
Reference in New Issue
Block a user