fix: 资产大屏预览功能新增。

This commit is contained in:
tianyongbao
2026-02-20 10:59:31 +08:00
parent 11afc72d0d
commit f39db5ef0c
3 changed files with 1528 additions and 0 deletions

View File

@@ -64,6 +64,13 @@
"navigationStyle": "custom"
}
},
{
"path": "pages/statistic/bigScreen/index",
"style": {
"navigationBarTitleText": "",
"navigationStyle": "custom"
}
},
{
"path": "pages/mine",
"style": {

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,20 @@
<template>
<view class="content">
<!-- 资产大屏入口 -->
<view class="big-screen-entry" @click="navigateTo('/pages/statistic/bigScreen/index')">
<view class="entry-left">
<view class="entry-icon">
<uni-icons type="bars" size="28" color="#ffffff"></uni-icons>
</view>
<view class="entry-content">
<text class="entry-title">资产大屏</text>
<text class="entry-desc">全局资产可视化分析</text>
</view>
</view>
<uni-icons type="arrow-right" size="20" color="rgba(255, 255, 255, 0.8)"></uni-icons>
</view>
<!-- 账单统计分析 -->
<view class="section-header" v-show="auth.hasPermi('invest:creditAnalysis:list')">
<text class="section-title">账单统计分析</text>
@@ -112,6 +126,60 @@
padding: 12rpx 0;
}
.big-screen-entry {
margin: 16rpx 24rpx 24rpx;
padding: 32rpx 28rpx;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 20rpx;
box-shadow: 0 8rpx 24rpx rgba(102, 126, 234, 0.3);
display: flex;
align-items: center;
justify-content: space-between;
transition: all 0.3s ease;
&:active {
transform: scale(0.98);
box-shadow: 0 4rpx 16rpx rgba(102, 126, 234, 0.25);
}
}
.entry-left {
display: flex;
align-items: center;
gap: 20rpx;
flex: 1;
}
.entry-icon {
width: 60rpx;
height: 60rpx;
background: rgba(255, 255, 255, 0.25);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.entry-content {
display: flex;
flex-direction: column;
gap: 6rpx;
}
.entry-title {
font-size: 32rpx;
font-weight: 700;
color: #ffffff;
line-height: 1.2;
}
.entry-desc {
font-size: 22rpx;
color: rgba(255, 255, 255, 0.85);
line-height: 1.3;
}
.section-header {
padding: 12rpx 24rpx 8rpx;
}