fix: 前端页面功能优化。

This commit is contained in:
tianyongbao
2025-11-14 20:06:41 +08:00
parent 459ab82cf2
commit 93420ca772
10 changed files with 680 additions and 478 deletions

View File

@@ -98,7 +98,7 @@ export default {
handleWindowResize: true,
editable: false,
droppable: false,
dayMaxEventRows: 1,
dayMaxEventRows: 0,
moreLinkText: function(num) {
return '+' + num;
},
@@ -113,9 +113,9 @@ export default {
eventDurationEditable: false,
eventResizableFromStart: false,
selectable: true,
firstDay: 1, // 从周一开始让大部分月份的1号更靠前
showNonCurrentDates: false, // 不显示非当月日期
fixedWeekCount: false, // 不固定显示6周
firstDay: 1,
showNonCurrentDates: true,
fixedWeekCount: false,
unselectAuto: true,
unselectCancel: '.el-drawer',
headerToolbar: false,
@@ -129,15 +129,12 @@ export default {
allDayText: '全天',
events: state.infoList,
eventContent: function () {
// 返回空内容,只显示数量
return { html: '' };
},
moreLinkClick: function() {
// 禁用+N的点击不做任何操作
return false;
},
dateClick: function(info) {
// 点击日期时显示该日事项
const date = dayjs(info.dateStr).format('YYYY-MM-DD');
state.currentInfoList = [];
state.infoList.forEach(item => {
@@ -145,38 +142,37 @@ export default {
state.currentInfoList.push(item);
}
});
// 更新日期标题
updateCurrentDateTitle(date);
},
select: function (info) {
// 视图选择日期触发
handleSelectDate(info)
}
// select: function (info) {}
});
state.Tcalendar.render();
};
const getEventColor = (type) => {
const colors = {
1: 'linear-gradient(135deg, #667eea, #764ba2)',
4: 'linear-gradient(135deg, #f093fb, #f5576c)',
5: 'linear-gradient(135deg, #4facfe, #00f2fe)',
6: 'linear-gradient(135deg, #43e97b, #38f9d7)',
7: 'linear-gradient(135deg, #fa709a, #fee140)',
8: 'linear-gradient(135deg, #30cfd0, #330867)'
1: '#5b6cdb', // 信用卡账单日 - 深紫色
2: '#9c27b0', // 类型2 - 深紫红色
3: '#d32f2f', // 类型3 - 深红色
4: '#2d8f3c', // 贷款已还 - 深绿色(已完成/成功)
5: '#e64545', // 日常支出 - 深红色(支出)
6: '#f59a23', // 投资收益 - 深橙金色(收益)
7: '#1677cc', // POS机刷卡 - 深蓝色
8: '#0fa9a9' // 工资收入 - 深青色(收入)
};
return colors[type] || 'linear-gradient(135deg, #a8edea, #fed6e3)';
return colors[type] || '#8c8c8c';
};
const getEventIcon = (type) => {
const icons = {
1: 'wallet',
4: 'checkmarkempty',
5: 'cart',
6: 'trending-up-filled',
7: 'shop-filled',
8: 'gift-filled'
1: 'wallet', // 信用卡账单日 - 钱包图标
4: 'checkmarkempty', // 贷款已还 - 对勾图标(已完成)
5: 'cart', // 日常支出 - 购物车图标
6: 'star', // 投资收益 - 星星图标(收益/增值)
7: 'scan', // POS机刷卡 - 扫描图标
8: 'wallet' // 工资收入 - 钱包图标(收入)
};
return icons[type] || 'calendar';
};
@@ -515,7 +511,7 @@ page {
.event-card {
display: flex;
align-items: center;
padding: 12rpx 16rpx;
padding: 10rpx 14rpx;
background: #f8f9fa;
border-radius: 10rpx;
margin-bottom: 10rpx;
@@ -537,6 +533,12 @@ page {
margin-right: 12rpx;
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.1);
flex-shrink: 0;
:deep(.uni-icons) {
display: flex !important;
align-items: center;
justify-content: center;
}
}
.event-content {
@@ -578,11 +580,16 @@ page {
}
:deep(.fc-col-header-cell) {
background: #f8f9fa;
padding: 6rpx 0;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 10rpx 0;
font-weight: 600;
color: #495057;
font-size: 22rpx;
color: #ffffff;
font-size: 24rpx;
border: none;
}
:deep(.fc-col-header-cell-cushion) {
color: #ffffff;
}
:deep(.fc-daygrid-day) {
@@ -596,6 +603,9 @@ page {
:deep(.fc-daygrid-day-frame) {
min-height: 45px;
cursor: pointer;
display: flex;
flex-direction: column;
justify-content: center;
}
:deep(.fc-scrollgrid) {
@@ -607,7 +617,8 @@ page {
}
:deep(.fc-day-today) {
background: rgba(102, 126, 234, 0.1) !important;
background: rgba(102, 126, 234, 0.15) !important;
border: 2rpx solid rgba(102, 126, 234, 0.4) !important;
}
:deep(.fc-daygrid-day-number) {
@@ -619,11 +630,12 @@ page {
:deep(.fc-daygrid-day-top) {
flex-direction: row;
margin-bottom: 2rpx;
}
:deep(.fc-daygrid-day-events) {
margin: 0;
padding: 2rpx;
padding: 0;
}
:deep(.fc-event) {
@@ -642,7 +654,7 @@ page {
display: inline-block;
box-shadow: none;
line-height: 1;
pointer-events: none; /* 禁用点击事件 */
pointer-events: none;
cursor: default;
}
@@ -653,11 +665,18 @@ page {
transform: none;
}
/* 隐藏FullCalendar的弹出框 */
:deep(.fc-popover) {
display: none !important;
}
:deep(.fc-day-other) {
background: #f8f9fa !important;
}
:deep(.fc-day-other .fc-daygrid-day-number) {
color: #adb5bd !important;
}
:deep(.plan_title) {
overflow: hidden;
text-overflow: ellipsis;

View File

@@ -5,8 +5,9 @@
<u--input v-model="queryParams.time" border="false" disabled placeholder="请输入时间" class="search-input"
@blur="searchBlur" suffixIcon="calendar" suffixIconStyle="color: #909399">
</u--input>
<u-icon :name="filterPanel ? 'arrow-up-fill' : 'arrow-down-fill'" color="#666666" size="28" label="筛选"
labelPos="left" labelSize="32rpx" labelColor="#666666" @click="filterPanel = !filterPanel"></u-icon>
<u-icon :name="filterPanel ? 'arrow-up-fill' : 'arrow-down-fill'" color="#667eea" size="28" label="筛选"
labelPos="left" labelSize="28rpx" labelColor="#667eea" @click="filterPanel = !filterPanel"
style="display: flex; align-items: center; gap: 6rpx; padding: 8rpx 16rpx; background: rgba(102, 126, 234, 0.1); border-radius: 20rpx; border: 1rpx solid rgba(102, 126, 234, 0.3);"></u-icon>
<u-transition :show="filterPanel" mode="fade">
<view class="filter-panel" :style="{ height: `${windowHeight - 42}px` }">
<view class="filter-panel-content">
@@ -18,8 +19,10 @@
</view>
<view class="btn-box">
<u-button text="重置" style="margin-right:20rpx" @click="resetQuery()"></u-button>
<u-button type="primary" text="确定" @click="searchSubmit()"></u-button>
<u-button text="重置" @click="resetQuery()"
customStyle="flex: 1; background: #f5f7fa; color: #666666; border: none; border-radius: 12rpx; font-size: 30rpx; height: 88rpx;"></u-button>
<u-button type="primary" text="确定" @click="searchSubmit()"
customStyle="flex: 2; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); border: none; border-radius: 12rpx; font-size: 30rpx; font-weight: 600; height: 88rpx; box-shadow: 0 4rpx 12rpx rgba(102, 126, 234, 0.3);"></u-button>
</view>
<u-datetime-picker
:closeOnClickOverlay="true"
@@ -36,42 +39,39 @@
</u-sticky>
<u-list @scrolltolower="loadmore" :spaceHeight="116" lowerThreshold="100">
<u-list-item v-for="(item, index) in listData" :key="index">
<view class="list-item">
<view class="item-header" @click="enterDetails(item)">
<u--text suffixIcon="arrow-right" lines="2" iconStyle="font-size: 18px; color: #333333; font-weight:bold"
:text="item.accountName+'交易金额:'+item.amount" size="30rpx" color="#333333" :bold="true"></u--text>
<view class="list-item" @click="enterDetails(item)">
<view class="item-header">
<view class="first-row">
<view class="card-icon">
<uni-icons type="wallet-filled" size="20" color="#ffffff"></uni-icons>
</view>
<text class="card-name">{{ item.accountName }}</text>
<text class="card-date">{{ item.createTime }}</text>
</view>
<view class="second-row">
<text class="account-type">{{ dictStr(item.type, accountTypeList) }}</text>
<text class="deal-category">{{ dictStr(item.dealCategory, dealCategoryList) }}</text>
<text class="child-category" v-if="item.childCategory && item.childCategory != item.dealCategory">{{ item.childCategoryName }}</text>
<view class="right-group">
<view class="profit-tag" :class="item.dealType === '1' ? 'income' : 'expense'">
<text>{{ dictStr(item.dealType, dealTypeList) }}</text>
</view>
<text class="card-amount" :class="item.dealType === '1' ? 'income' : 'expense'"><text class="amount-value">{{ item.amount }}</text></text>
</view>
</view>
</view>
<view class="item-row">
<text class="row-label">记账类型</text>
<text class="row-value">{{ dictStr(item.type, accountTypeList) }}</text>
</view>
<view class="item-row">
<text class="row-label">交易时间</text>
<text class="row-value">{{ item.createTime }}</text>
</view>
<view class="item-row">
<text class="row-label">交易金额</text>
<text class="row-value">{{ item.amount }}</text>
</view>
<view class="item-row">
<text class="row-label">当前余额</text>
<text class="row-value">{{ item.currentBalance }}</text>
</view>
<view class="item-row">
<text class="row-label">交易类型</text>
<text class="row-value">{{ dictStr(item.dealType, dealTypeList) }}</text>
</view>
<view class="item-row">
<text class="row-label">交易类别</text>
<text class="row-value">{{ dictStr(item.dealCategory, dealCategoryList) }}</text>
</view>
<view class="item-row" v-show="item.childCategory!=item.dealCategory">
<text class="row-label">交易子类别</text>
<text class="row-value">{{ item.childCategoryName }}</text>
</view>
<view class="item-row">
<text class="row-label">备注</text>
<text class="row-value">{{ item.remark }}</text>
<view class="card-body">
<view class="info-row">
<view class="info-item">
<text class="info-label">余额</text>
<text class="info-value">{{ item.currentBalance }}</text>
</view>
<view class="info-item" v-if="item.remark">
<text class="info-label">备注</text>
<text class="info-remark">{{ item.remark }}</text>
</view>
</view>
</view>
</view>
</u-list-item>
@@ -260,15 +260,6 @@ function dictStr(val, arr) {
</script>
<style lang="scss" scoped>
.btnAdd {
width: 146rpx;
height: 56rpx;
line-height: 56rpx;
border-radius: 8rpx;
display:float;
text-align: center;
}
.search-view {
padding: 12rpx 32rpx;
background-color: #ffffff;
@@ -277,11 +268,15 @@ function dictStr(val, arr) {
align-items: center;
position: relative;
margin-bottom: 24rpx;
z-index: 100;
.search-input {
background: #F5F5F5;
background: #f5f7fa;
color: #333333;
margin-right: 36rpx;
flex: 1;
margin-right: 16rpx;
border-radius: 24rpx;
border: 1rpx solid #e8edf3;
}
.filter-panel {
@@ -290,16 +285,18 @@ function dictStr(val, arr) {
left: 0;
top: 96rpx;
background-color: rgba(0, 0, 0, 0.5);
z-index: 999;
.filter-panel-content {
background-color: #ffff;
background-color: #ffffff;
padding: 0 30rpx 30rpx;
border-radius: 16rpx 16rpx 0 0;
.filter-title {
color: #000000;
font-size: 30rpx;
font-weight: 500;
padding: 30rpx 0;
color: #2c3e50;
font-size: 32rpx;
font-weight: 600;
padding: 32rpx 0 24rpx;
}
.state-list {
@@ -320,114 +317,217 @@ function dictStr(val, arr) {
}
.active {
background-color: rgba(222, 241, 255, 1);
border: 1rpx solid rgba(22, 119, 255, 1);
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border: 2rpx solid transparent;
color: #ffffff;
box-shadow: 0 4rpx 12rpx rgba(102, 126, 234, 0.3);
font-weight: 600;
}
}
}
.btn-box {
display: flex;
gap: 16rpx;
padding: 24rpx 30rpx;
background-color: #fff;
box-shadow: 0rpx -10rpx 20rpx #EEEEEE;
box-shadow: 0rpx -4rpx 16rpx rgba(0, 0, 0, 0.08);
}
}
}
.list-item {
margin: 0 24rpx 24rpx;
padding: 32rpx;
background-color: #fff;
border-radius: 16rpx;
overflow: hidden;
box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.08);
.item-header {
display: flex;
justify-content: space-between;
align-items: center;
padding-bottom: 16rpx;
flex-direction: column;
gap: 20rpx;
padding: 24rpx;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
.first-row {
display: flex;
align-items: center;
gap: 12rpx;
}
.status {
.status-item {
width: 120rpx;
height: 44rpx;
text-align: center;
line-height: 44rpx;
border-radius: 4rpx;
font-size: 24rpx;
}
.card-icon {
width: 44rpx;
height: 44rpx;
border-radius: 50%;
background: rgba(255, 255, 255, 0.25);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
.account-type {
font-size: 22rpx;
color: rgba(255, 255, 255, 0.85);
font-weight: 500;
white-space: nowrap;
flex-shrink: 0;
}
.status1 {
background: #F0F0F0;
color: #8C8C8C;
.card-name {
font-size: 30rpx;
font-weight: 600;
color: #ffffff;
line-height: 1.3;
flex: 1;
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.card-date {
font-size: 30rpx;
color: rgba(255, 255, 255, 0.9);
font-weight: 500;
line-height: 1.3;
white-space: nowrap;
flex-shrink: 0;
}
.profit-tag {
padding: 6rpx 14rpx;
border-radius: 12rpx;
font-size: 24rpx;
font-weight: 600;
line-height: 1;
flex-shrink: 0;
&.income {
background: rgba(82, 196, 26, 0.25);
color: #52c41a;
}
&.expense {
background: rgba(245, 87, 108, 0.25);
color: #f5576c;
}
}
.card-amount {
font-size: 26rpx;
font-weight: 600;
line-height: 1.3;
white-space: nowrap;
flex-shrink: 0;
&.income {
color: #52c41a;
}
&.expense {
color: #f5576c;
}
.amount-value {
font-size: 34rpx;
font-weight: 700;
margin-right: 4rpx;
}
}
.status2 {
background: rgba(38, 129, 255, 0.2);
color: #2681FF;
}
.status3 {
background: #F7F7F7;
color: #2681FF;
}
.status4 {
background: rgba(255, 85, 51, 0.2);
color: #FF5533;
}
.status5 {
background: #F7F7F7;
color: rgba(0, 0, 0, 0.85);
}
.status7 {
background: rgba(255, 129, 51, 0.2);
color: #FF8133;
}
.status8 {
background: rgba(65, 217, 165, 0.2);
color: #41D9A5;
}
.second-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12rpx;
padding-top: 12rpx;
border-top: 1rpx solid rgba(255, 255, 255, 0.2);
}
.deal-category {
font-size: 28rpx;
color: rgba(255, 255, 255, 0.9);
font-weight: 500;
white-space: nowrap;
flex-shrink: 0;
}
.account-type {
font-size: 28rpx;
color: rgba(255, 255, 255, 0.85);
font-weight: 500;
white-space: nowrap;
flex: 1;
}
.right-group {
display: flex;
align-items: center;
gap: 12rpx;
flex-shrink: 0;
}
.child-category {
font-size: 26rpx;
color: rgba(255, 255, 255, 0.8);
font-weight: 400;
white-space: nowrap;
flex-shrink: 0;
}
}
.item-row {
padding: 16rpx 0;
.row-label {
color: rgba(0, 0, 0, 0.55);
}
.row-value {
color: rgba(0, 0, 0, 0.85)
}
}
.operate {
.card-body {
padding: 16rpx 24rpx;
background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
display: flex;
justify-content: flex-end;
flex-direction: column;
.btn {
width: 146rpx;
height: 56rpx;
line-height: 56rpx;
border-radius: 8rpx;
margin-left: 5rpx;
text-align: center;
}
.info-row {
display: flex;
align-items: center;
gap: 24rpx;
.info-item {
display: flex;
align-items: center;
gap: 12rpx;
flex-shrink: 0;
&:last-child {
flex: 1;
min-width: 0;
}
}
.circulation {
background: rgba(0, 0, 0, 0.04);
margin-right: 24rpx;
color: rgba(0, 0, 0, 0.85);
}
.info-label {
font-size: 22rpx;
color: #999;
font-weight: 400;
flex-shrink: 0;
padding: 4rpx 12rpx;
background: rgba(102, 126, 234, 0.08);
border-radius: 8rpx;
}
.filling {
background: #2681FF;
border-radius: 8rpx;
color: #FFFFFF;
.info-value {
font-size: 28rpx;
color: #667eea;
font-weight: 600;
flex-shrink: 0;
}
.info-remark {
font-size: 24rpx;
color: #666;
line-height: 1.4;
flex: 1;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-style: italic;
}
}
}
}

View File

@@ -10,8 +10,8 @@
</div>
<div class="header-con" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);">
<uni-icons type="wallet-filled" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #2d8f3c 0%, #1b5e20 100%);">
<uni-icons type="medal-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">净资产</div>
@@ -19,8 +19,8 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);">
<uni-icons type="list" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #e64545 0%, #d32f2f 100%);">
<uni-icons type="minus-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">总负债</div>
@@ -30,8 +30,8 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:onlineLend')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);">
<uni-icons type="person-filled" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #fa709a 0%, #ec407a 100%);">
<uni-icons type="contact-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">人情欠款</div>
@@ -39,8 +39,8 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);">
<uni-icons type="wallet" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #e64545 0%, #d32f2f 100%);">
<uni-icons type="calendar" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">未结清贷款本息</div>
@@ -50,7 +50,7 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:creditCard')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);">
<view class="item-icon" style="background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);">
<uni-icons type="wallet-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
@@ -59,8 +59,8 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);">
<uni-icons type="calendar-filled" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #fa709a 0%, #ec407a 100%);">
<uni-icons type="loop" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">未结清分期本息</div>
@@ -71,8 +71,8 @@
<div class="header-con" v-show="auth.hasPermi('invest:debitCard')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);">
<uni-icons type="wallet" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #4facfe 0%, #2196f3 100%);">
<uni-icons type="wallet-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">储蓄卡余额</div>
@@ -80,8 +80,8 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%);">
<uni-icons type="home-filled" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #43e97b 0%, #2d8f3c 100%);">
<uni-icons type="wallet" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">储蓄账户余额</div>
@@ -91,17 +91,17 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:creditCard','invest:creditQueryRecord:list')" ref="searchHeightRef">
<div class="item" v-show="auth.hasPermi('invest:creditCard')">
<view class="item-icon" style="background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);">
<uni-icons type="star-filled" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #43e97b 0%, #2d8f3c 100%);">
<uni-icons type="plusempty" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">信用卡可用额度</div>
<div class="num">{{ creditAvailableLimit }}<span></span></div>
</div>
</div>
<div class="item" v-show="auth.hasPermi('invest:creditQueryRecord:list')">
<view class="item-icon" style="background: linear-gradient(135deg, #fddb92 0%, #d1fdff 100%);">
<uni-icons type="search" size="20" color="#ffffff"></uni-icons>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);">
<uni-icons type="list" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">近6月硬查询</div>
@@ -111,7 +111,7 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:futureStocks:list')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);">
<view class="item-icon" style="background: linear-gradient(135deg, #667eea 0%, #5b6cdb 100%);">
<uni-icons type="wallet-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
@@ -120,7 +120,7 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);">
<view class="item-icon" style="background: linear-gradient(135deg, #f59a23 0%, #f57c00 100%);">
<uni-icons type="arrow-up" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
@@ -131,7 +131,7 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:onlineLend')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);">
<view class="item-icon" style="background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);">
<uni-icons type="calendar-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
@@ -140,8 +140,8 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);">
<uni-icons type="loop" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #fa709a 0%, #ec407a 100%);">
<uni-icons type="calendar-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">当月待还款</div>
@@ -156,8 +156,8 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:debitCard')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);">
<uni-icons type="wallet-filled" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #4facfe 0%, #2196f3 100%);">
<uni-icons type="vip-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">I类储蓄卡</div>
@@ -165,8 +165,8 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);">
<uni-icons type="wallet" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #89c4f4 0%, #4facfe 100%);">
<uni-icons type="vip" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">II类储蓄卡</div>
@@ -176,7 +176,7 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:debitCard')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%);">
<view class="item-icon" style="background: linear-gradient(135deg, #43e97b 0%, #2d8f3c 100%);">
<uni-icons type="home-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
@@ -185,7 +185,7 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);">
<view class="item-icon" style="background: linear-gradient(135deg, #4facfe 0%, #2196f3 100%);">
<uni-icons type="wallet" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
@@ -196,8 +196,8 @@
</div>
<div class="header-con" v-show="(debitOnlineCount>0||storedValueCardCount>0)&&auth.hasPermi('invest:debitCard')" ref="searchHeightRef">
<div class="item" v-show="debitOnlineCount>0&&auth.hasPermi('invest:debitCard')">
<view class="item-icon" style="background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);">
<uni-icons type="cloud-upload" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #667eea 0%, #5b6cdb 100%);">
<uni-icons type="paperplane" size="24" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">网络账户</div>
@@ -205,8 +205,8 @@
</div>
</div>
<div class="item" v-show="debitOnlineCount>0&&auth.hasPermi('invest:debitCard')">
<view class="item-icon" style="background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);">
<uni-icons type="wallet" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #4facfe 0%, #2196f3 100%);">
<uni-icons type="wallet-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">网络账户余额</div>
@@ -216,8 +216,8 @@
</div>
<div class="header-con" v-show="(storedValueCardCount>0||storedValueCardBalance>0)&&auth.hasPermi('invest:debitCard')" ref="searchHeightRef">
<div class="item" v-show="storedValueCardCount>0&&auth.hasPermi('invest:debitCard')">
<view class="item-icon" style="background: linear-gradient(135deg, #fddb92 0%, #d1fdff 100%);">
<uni-icons type="wallet-filled" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #fa709a 0%, #ec407a 100%);">
<uni-icons type="gift-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">储值卡</div>
@@ -225,7 +225,7 @@
</div>
</div>
<div class="item" v-show="storedValueCardCount>0&&auth.hasPermi('invest:debitCard')">
<view class="item-icon" style="background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);">
<view class="item-icon" style="background: linear-gradient(135deg, #4facfe 0%, #2196f3 100%);">
<uni-icons type="wallet" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
@@ -238,7 +238,7 @@
<div class="header-con" v-show="(medicalBalance>0||housingFundBalance>0)&&auth.hasPermi('invest:debitCard')" ref="searchHeightRef">
<div class="item" v-show="housingFundBalance>0&&auth.hasPermi('invest:debitCard')">
<view class="item-icon" style="background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);">
<view class="item-icon" style="background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);">
<uni-icons type="home-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
@@ -247,7 +247,7 @@
</div>
</div>
<div class="item" v-show="medicalBalance>0&&auth.hasPermi('invest:debitCard')">
<view class="item-icon" style="background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);">
<view class="item-icon" style="background: linear-gradient(135deg, #e64545 0%, #d32f2f 100%);">
<uni-icons type="heart-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
@@ -258,8 +258,8 @@
</div>
<div class="header-con" v-show="(personalPensionBalance>0)&&auth.hasPermi('invest:debitCard')" ref="searchHeightRef">
<div class="item" v-show="personalPensionBalance>0&&auth.hasPermi('invest:debitCard')">
<view class="item-icon" style="background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);">
<uni-icons type="person-filled" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #667eea 0%, #5b6cdb 100%);">
<uni-icons type="settings-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">个人养老金余额</div>
@@ -274,8 +274,8 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:creditCard')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);">
<uni-icons type="wallet-filled" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #e64545 0%, #d32f2f 100%);">
<uni-icons type="auth-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">信用卡总数</div>
@@ -283,8 +283,8 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);">
<uni-icons type="star-filled" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #43e97b 0%, #2d8f3c 100%);">
<uni-icons type="plusempty" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">总额度</div>
@@ -294,8 +294,8 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:creditCard')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);">
<uni-icons type="wallet" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);">
<uni-icons type="minus-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">已使用额度</div>
@@ -303,8 +303,8 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);">
<uni-icons type="star" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #43e97b 0%, #2d8f3c 100%);">
<uni-icons type="plus-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">可用额度</div>
@@ -314,7 +314,7 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:creditCard')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #fddb92 0%, #d1fdff 100%);">
<view class="item-icon" style="background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);">
<uni-icons type="bars" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
@@ -323,8 +323,8 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);">
<uni-icons type="calendar-filled" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #e64545 0%, #d32f2f 100%);">
<uni-icons type="wallet" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">当月账单</div>
@@ -334,8 +334,8 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:creditCard')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);">
<uni-icons type="calendar-filled" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #fa709a 0%, #ec407a 100%);">
<uni-icons type="redo" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">当月分期本息</div>
@@ -343,8 +343,8 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);">
<uni-icons type="list" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);">
<uni-icons type="compose" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">未结清分期</div>
@@ -354,8 +354,8 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:creditCard')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);">
<uni-icons type="wallet" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #e64545 0%, #d32f2f 100%);">
<uni-icons type="wallet-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">未结清分期本息</div>
@@ -363,8 +363,8 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);">
<uni-icons type="wallet-filled" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #e64545 0%, #d32f2f 100%);">
<uni-icons type="wallet" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">未结清分期本金</div>
@@ -374,7 +374,7 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:creditCard')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);">
<view class="item-icon" style="background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);">
<uni-icons type="star" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
@@ -383,8 +383,8 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);">
<uni-icons type="checkbox-filled" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #2d8f3c 0%, #1b5e20 100%);">
<uni-icons type="checkmarkempty" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">已结清分期</div>
@@ -394,8 +394,8 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:creditCard')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);">
<uni-icons type="wallet" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #4facfe 0%, #2196f3 100%);">
<uni-icons type="wallet-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">已结清分期本息</div>
@@ -403,8 +403,8 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #fddb92 0%, #d1fdff 100%);">
<uni-icons type="wallet-filled" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #4facfe 0%, #2196f3 100%);">
<uni-icons type="wallet" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">已结清分期本金</div>
@@ -414,7 +414,7 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:creditCard')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);">
<view class="item-icon" style="background: linear-gradient(135deg, #5b6cdb 0%, #4527a0 100%);">
<uni-icons type="star" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
@@ -423,7 +423,7 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);">
<view class="item-icon" style="background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);">
<uni-icons type="bars" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
@@ -434,8 +434,8 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:creditCard')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);">
<uni-icons type="calendar-filled" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #fa709a 0%, #ec407a 100%);">
<uni-icons type="wallet-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">上月账单</div>
@@ -443,7 +443,7 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);">
<view class="item-icon" style="background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);">
<uni-icons type="bars" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
@@ -454,7 +454,7 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:creditCard')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);">
<view class="item-icon" style="background: linear-gradient(135deg, #4facfe 0%, #2196f3 100%);">
<uni-icons type="wallet" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
@@ -470,8 +470,8 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:onlineLend')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);">
<uni-icons type="wallet-filled" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #e64545 0%, #d32f2f 100%);">
<uni-icons type="home-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">贷款账户</div>
@@ -479,8 +479,8 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);">
<uni-icons type="wallet" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #e64545 0%, #d32f2f 100%);">
<uni-icons type="wallet-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">未结清贷款本息</div>
@@ -490,8 +490,8 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:onlineLend')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);">
<uni-icons type="person-filled" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #fa709a 0%, #ec407a 100%);">
<uni-icons type="contact-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">人情账户</div>
@@ -499,7 +499,7 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #fddb92 0%, #d1fdff 100%);">
<view class="item-icon" style="background: linear-gradient(135deg, #fa709a 0%, #ec407a 100%);">
<uni-icons type="wallet" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
@@ -510,7 +510,7 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:onlineLend')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);">
<view class="item-icon" style="background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);">
<uni-icons type="calendar-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
@@ -519,8 +519,8 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);">
<uni-icons type="checkbox-filled" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #2d8f3c 0%, #1b5e20 100%);">
<uni-icons type="calendar-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">当月已还款</div>
@@ -530,8 +530,8 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:onlineLend')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);">
<uni-icons type="loop" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #fa709a 0%, #ec407a 100%);">
<uni-icons type="clock" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">当月待还款</div>
@@ -539,8 +539,8 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);">
<uni-icons type="list" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);">
<uni-icons type="compose" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">未结清贷款</div>
@@ -550,8 +550,8 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:onlineLend')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);">
<uni-icons type="wallet-filled" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #e64545 0%, #d32f2f 100%);">
<uni-icons type="wallet" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">未结清贷款本金</div>
@@ -559,7 +559,7 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);">
<view class="item-icon" style="background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);">
<uni-icons type="star" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
@@ -570,8 +570,8 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:onlineLend')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);">
<uni-icons type="checkbox-filled" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #2d8f3c 0%, #1b5e20 100%);">
<uni-icons type="checkmarkempty" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">已结清贷款</div>
@@ -579,8 +579,8 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);">
<uni-icons type="wallet-filled" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #4facfe 0%, #2196f3 100%);">
<uni-icons type="wallet" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">已结清贷款本金</div>
@@ -590,7 +590,7 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:onlineLend')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #fddb92 0%, #d1fdff 100%);">
<view class="item-icon" style="background: linear-gradient(135deg, #5b6cdb 0%, #4527a0 100%);">
<uni-icons type="star" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
@@ -605,8 +605,8 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:posmachine:list')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);">
<uni-icons type="wallet-filled" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #667eea 0%, #5b6cdb 100%);">
<uni-icons type="navigate-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">POS机</div>
@@ -614,7 +614,7 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);">
<view class="item-icon" style="background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);">
<uni-icons type="calendar-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
@@ -625,7 +625,7 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:posmachine:list')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);">
<view class="item-icon" style="background: linear-gradient(135deg, #4facfe 0%, #2196f3 100%);">
<uni-icons type="wallet" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
@@ -634,7 +634,7 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);">
<view class="item-icon" style="background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);">
<uni-icons type="star" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
@@ -645,7 +645,7 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:posmachine:list')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);">
<view class="item-icon" style="background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);">
<uni-icons type="calendar-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
@@ -654,7 +654,7 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);">
<view class="item-icon" style="background: linear-gradient(135deg, #4facfe 0%, #2196f3 100%);">
<uni-icons type="wallet" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
@@ -665,7 +665,7 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:posmachine:list')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);">
<view class="item-icon" style="background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);">
<uni-icons type="star" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
@@ -674,7 +674,7 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);">
<view class="item-icon" style="background: linear-gradient(135deg, #667eea 0%, #5b6cdb 100%);">
<uni-icons type="calendar-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
@@ -685,7 +685,7 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:posmachine:list')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #fddb92 0%, #d1fdff 100%);">
<view class="item-icon" style="background: linear-gradient(135deg, #4facfe 0%, #2196f3 100%);">
<uni-icons type="wallet" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
@@ -694,7 +694,7 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);">
<view class="item-icon" style="background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);">
<uni-icons type="star" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
@@ -709,8 +709,8 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:futureStocks:list')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);">
<uni-icons type="wallet-filled" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #667eea 0%, #5b6cdb 100%);">
<uni-icons type="wallet" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">股票账户</div>
@@ -718,8 +718,8 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);">
<uni-icons type="wallet" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #667eea 0%, #5b6cdb 100%);">
<uni-icons type="wallet-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">期货账户</div>
@@ -729,8 +729,8 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:futureStocks:list')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);">
<uni-icons type="wallet-filled" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #667eea 0%, #5b6cdb 100%);">
<uni-icons type="wallet" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">投资账户余额</div>
@@ -738,8 +738,8 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);">
<uni-icons type="arrow-up" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #f59a23 0%, #f57c00 100%);">
<uni-icons type="star-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">本月投资收益</div>
@@ -749,8 +749,8 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:futureStocks:list')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);">
<uni-icons type="checkmarkempty" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #2d8f3c 0%, #1b5e20 100%);">
<uni-icons type="plus-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">本月投资盈利</div>
@@ -758,8 +758,8 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);">
<uni-icons type="close" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #e64545 0%, #d32f2f 100%);">
<uni-icons type="minus-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">本月投资亏损</div>
@@ -769,7 +769,7 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:futureStocks:list')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);">
<view class="item-icon" style="background: linear-gradient(135deg, #f59a23 0%, #f57c00 100%);">
<uni-icons type="star-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
@@ -778,8 +778,8 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #fddb92 0%, #d1fdff 100%);">
<uni-icons type="arrow-up" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #5b6cdb 0%, #4527a0 100%);">
<uni-icons type="star" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">期货收益</div>
@@ -789,8 +789,8 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:futureStocks:list')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);">
<uni-icons type="arrow-up" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #5b6cdb 0%, #4527a0 100%);">
<uni-icons type="star" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">股票收益</div>
@@ -804,8 +804,8 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:creditQueryRecord:list')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);">
<uni-icons type="search" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);">
<uni-icons type="list" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">近1月硬查询</div>
@@ -813,8 +813,8 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);">
<uni-icons type="search" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);">
<uni-icons type="list" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">近2月硬查询</div>
@@ -824,8 +824,8 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:creditQueryRecord:list')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);">
<uni-icons type="search" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);">
<uni-icons type="list" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">近3月硬查询</div>
@@ -833,8 +833,8 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);">
<uni-icons type="search" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);">
<uni-icons type="list" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">近6月硬查询</div>
@@ -844,8 +844,8 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:creditQueryRecord:list')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);">
<uni-icons type="search" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);">
<uni-icons type="list" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">近1年硬查询</div>
@@ -853,8 +853,8 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);">
<uni-icons type="search" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);">
<uni-icons type="list" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">近2年硬查询</div>
@@ -864,8 +864,8 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:creditQueryRecord:list')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);">
<uni-icons type="star-filled" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #e64545 0%, #d32f2f 100%);">
<uni-icons type="list" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">总硬查询</div>
@@ -873,7 +873,7 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #fddb92 0%, #d1fdff 100%);">
<view class="item-icon" style="background: linear-gradient(135deg, #4facfe 0%, #2196f3 100%);">
<uni-icons type="person-filled" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
@@ -884,8 +884,8 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:creditQueryRecord:list')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);">
<uni-icons type="bars" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #5b6cdb 0%, #4527a0 100%);">
<uni-icons type="settings" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">近6月贷后管理</div>
@@ -893,8 +893,8 @@
</div>
</div>
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);">
<uni-icons type="bars" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #5b6cdb 0%, #4527a0 100%);">
<uni-icons type="settings" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">近2年贷后管理</div>
@@ -904,8 +904,8 @@
</div>
<div class="header-con" v-show="auth.hasPermi('invest:creditQueryRecord:list')" ref="searchHeightRef">
<div class="item">
<view class="item-icon" style="background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);">
<uni-icons type="star-filled" size="20" color="#ffffff"></uni-icons>
<view class="item-icon" style="background: linear-gradient(135deg, #667eea 0%, #5b6cdb 100%);">
<uni-icons type="settings" size="20" color="#ffffff"></uni-icons>
</view>
<div class="info-sum">
<div class="title">贷后管理总数</div>
@@ -1142,6 +1142,13 @@ onMounted(() => {
margin-bottom: 8rpx;
background-color: #ffffff;
&:first-child {
position: sticky;
top: 0;
z-index: 100;
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.08);
}
.title-line {
width: 6rpx;
height: 32rpx;

View File

@@ -361,7 +361,7 @@ page {
}
.content-section {
margin-top: -60rpx;
margin-top: -40rpx;
padding: 60rpx 32rpx 32rpx;
position: relative;
z-index: 2;

View File

@@ -69,28 +69,28 @@
const billGridList=ref([
{ path: '/pages/statistic/bill/creditBillAnalysis/index', text: '信用卡账单统计', icon: 'wallet-filled', color: 'linear-gradient(135deg, #667eea 0%, #764ba2 100%)', permission: 'invest:creditAnalysis:list' },
{ path: '/pages/statistic/bill/creditInstallmentAnalysis/index', text: '信用卡分期待还', icon: 'calendar-filled', color: 'linear-gradient(135deg, #f093fb 0%, #f5576c 100%)', permission: 'invest:creditInstallment:list' },
{ path: '/pages/statistic/bill/creditInstallmentSettledAnalysis/index', text: '信用卡分期已还', icon: 'checkbox-filled', color: 'linear-gradient(135deg, #4facfe 0%, #00f2fe 100%)', permission: 'invest:creditInstallmentSettledAnalysis:list' },
{ path: '/pages/statistic/bill/onlineLendAnalysis/index', text: '贷款待还统计', icon: 'upload-filled', color: 'linear-gradient(135deg, #43e97b 0%, #38f9d7 100%)', permission: 'invest:onlineLendAnalysis:list' },
{ path: '/pages/statistic/bill/onlineLendSettledAnalysis/index', text: '贷款已还统计', icon: 'download-filled', color: 'linear-gradient(135deg, #fa709a 0%, #fee140 100%)', permission: 'invest:onlineLendSettledAnalysis:list' },
{ path: '/pages/statistic/bill/creditRecordAnalysis/index', text: '征信查询统计', icon: 'search', color: 'linear-gradient(135deg, #a8edea 0%, #fed6e3 100%)', permission: 'invest:creditRecordAnalysis:list' }
{ path: '/pages/statistic/bill/creditInstallmentSettledAnalysis/index', text: '信用卡分期已还', icon: 'checkmarkempty', color: 'linear-gradient(135deg, #11998e 0%, #38ef7d 100%)', permission: 'invest:creditInstallmentSettledAnalysis:list' },
{ path: '/pages/statistic/bill/onlineLendAnalysis/index', text: '贷款待还统计', icon: 'upload-filled', color: 'linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%)', permission: 'invest:onlineLendAnalysis:list' },
{ path: '/pages/statistic/bill/onlineLendSettledAnalysis/index', text: '贷款已还统计', icon: 'download-filled', color: 'linear-gradient(135deg, #0be881 0%, #0fbcf9 100%)', permission: 'invest:onlineLendSettledAnalysis:list' },
{ path: '/pages/statistic/bill/creditRecordAnalysis/index', text: '征信查询统计', icon: 'search', color: 'linear-gradient(135deg, #5f72bd 0%, #9b23ea 100%)', permission: 'invest:creditRecordAnalysis:list' }
])
const accountGridList=ref([
{ path: '/pages/statistic/accounts/accountsBalance/index', text: '记账账户统计', icon: 'home-filled', color: 'linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%)', permission: 'invest:accountsBalance:list' },
{ path: '/pages/statistic/accounts/accountDealAnalysis/index', text: '账户收支统计', icon: 'list', color: 'linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%)', permission: 'invest:accountDealAnalysis:list' },
{ path: '/pages/statistic/accounts/dailyExpensesAnalysis/index', text: '日常支出统计', icon: 'wallet', color: 'linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%)', permission: 'invest:dailyExpensesAnalysis:list' },
{ path: '/pages/statistic/accounts/creditCardDealAnalysis/index', text: '信用卡收支统计', icon: 'wallet-filled', color: 'linear-gradient(135deg, #fddb92 0%, #d1fdff 100%)', permission: 'invest:creditCard' },
{ path: '/pages/statistic/accounts/debitDealAnalysis/index', text: '储蓄账户统计', icon: 'paperplane', color: 'linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%)', permission: 'invest:debitCard' },
{ path: '/pages/statistic/accounts/debitCardAnalysis/index', text: '结算卡统计', icon: 'star', color: 'linear-gradient(135deg, #667eea 0%, #764ba2 100%)', permission: 'invest:debitCardAnalysis:list' },
{ path: '/pages/statistic/accounts/posStatics/index', text: 'POS机统计', icon: 'shop-filled', color: 'linear-gradient(135deg, #f093fb 0%, #f5576c 100%)', permission: 'invest:posStatics:list' },
{ path: '/pages/statistic/accounts/sleepAccounts/index', text: '睡眠账户统计', icon: 'eye-slash-filled', color: 'linear-gradient(135deg, #4facfe 0%, #00f2fe 100%)', permission: 'invest:debitCard' },
{ path: '/pages/statistic/accounts/openCardStatics/index', text: '储蓄卡开卡统计', icon: 'gift-filled', color: 'linear-gradient(135deg, #43e97b 0%, #38f9d7 100%)', permission: 'invest:debitCard' },
{ path: '/pages/statistic/accounts/dailyLiabilities/index', text: '每日净资产统计', icon: 'bars', color: 'linear-gradient(135deg, #fa709a 0%, #fee140 100%)', permission: 'invest:dailyLiabilities:list' },
{ path: '/pages/statistic/accounts/accountsBalance/index', text: '记账账户统计', icon: 'home-filled', color: 'linear-gradient(135deg, #667eea 0%, #764ba2 100%)', permission: 'invest:accountsBalance:list' },
{ path: '/pages/statistic/accounts/accountDealAnalysis/index', text: '账户收支统计', icon: 'list', color: 'linear-gradient(135deg, #fa709a 0%, #fee140 100%)', permission: 'invest:accountDealAnalysis:list' },
{ path: '/pages/statistic/accounts/dailyExpensesAnalysis/index', text: '日常支出统计', icon: 'wallet', color: 'linear-gradient(135deg, #f6d365 0%, #fda085 100%)', permission: 'invest:dailyExpensesAnalysis:list' },
{ path: '/pages/statistic/accounts/creditCardDealAnalysis/index', text: '信用卡收支统计', icon: 'vip-filled', color: 'linear-gradient(135deg, #d38cff 0%, #9d50bb 100%)', permission: 'invest:creditCard' },
{ path: '/pages/statistic/accounts/debitDealAnalysis/index', text: '储蓄账户统计', icon: 'paperplane', color: 'linear-gradient(135deg, #00b4db 0%, #0083b0 100%)', permission: 'invest:debitCard' },
{ path: '/pages/statistic/accounts/debitCardAnalysis/index', text: '结算卡统计', icon: 'star', color: 'linear-gradient(135deg, #fa8231 0%, #f7971e 100%)', permission: 'invest:debitCardAnalysis:list' },
{ path: '/pages/statistic/accounts/posStatics/index', text: 'POS机统计', icon: 'navigate-filled', color: 'linear-gradient(135deg, #0be881 0%, #0fbcf9 100%)', permission: 'invest:posStatics:list' },
{ path: '/pages/statistic/accounts/sleepAccounts/index', text: '睡眠账户统计', icon: 'eye-slash-filled', color: 'linear-gradient(135deg, #636e72 0%, #2d3436 100%)', permission: 'invest:debitCard' },
{ path: '/pages/statistic/accounts/openCardStatics/index', text: '储蓄卡开卡统计', icon: 'gift-filled', color: 'linear-gradient(135deg, #fd79a8 0%, #e84393 100%)', permission: 'invest:debitCard' },
{ path: '/pages/statistic/accounts/dailyLiabilities/index', text: '每日净资产统计', icon: 'bars', color: 'linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%)', permission: 'invest:dailyLiabilities:list' },
])
const investGridList=ref([
{ path: '/pages/statistic/accounts/investDealAnalysis/index', text: '投资收益统计', icon: 'arrow-up', color: 'linear-gradient(135deg, #a8edea 0%, #fed6e3 100%)', permission: 'invest:investDealAnalysis:list' },
{ path: '/pages/statistic/bill/investAnalysis/index', text: '收益统计分析', icon: 'settings', color: 'linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%)', permission: 'invest:investAnalysis:list'},
{ path: '/pages/statistic/bill/futuresAnalysis/index', text: '期货统计分析', icon: 'navigate', color: 'linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%)', permission: 'invest:futuresAnalysis:list'},
{ path: '/pages/statistic/bill/stocksAnalysis/index', text: '股票统计分析', icon: 'flag', color: 'linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%)', permission: 'invest:stocksAnalysis:list' }
{ path: '/pages/statistic/accounts/investDealAnalysis/index', text: '投资收益统计', icon: 'arrow-up', color: 'linear-gradient(135deg, #11998e 0%, #38ef7d 100%)', permission: 'invest:investDealAnalysis:list' },
{ path: '/pages/statistic/bill/investAnalysis/index', text: '收益统计分析', icon: 'settings', color: 'linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%)', permission: 'invest:investAnalysis:list'},
{ path: '/pages/statistic/bill/futuresAnalysis/index', text: '期货统计分析', icon: 'fire', color: 'linear-gradient(135deg, #fc5c65 0%, #fd79a8 100%)', permission: 'invest:futuresAnalysis:list'},
{ path: '/pages/statistic/bill/stocksAnalysis/index', text: '股票统计分析', icon: 'flag-filled', color: 'linear-gradient(135deg, #5f72bd 0%, #9b23ea 100%)', permission: 'invest:stocksAnalysis:list' }
])
function navigateTo(path) {
uni.navigateTo({

View File

@@ -90,45 +90,36 @@
<u-list-item v-for="(item, index) in listData" :key="index">
<view class="list-item" @click="enterDetails(item)">
<view class="item-header">
<view class="date-row">
<view class="first-row">
<view class="card-icon">
<uni-icons type="wallet-filled" size="20" color="#ffffff"></uni-icons>
</view>
<text class="card-name">{{ item.accountName }}</text>
<text class="card-date">{{ item.createTime }}</text>
</view>
<view class="info-row">
<text class="card-name">{{ item.accountName }}</text>
<view class="profit-tag" :class="item.dealType === '1' ? 'income' : 'expense'">
<text>{{ dictStr(item.dealType, dealTypeList) }}</text>
<view class="second-row">
<text class="account-type">{{ dictStr(item.type, accountTypeList) }}</text>
<text class="deal-category">{{ dictStr(item.dealCategory, dealCategoryList) }}</text>
<text class="child-category" v-if="item.childCategory && item.childCategory != item.dealCategory">{{ item.childCategoryName }}</text>
<view class="right-group">
<view class="profit-tag" :class="item.dealType === '1' ? 'income' : 'expense'">
<text>{{ dictStr(item.dealType, dealTypeList) }}</text>
</view>
<text class="card-amount" :class="item.dealType === '1' ? 'income' : 'expense'"><text class="amount-value">{{ item.amount }}</text></text>
</view>
<text class="card-amount" :class="item.dealType === '1' ? 'income' : 'expense'"><text class="amount-value">{{ item.amount }}</text></text>
</view>
</view>
<view class="card-body" @click.stop>
<view class="info-grid">
<view class="card-body">
<view class="info-row">
<view class="info-item">
<text class="info-label">记账类型</text>
<text class="info-value">{{ dictStr(item.type, accountTypeList) }}</text>
</view>
<view class="info-item">
<text class="info-label">当前余额</text>
<text class="info-label">余额</text>
<text class="info-value">{{ item.currentBalance }}</text>
</view>
</view>
<view class="info-grid">
<view class="info-item">
<text class="info-label">交易类别</text>
<text class="info-value">{{ dictStr(item.dealCategory, dealCategoryList) }}</text>
<view class="info-item" v-if="item.remark">
<text class="info-label">备注</text>
<text class="info-remark">{{ item.remark }}</text>
</view>
<view class="info-item" v-if="item.childCategory && item.childCategory != item.dealCategory">
<text class="info-label">交易子类别</text>
<text class="info-value">{{ item.childCategoryName }}</text>
</view>
</view>
<view class="info-full" v-if="item.remark">
<text class="info-label">备注</text>
<text class="info-remark">{{ item.remark }}</text>
</view>
</view>
@@ -552,7 +543,7 @@ function selectAccountType(item) {
padding: 24rpx;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
.date-row {
.first-row {
display: flex;
align-items: center;
gap: 12rpx;
@@ -568,25 +559,9 @@ function selectAccountType(item) {
justify-content: center;
flex-shrink: 0;
}
.card-date {
font-size: 26rpx;
color: rgba(255, 255, 255, 0.9);
font-weight: 500;
line-height: 1.3;
}
.info-row {
display: flex;
justify-content: space-between;
align-items: center;
gap: 16rpx;
padding-top: 12rpx;
border-top: 1rpx solid rgba(255, 255, 255, 0.2);
}
.card-name {
font-size: 28rpx;
font-size: 30rpx;
font-weight: 600;
color: #ffffff;
line-height: 1.3;
@@ -596,12 +571,61 @@ function selectAccountType(item) {
text-overflow: ellipsis;
white-space: nowrap;
}
.card-date {
font-size: 30rpx;
color: rgba(255, 255, 255, 0.9);
font-weight: 500;
line-height: 1.3;
white-space: nowrap;
flex-shrink: 0;
}
.second-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12rpx;
padding-top: 12rpx;
border-top: 1rpx solid rgba(255, 255, 255, 0.2);
}
.deal-category {
font-size: 28rpx;
color: rgba(255, 255, 255, 0.9);
font-weight: 500;
white-space: nowrap;
flex-shrink: 0;
}
.account-type {
font-size: 28rpx;
color: rgba(255, 255, 255, 0.85);
font-weight: 500;
white-space: nowrap;
flex: 1;
}
.child-category {
font-size: 26rpx;
color: rgba(255, 255, 255, 0.8);
font-weight: 400;
white-space: nowrap;
flex-shrink: 0;
}
.right-group {
display: flex;
align-items: center;
gap: 12rpx;
flex-shrink: 0;
}
.profit-tag {
padding: 6rpx 16rpx;
padding: 6rpx 14rpx;
border-radius: 12rpx;
font-size: 24rpx;
font-weight: 500;
font-weight: 600;
line-height: 1;
flex-shrink: 0;
@@ -617,8 +641,8 @@ function selectAccountType(item) {
}
.card-amount {
font-size: 24rpx;
font-weight: 500;
font-size: 26rpx;
font-weight: 600;
line-height: 1.3;
white-space: nowrap;
flex-shrink: 0;
@@ -632,7 +656,7 @@ function selectAccountType(item) {
}
.amount-value {
font-size: 40rpx;
font-size: 34rpx;
font-weight: 700;
margin-right: 4rpx;
}
@@ -640,59 +664,55 @@ function selectAccountType(item) {
}
.card-body {
padding: 24rpx;
background: #fff;
padding: 16rpx 24rpx;
background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
display: flex;
flex-direction: column;
gap: 16rpx;
}
.info-grid {
display: flex;
gap: 16rpx;
}
.info-row {
display: flex;
align-items: center;
gap: 24rpx;
.info-item {
display: flex;
align-items: center;
gap: 12rpx;
flex-shrink: 0;
&:last-child {
flex: 1;
min-width: 0;
}
}
.info-item {
flex: 1;
display: flex;
flex-direction: column;
gap: 6rpx;
min-width: 0;
.info-label {
font-size: 22rpx;
color: #999;
font-weight: 400;
flex-shrink: 0;
padding: 4rpx 12rpx;
background: rgba(102, 126, 234, 0.08);
border-radius: 8rpx;
}
.info-label {
font-size: 22rpx;
color: #999;
font-weight: 400;
}
.info-value {
font-size: 26rpx;
color: #333;
font-weight: 500;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
.info-full {
display: flex;
flex-direction: column;
gap: 8rpx;
padding-top: 8rpx;
border-top: 1rpx solid #f0f0f0;
.info-label {
font-size: 22rpx;
color: #999;
font-weight: 400;
}
.info-remark {
font-size: 26rpx;
color: #666;
line-height: 1.5;
word-break: break-all;
.info-value {
font-size: 28rpx;
color: #667eea;
font-weight: 600;
flex-shrink: 0;
}
.info-remark {
font-size: 24rpx;
color: #666;
line-height: 1.4;
flex: 1;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-style: italic;
}
}
}

View File

@@ -7,7 +7,6 @@
>
</u-navbar>
<view class="section">
<view class="section-title">{{ title}}</view>
<view class="form-view">
<u--form labelPosition="left" :model="form" :rules="rules" ref="uForm" label-width="auto"
:labelStyle="{ color: '#333333', fontSize: '30rpx' }">

View File

@@ -9,7 +9,7 @@
<view class="detail-card">
<view class="card-header">
<view class="card-title">
<uni-icons type="heart" size="24" color="#fff"></uni-icons>
<uni-icons type="heart" size="20" color="#fff"></uni-icons>
<text class="card-name">{{ detailInfo.name }}</text>
</view>
</view>
@@ -89,7 +89,7 @@ onLoad((option) => {
.card-header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 32rpx;
padding: 12rpx 20rpx;
display: flex;
justify-content: space-between;
align-items: center;
@@ -97,12 +97,13 @@ onLoad((option) => {
.card-title {
display: flex;
align-items: center;
gap: 12rpx;
gap: 8rpx;
.card-name {
color: #fff;
font-size: 36rpx;
font-size: 28rpx;
font-weight: bold;
line-height: 1;
}
}
}

View File

@@ -22,10 +22,14 @@
</view>
</view>
<view class="btn-box">
<u-button text="重置" @click="resetQuery()"
customStyle="flex: 1; background: #f5f7fa; color: #666666; border: none; border-radius: 12rpx; font-size: 30rpx; height: 88rpx;"></u-button>
<u-button type="primary" text="确定" @click="searchSubmit()"
customStyle="flex: 2; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); border: none; border-radius: 12rpx; font-size: 30rpx; font-weight: 600; height: 88rpx; box-shadow: 0 4rpx 12rpx rgba(102, 126, 234, 0.3);"></u-button>
<view class="btn-reset" @click="resetQuery()">
<uni-icons type="reload" size="16" color="#909399"></uni-icons>
<text>重置</text>
</view>
<view class="btn-confirm" @click="searchSubmit()">
<uni-icons type="checkmarkempty" size="16" color="#ffffff"></uni-icons>
<text>确定</text>
</view>
</view>
</view>
</u-transition>
@@ -207,17 +211,26 @@ function selectStatus(item) {
}
function handleDelete(item) {
uni.showModal({
title: '提示',
content: '确定要删除',
success: function (res) {
if (res.confirm) {
delHeartJourney(item.id)
uni.navigateTo({ url: `/pages/work/heartJourney/list` })
} else if (res.cancel) {
console.log('取消');
}
}
});
title: '确认删除',
content: '确定要删除这条记录吗?',
confirmText: '删除',
cancelText: '取消',
confirmColor: '#f5576c',
cancelColor: '#909399',
success: function (res) {
if (res.confirm) {
delHeartJourney(item.id).then(() => {
uni.showToast({
title: '删除成功',
icon: 'success'
})
pageNum.value = 1
listData.value = []
getList()
})
}
}
});
}
</script>
@@ -326,6 +339,49 @@ function selectStatus(item) {
padding: 24rpx 30rpx;
background-color: #fff;
box-shadow: 0rpx -10rpx 20rpx #EEEEEE;
.btn-reset,
.btn-confirm {
display: flex;
align-items: center;
justify-content: center;
gap: 8rpx;
height: 88rpx;
border-radius: 12rpx;
font-size: 30rpx;
font-weight: 600;
transition: all 0.3s ease;
&:active {
transform: scale(0.98);
opacity: 0.9;
}
text {
line-height: 1;
}
}
.btn-reset {
flex: 1;
background: #f5f7fa;
border: 2rpx solid #dcdfe6;
text {
color: #606266;
}
}
.btn-confirm {
flex: 1;
background: #667eea;
box-shadow: 0 2rpx 8rpx rgba(102, 126, 234, 0.2);
border: none;
text {
color: #ffffff;
}
}
}
}
}
@@ -341,7 +397,7 @@ function selectStatus(item) {
display: flex;
justify-content: space-between;
align-items: center;
padding: 24rpx;
padding: 12rpx 20rpx;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
.card-name-section {
@@ -352,14 +408,14 @@ function selectStatus(item) {
}
.card-icon {
width: 56rpx;
height: 56rpx;
width: 40rpx;
height: 40rpx;
background: rgba(255, 255, 255, 0.2);
border-radius: 16rpx;
border-radius: 10rpx;
display: flex;
align-items: center;
justify-content: center;
margin-right: 16rpx;
margin-right: 10rpx;
flex-shrink: 0;
backdrop-filter: blur(10rpx);
}
@@ -373,9 +429,9 @@ function selectStatus(item) {
.card-name {
color: #ffffff;
font-size: 32rpx;
font-size: 28rpx;
font-weight: 600;
line-height: 1.2;
line-height: 1.3;
}
}
}

View File

@@ -90,37 +90,37 @@ import auth from "@/plugins/auth"; // 建议使用auth进行鉴权操作
import { ref } from "vue";
const commonGridList=ref([
{ path: '/pages/work/heartJourney/list', text: '心路历程', icon: 'heart-filled', color: 'linear-gradient(135deg, #f093fb 0%, #f5576c 100%)', permission: 'invest:heartJourney:list' },
{ path: '/pages/work/accounts/accountDealRecord/list', text: '账户交易记录', icon: 'list', color: 'linear-gradient(135deg, #4facfe 0%, #00f2fe 100%)', permission: 'invest:accountDealRecord:list' },
{ path: '/pages/work/accounts/posadvice/list', text: 'POS刷卡推荐', icon: 'star-filled', color: 'linear-gradient(135deg, #43e97b 0%, #38f9d7 100%)', permission: 'invest:posmachine:list' },
{ path: '/pages/work/accounts/posTransferRecord/list', text: 'POS机刷卡记账', icon: 'reload', color: 'linear-gradient(135deg, #fa709a 0%, #fee140 100%)', permission: 'invest:posmachine:list' },
{ path: '/pages/work/accounts/creditTransferRecord/list', text: '信用卡还款', icon: 'redo', color: 'linear-gradient(135deg, #a8edea 0%, #fed6e3 100%)', permission: 'invest:creditCard' },
{ path: '/pages/work/accounts/investAccountDeal/list', text: '投资交易记录', icon: 'chatboxes', color: 'linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%)', permission: 'invest:futureStocks:list' },
{ path: '/pages/work/accounts/investTransferRecord/list', text: '投资账户记账', icon: 'checkbox-filled', color: 'linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%)', permission: 'invest:futureStocks:list' },
{ path: '/pages/work/accounts/debitTransferRecord/list', text: '储蓄账户转账', icon: 'loop', color: 'linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%)', permission: 'invest:debitCard' },
{ path: '/pages/work/accounts/accountDealRecord/list', text: '账户交易记录', icon: 'list', color: 'linear-gradient(135deg, #667eea 0%, #764ba2 100%)', permission: 'invest:accountDealRecord:list' },
{ path: '/pages/work/accounts/posadvice/list', text: 'POS刷卡推荐', icon: 'star-filled', color: 'linear-gradient(135deg, #d38cff 0%, #9d50bb 100%)', permission: 'invest:posmachine:list' },
{ path: '/pages/work/accounts/posTransferRecord/list', text: 'POS机刷卡记账', icon: 'checkmarkempty', color: 'linear-gradient(135deg, #17c0eb 0%, #f368e0 100%)', permission: 'invest:posmachine:list' },
{ path: '/pages/work/accounts/creditTransferRecord/list', text: '信用卡还款', icon: 'redo', color: 'linear-gradient(135deg, #fa709a 0%, #fee140 100%)', permission: 'invest:creditCard' },
{ path: '/pages/work/accounts/investAccountDeal/list', text: '投资交易记录', icon: 'bars', color: 'linear-gradient(135deg, #00b4db 0%, #0083b0 100%)', permission: 'invest:futureStocks:list' },
{ path: '/pages/work/accounts/investTransferRecord/list', text: '投资账户记账', icon: 'compose', color: 'linear-gradient(135deg, #4facfe 0%, #00f2fe 100%)', permission: 'invest:futureStocks:list' },
{ path: '/pages/work/accounts/debitTransferRecord/list', text: '储蓄账户转账', icon: 'loop', color: 'linear-gradient(135deg, #11998e 0%, #38ef7d 100%)', permission: 'invest:debitCard' },
{ path: '/pages/work/bill/creditCardBill/list', text: '信用卡账单', icon: 'wallet-filled', color: 'linear-gradient(135deg, #667eea 0%, #764ba2 100%)', permission: 'invest:creditCardBill:list' },
{ path: '/pages/work/bill/onlineLendHistory/list', text: '贷款账单', icon: 'fire-filled', color: 'linear-gradient(135deg, #f857a6 0%, #ff5858 100%)', permission: 'invest:onlineLend' },
{ path: '/pages/work/bill/creditInstallmentHistory/list', text: '信用卡分期账单', icon: 'calendar-filled', color: 'linear-gradient(135deg, #fddb92 0%, #d1fdff 100%)', permission: 'invest:creditCard' },
{ path: '/pages/work/bill/creditQueryRecord/list', text: '征信查询记录', icon: 'search', color: 'linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%)', permission: 'invest:creditQueryRecord:list' }
{ path: '/pages/work/bill/onlineLendHistory/list', text: '贷款账单', icon: 'calendar', color: 'linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%)', permission: 'invest:onlineLend' },
{ path: '/pages/work/bill/creditInstallmentHistory/list', text: '信用卡分期账单', icon: 'calendar-filled', color: 'linear-gradient(135deg, #f6d365 0%, #fda085 100%)', permission: 'invest:creditCard' },
{ path: '/pages/work/bill/creditQueryRecord/list', text: '征信查询记录', icon: 'search', color: 'linear-gradient(135deg, #5f72bd 0%, #9b23ea 100%)', permission: 'invest:creditQueryRecord:list' }
])
const baseGridList=ref([
{ path: '/pages/work/base/debitCard/list', text: '储蓄账户管理', icon: 'wallet-filled', color: 'linear-gradient(135deg, #667eea 0%, #764ba2 100%)', permission: 'invest:debitCard' },
{ path: '/pages/work/base/creditCard/list', text: '信用卡管理', icon: 'wallet', color: 'linear-gradient(135deg, #f093fb 0%, #f5576c 100%)', permission: 'invest:creditCard' },
{ path: '/pages/work/base/lend/list', text: '借贷账户管理', icon: 'upload-filled', color: 'linear-gradient(135deg, #4facfe 0%, #00f2fe 100%)', permission: 'invest:onlineLend' },
{ path: '/pages/work/base/posmachine/list', text: 'pos机管理', icon: 'shop-filled', color: 'linear-gradient(135deg, #43e97b 0%, #38f9d7 100%)', permission: 'invest:posmachine:list' },
{ path: '/pages/work/base/financials/list', text: '理财账户管理', icon: 'star', color: 'linear-gradient(135deg, #fa709a 0%, #fee140 100%)', permission: 'invest:futureStocks:list' },
{ path: '/pages/work/base/stocks/list', text: '股票账户管理', icon: 'bars', color: 'linear-gradient(135deg, #a8edea 0%, #fed6e3 100%)', permission: 'invest:futureStocks:list' },
{ path: '/pages/work/base/futures/list', text: '期货账户管理', icon: 'navigate', color: 'linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%)', permission: 'invest:futureStocks:list' },
{ path: '/pages/work/product/productInfor/list', text: '商品信息', icon: 'gift-filled', color: 'linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%)', permission: 'invest:productInfor:list' }
{ path: '/pages/work/base/debitCard/list', text: '储蓄账户管理', icon: 'home-filled', color: 'linear-gradient(135deg, #667eea 0%, #764ba2 100%)', permission: 'invest:debitCard' },
{ path: '/pages/work/base/creditCard/list', text: '信用卡管理', icon: 'vip-filled', color: 'linear-gradient(135deg, #fa709a 0%, #fee140 100%)', permission: 'invest:creditCard' },
{ path: '/pages/work/base/lend/list', text: '借贷账户管理', icon: 'upload-filled', color: 'linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%)', permission: 'invest:onlineLend' },
{ path: '/pages/work/base/posmachine/list', text: 'pos机管理', icon: 'navigate-filled', color: 'linear-gradient(135deg, #0be881 0%, #0fbcf9 100%)', permission: 'invest:posmachine:list' },
{ path: '/pages/work/base/financials/list', text: '理财账户管理', icon: 'star', color: 'linear-gradient(135deg, #f6d365 0%, #fda085 100%)', permission: 'invest:futureStocks:list' },
{ path: '/pages/work/base/stocks/list', text: '股票账户管理', icon: 'arrow-up', color: 'linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%)', permission: 'invest:futureStocks:list' },
{ path: '/pages/work/base/futures/list', text: '期货账户管理', icon: 'fire', color: 'linear-gradient(135deg, #fc5c65 0%, #fd79a8 100%)', permission: 'invest:futureStocks:list' },
{ path: '/pages/work/product/productInfor/list', text: '商品信息', icon: 'gift-filled', color: 'linear-gradient(135deg, #fd79a8 0%, #e84393 100%)', permission: 'invest:productInfor:list' }
])
const billGridList=ref([
{ path: '/pages/work/bill/peopleLendHistory/list', text: '人情账单', icon: 'person-filled', color: 'linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%)', permission: 'invest:onlineLend' },
{ path: '/pages/work/bill/futuresBill/list', text: '期货账单', icon: 'navigate-filled', color: 'linear-gradient(135deg, #fddb92 0%, #d1fdff 100%)', permission: 'invest:futureStocksBill:list' },
{ path: '/pages/work/bill/stocksBill/list', text: '股票账单', icon: 'flag-filled', color: 'linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%)', permission: 'invest:futureStocksBill:list' }
{ path: '/pages/work/bill/peopleLendHistory/list', text: '人情账单', icon: 'person-filled', color: 'linear-gradient(135deg, #fa8231 0%, #f7971e 100%)', permission: 'invest:onlineLend' },
{ path: '/pages/work/bill/futuresBill/list', text: '期货账单', icon: 'eye-filled', color: 'linear-gradient(135deg, #636e72 0%, #2d3436 100%)', permission: 'invest:futureStocksBill:list' },
{ path: '/pages/work/bill/stocksBill/list', text: '股票账单', icon: 'flag-filled', color: 'linear-gradient(135deg, #5f72bd 0%, #9b23ea 100%)', permission: 'invest:futureStocksBill:list' }
])
const accountGridList=ref([
{ path: '/pages/work/accounts/accounts/list', text: '记账账户', icon: 'home-filled', color: 'linear-gradient(135deg, #667eea 0%, #764ba2 100%)', permission: 'invest:accounts:list' },
{ path: '/pages/work/accounts/lendTransferRecord/list', text: '借贷账户记账', icon: 'link', color: 'linear-gradient(135deg, #f093fb 0%, #f5576c 100%)', permission: 'invest:onlineLend' },
{ path: '/pages/work/product/productPriceRecord/list', text: '物价记录', icon: 'cart-filled', color: 'linear-gradient(135deg, #4facfe 0%, #00f2fe 100%)', permission: 'invest:productPriceRecord:list' }
{ path: '/pages/work/accounts/accounts/list', text: '记账账户', icon: 'wallet', color: 'linear-gradient(135deg, #f6d365 0%, #fda085 100%)', permission: 'invest:accounts:list' },
{ path: '/pages/work/accounts/lendTransferRecord/list', text: '借贷账户记账', icon: 'link', color: 'linear-gradient(135deg, #fd79a8 0%, #e84393 100%)', permission: 'invest:onlineLend' },
{ path: '/pages/work/product/productPriceRecord/list', text: '物价记录', icon: 'cart-filled', color: 'linear-gradient(135deg, #0be881 0%, #0fbcf9 100%)', permission: 'invest:productPriceRecord:list' }
])
const heartJourneyGridList=ref([
{ path: '/pages/work/heartJourney/list', text: '心路历程', icon: 'heart', permission: 'invest:heartJourney:list' }