预算配置
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
<view class="main_look">
|
||||
<view class="look_content">
|
||||
<view class="look_content font_big">
|
||||
<view class="pay_look">
|
||||
<text>今日支出\n</text>
|
||||
<text class="font_big">200.00</text>
|
||||
<text class="font_big">{{sumToday}}</text>
|
||||
</view>
|
||||
<view class="balance_look">
|
||||
<text>账户余额:2235.20</text>
|
||||
<text>预算余额:300.00</text>
|
||||
<text>账户余额:{{sumBalance}}</text>
|
||||
<text>预算余额:{{sumBudget - sumUsed}}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
@@ -15,11 +15,11 @@
|
||||
<view bind:tap="modifyBudget" class="inline_box"><t-icon name="money-circle" size="28rpx"/>查看</view>
|
||||
</view>
|
||||
<view class="padding_box">
|
||||
<t-progress theme="plump" percentage="{{progress}}" status="{{progress > 80 ? 'error' : 'success' }}" />
|
||||
<t-progress theme="plump" percentage="{{progress}}" status="{{ progress > 80 ? 'error' : 'success' }}" />
|
||||
</view>
|
||||
<view class="space_box font_small">
|
||||
<text>当月预算:54602.00</text>
|
||||
<text>已消费:777.80</text>
|
||||
<text>当月预算:{{sumBudget}}</text>
|
||||
<text>已消费:{{sumUsed}}</text>
|
||||
</view>
|
||||
<view class="padding_box">
|
||||
<t-button theme="primary" size="medium" block bind:tap="addBill">记一笔</t-button>
|
||||
|
||||
Reference in New Issue
Block a user