|
@@ -77,11 +77,9 @@
|
|
|
:key="index"
|
|
:key="index"
|
|
|
@click="viewDetail(item)">
|
|
@click="viewDetail(item)">
|
|
|
<view class="item-header">
|
|
<view class="item-header">
|
|
|
- <view class="item-left">
|
|
|
|
|
- <text class="item-period">{{ activeTab === 0 ? item.statDate : item.statMonth }}</text>
|
|
|
|
|
- <text class="item-station">{{ item.stationName || '-' }}</text>
|
|
|
|
|
- </view>
|
|
|
|
|
- <AppIcon name="chevron-right" :size="24" color="#B0B0B0" />
|
|
|
|
|
|
|
+ <text class="item-period">{{ activeTab === 0 ? item.statDate : item.statMonth }}</text>
|
|
|
|
|
+ <text class="item-station">{{ item.stationName || '-' }}</text>
|
|
|
|
|
+ <AppIcon name="chevron-right" :size="24" color="#B0B0B0" class="item-header-arrow" />
|
|
|
</view>
|
|
</view>
|
|
|
<view class="item-content">
|
|
<view class="item-content">
|
|
|
<view class="info-grid">
|
|
<view class="info-grid">
|
|
@@ -495,6 +493,7 @@ onMounted(async () => {
|
|
|
|
|
|
|
|
.summary-range {
|
|
.summary-range {
|
|
|
padding: 8rpx 20rpx 12rpx;
|
|
padding: 8rpx 20rpx 12rpx;
|
|
|
|
|
+ text-align: center;
|
|
|
}
|
|
}
|
|
|
.range-text {
|
|
.range-text {
|
|
|
font-size: 22rpx;
|
|
font-size: 22rpx;
|
|
@@ -512,6 +511,7 @@ onMounted(async () => {
|
|
|
padding: 24rpx;
|
|
padding: 24rpx;
|
|
|
border-radius: 16rpx;
|
|
border-radius: 16rpx;
|
|
|
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.04);
|
|
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.04);
|
|
|
|
|
+ text-align: center;
|
|
|
}
|
|
}
|
|
|
.summary-label {
|
|
.summary-label {
|
|
|
font-size: 24rpx;
|
|
font-size: 24rpx;
|
|
@@ -545,23 +545,30 @@ onMounted(async () => {
|
|
|
}
|
|
}
|
|
|
.item-header {
|
|
.item-header {
|
|
|
display: flex;
|
|
display: flex;
|
|
|
- justify-content: space-between;
|
|
|
|
|
|
|
+ flex-direction: column;
|
|
|
align-items: center;
|
|
align-items: center;
|
|
|
padding-bottom: 16rpx;
|
|
padding-bottom: 16rpx;
|
|
|
border-bottom: 1rpx solid #F0F0F0;
|
|
border-bottom: 1rpx solid #F0F0F0;
|
|
|
margin-bottom: 16rpx;
|
|
margin-bottom: 16rpx;
|
|
|
|
|
+ position: relative;
|
|
|
}
|
|
}
|
|
|
.item-period {
|
|
.item-period {
|
|
|
font-size: 28rpx;
|
|
font-size: 28rpx;
|
|
|
font-weight: 600;
|
|
font-weight: 600;
|
|
|
color: #1A1A1A;
|
|
color: #1A1A1A;
|
|
|
- display: block;
|
|
|
|
|
|
|
+ text-align: center;
|
|
|
}
|
|
}
|
|
|
.item-station {
|
|
.item-station {
|
|
|
font-size: 24rpx;
|
|
font-size: 24rpx;
|
|
|
color: #999999;
|
|
color: #999999;
|
|
|
margin-top: 4rpx;
|
|
margin-top: 4rpx;
|
|
|
- display: block;
|
|
|
|
|
|
|
+ text-align: center;
|
|
|
|
|
+}
|
|
|
|
|
+.item-header-arrow {
|
|
|
|
|
+ position: absolute;
|
|
|
|
|
+ right: 0;
|
|
|
|
|
+ top: 50%;
|
|
|
|
|
+ transform: translateY(-50%);
|
|
|
}
|
|
}
|
|
|
.info-grid {
|
|
.info-grid {
|
|
|
display: grid;
|
|
display: grid;
|
|
@@ -570,6 +577,7 @@ onMounted(async () => {
|
|
|
}
|
|
}
|
|
|
.info-item {
|
|
.info-item {
|
|
|
padding: 8rpx 0;
|
|
padding: 8rpx 0;
|
|
|
|
|
+ text-align: center;
|
|
|
}
|
|
}
|
|
|
.info-label {
|
|
.info-label {
|
|
|
font-size: 24rpx;
|
|
font-size: 24rpx;
|
|
@@ -668,19 +676,20 @@ onMounted(async () => {
|
|
|
}
|
|
}
|
|
|
.detail-row {
|
|
.detail-row {
|
|
|
display: flex;
|
|
display: flex;
|
|
|
- justify-content: space-between;
|
|
|
|
|
|
|
+ flex-direction: column;
|
|
|
align-items: center;
|
|
align-items: center;
|
|
|
padding: 16rpx 0;
|
|
padding: 16rpx 0;
|
|
|
border-bottom: 1rpx solid #F5F5F5;
|
|
border-bottom: 1rpx solid #F5F5F5;
|
|
|
|
|
+ gap: 4rpx;
|
|
|
}
|
|
}
|
|
|
.d-label {
|
|
.d-label {
|
|
|
- font-size: 26rpx;
|
|
|
|
|
|
|
+ font-size: 24rpx;
|
|
|
color: #999999;
|
|
color: #999999;
|
|
|
}
|
|
}
|
|
|
.d-value {
|
|
.d-value {
|
|
|
- font-size: 26rpx;
|
|
|
|
|
|
|
+ font-size: 28rpx;
|
|
|
color: #1A1A1A;
|
|
color: #1A1A1A;
|
|
|
- font-weight: 500;
|
|
|
|
|
|
|
+ font-weight: 600;
|
|
|
}
|
|
}
|
|
|
.d-value.amount {
|
|
.d-value.amount {
|
|
|
color: #C6171E;
|
|
color: #C6171E;
|