|
|
@@ -1,11 +1,6 @@
|
|
|
<template>
|
|
|
<view class="app-content">
|
|
|
<view class="ex-page">
|
|
|
- <view class="input-wrap_box">
|
|
|
- <view>
|
|
|
- <AppSearchModule placeholder="输入拼音首字母搜索" @input="searchFn"/>
|
|
|
- </view>
|
|
|
- </view>
|
|
|
<view class="top-bar">
|
|
|
<DateSelect class="bar" top="0" @selectDateFn="selectDateFn" />
|
|
|
</view>
|
|
|
@@ -13,13 +8,11 @@
|
|
|
<view class="space-view ex-table">
|
|
|
<block>
|
|
|
<t-table :headerBackgroundColor="'#F0F2F6'">
|
|
|
-
|
|
|
<t-tr header>
|
|
|
<t-th>类型</t-th>
|
|
|
<t-th>金额</t-th>
|
|
|
<t-th>操作</t-th>
|
|
|
</t-tr>
|
|
|
-
|
|
|
<t-tr v-for="(item, inIndex) in profit.income" :key="inIndex">
|
|
|
<t-td><view style="color:black;font-size:30upx;">{{item.name}}</view></t-td>
|
|
|
<t-td><view style="color:black;font-size:30upx;">{{item.amount}}</view></t-td>
|
|
|
@@ -36,7 +29,7 @@
|
|
|
</view>
|
|
|
<t-tr>
|
|
|
<t-td align="center">
|
|
|
- <view style="font-weight:bold;color:black;font-size:34upx;">合计 ¥{{profit.balance||0}}</view>
|
|
|
+ <view style="font-weight:bold;color:black;font-size:32upx;">合计 ¥{{profit.balance||0}}</view>
|
|
|
</t-td>
|
|
|
</t-tr>
|
|
|
|
|
|
@@ -128,7 +121,7 @@ export default {
|
|
|
.top-bar {
|
|
|
position: absolute;
|
|
|
left: 0;
|
|
|
- top:130upx;
|
|
|
+ top:10upx;
|
|
|
display: flex;
|
|
|
width: 100%;
|
|
|
z-index: 20;
|
|
|
@@ -142,7 +135,7 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
.main-view {
|
|
|
- margin-top: 90upx;
|
|
|
+ margin-top: 50upx;
|
|
|
flex: 1;
|
|
|
background-color: #f9fbfc;
|
|
|
.space-view {
|