fix: 功能优化完善,样式相关。

This commit is contained in:
tianyongbao
2025-11-16 23:15:45 +08:00
parent 9d6e505697
commit 0e8db750d9
65 changed files with 6498 additions and 4216 deletions

View File

@@ -1,15 +1,16 @@
<template>
<view class="container">
<u-sticky offsetTop="8rpx" customNavHeight="8rpx">
<u-sticky offsetTop="-10rpx" customNavHeight="0rpx">
<view class="search-view">
<u--input v-model="queryParams.name" border="false" placeholder="请输入储蓄账户名称" class="search-input"
<u--input v-model="queryParams.name" border="false" placeholder="请输入账户名称" class="search-input"
@blur="searchBlur" suffixIcon="search" suffixIconStyle="color: #909399">
</u--input>
<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>
<view class="filter-btn" @click="filterPanel = !filterPanel">
<uni-icons type="list" size="18" color="#667eea"></uni-icons>
<text>筛选</text>
</view>
<view class="add-btn" @click="handleAdd()">
<uni-icons type="plus-filled" size="18" color="#ffffff"></uni-icons>
<uni-icons type="plusempty" size="18" color="#667eea"></uni-icons>
<text>新增</text>
</view>
<u-transition :show="filterPanel" mode="fade">
@@ -22,10 +23,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>
@@ -40,42 +45,39 @@
<uni-icons type="wallet-filled" size="20" color="#ffffff"></uni-icons>
</view>
<view class="card-info">
<text class="card-name">{{ item.name }}</text>
<text class="card-code">{{ item.code }}</text>
<text class="card-name">{{ item.name }}<text class="card-code" v-if="item.code">({{ item.code }})</text></text>
</view>
</view>
<view class="status-badge" :class="getStatusClass(item.status, dictStr(item.status, statusList))">
<text>{{ dictStr(item.status, statusList) }}</text>
<view class="balance-section">
<text class="balance-value"><text class="balance-label">余额</text>{{ item.balance }}</text>
</view>
</view>
<view class="card-body">
<view class="info-row">
<view class="info-item">
<view class="info-item" v-if="dictStr(item.debitType, debitTypeList) || true">
<text class="info-label">账户类型</text>
<text class="info-value">{{ dictStr(item.debitType, debitTypeList) }}</text>
<text class="info-value">{{ dictStr(item.debitType, debitTypeList) || '--' }}</text>
</view>
<view class="info-item">
<text class="info-label">余额</text>
<text class="info-value orange">{{ item.balance }}</text>
<view class="info-item" v-if="dictStr(item.status, statusList) || true">
<text class="info-label">账户状态</text>
<text class="info-value" :class="getStatusClass(item.status, dictStr(item.status, statusList))">{{ dictStr(item.status, statusList) || '--' }}</text>
</view>
</view>
<view class="info-row">
<view class="info-item">
<view class="info-item" v-if="item.activationDate || true">
<text class="info-label">开户日期</text>
<text class="info-value">{{ item.activationDate }}</text>
<text class="info-value">{{ item.activationDate || '--' }}</text>
</view>
<view class="info-item">
<view class="info-item" v-if="item.effectiveDate || true">
<text class="info-label">有效期</text>
<text class="info-value">{{ item.effectiveDate }}</text>
<text class="info-value">{{ item.effectiveDate || '--' }}</text>
</view>
</view>
<view class="info-row">
<view class="info-item">
<view class="info-item info-item-full" v-if="item.openingBank || true">
<text class="info-label">开户行</text>
<text class="info-value">{{ item.openingBank || '-' }}</text>
<text class="info-value">{{ item.openingBank || '--' }}</text>
</view>
<view class="info-item info-item-full" v-if="item.remark">
<text class="info-label">备注</text>
<text class="info-value">{{ item.remark }}</text>
</view>
</view>
</view>
@@ -199,6 +201,17 @@ function dictStr(val, arr) {
})
return str
}
function formatCardCode(code) {
if (!code) return ''
// 去除所有空格和特殊字符
const cleanCode = code.replace(/\s+/g, '')
// 如果卡号长度小于等于4位直接返回
if (cleanCode.length <= 4) return code
// 只显示后4位前面用 XX 替代
const suffix = cleanCode.substring(cleanCode.length - 4)
return `${suffix}`
}
function selectStatus(item) {
queryParams.value.debitType = item.dictValue
debitTypeList.value.map(ele => {
@@ -242,22 +255,36 @@ function selectStatus(item) {
}
function handleDelete(item) {
uni.showModal({
title: '提示',
content: '确定要删除',
success: function (res) {
if (res.confirm) {
delBankcardLend(item.id)
uni.navigateTo({ url: `/pages/work/base/debitCard/list` })
} else if (res.cancel) {
console.log('取消');
}
}
});
title: '确认删除',
content: '确定要删除这条记录吗?',
confirmText: '删除',
cancelText: '取消',
confirmColor: '#f5576c',
cancelColor: '#909399',
success: function (res) {
if (res.confirm) {
delBankcardLend(item.id).then(() => {
uni.showToast({
title: '删除成功',
icon: 'success'
})
pageNum.value = 1
listData.value = []
getList()
})
}
}
});
}
</script>
<style lang="scss" scoped>
page {
height: 100%;
overflow: hidden;
}
.search-view {
padding: 12rpx 32rpx;
background-color: #ffffff;
@@ -265,16 +292,46 @@ function selectStatus(item) {
justify-content: space-between;
align-items: center;
position: relative;
margin-bottom: 24rpx;
z-index: 100;
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.05);
.search-input {
background: #f5f7fa;
background: rgba(102, 126, 234, 0.08);
color: #333333;
flex: 1;
margin-right: 16rpx;
border-radius: 24rpx;
border: 1rpx solid #e8edf3;
border: 2rpx solid rgba(102, 126, 234, 0.3);
height: 66rpx !important;
display: flex;
align-items: center;
}
.filter-btn {
display: flex;
align-items: center;
gap: 6rpx;
padding: 12rpx 24rpx;
background: rgba(102, 126, 234, 0.08);
border-radius: 24rpx;
border: 2rpx solid rgba(102, 126, 234, 0.3);
transition: all 0.3s ease;
flex-shrink: 0;
&:active {
transform: scale(0.95);
background: rgba(102, 126, 234, 0.12);
}
text {
color: #667eea;
font-size: 28rpx;
font-weight: 600;
}
uni-icons {
color: #667eea;
}
}
.add-btn {
@@ -282,23 +339,27 @@ function selectStatus(item) {
align-items: center;
gap: 6rpx;
padding: 12rpx 24rpx;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
background: rgba(102, 126, 234, 0.08);
border-radius: 24rpx;
box-shadow: 0 4rpx 12rpx rgba(102, 126, 234, 0.3);
border: 2rpx solid rgba(102, 126, 234, 0.3);
transition: all 0.3s ease;
flex-shrink: 0;
margin-left: 10rpx;
&:active {
transform: scale(0.95);
box-shadow: 0 2rpx 8rpx rgba(102, 126, 234, 0.3);
background: rgba(102, 126, 234, 0.12);
}
text {
color: #ffffff;
color: #667eea;
font-size: 28rpx;
font-weight: 600;
}
uni-icons {
color: #667eea;
}
}
.filter-panel {
@@ -370,26 +431,75 @@ function selectStatus(item) {
.btn-box {
display: flex;
gap: 16rpx;
gap: 20rpx;
padding: 24rpx 30rpx;
background-color: #fff;
box-shadow: 0rpx -4rpx 16rpx rgba(0, 0, 0, 0.08);
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;
}
}
}
}
}
.list-item {
margin: 0 24rpx 24rpx;
margin: 10rpx 24rpx;
background-color: #fff;
border-radius: 16rpx;
overflow: hidden;
box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.08);
transition: all 0.2s ease;
&:active {
transform: scale(0.98);
box-shadow: 0 1rpx 6rpx rgba(0, 0, 0, 0.06);
}
.item-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 24rpx;
padding: 16rpx 24rpx;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
.card-name-section {
@@ -397,115 +507,126 @@ function selectStatus(item) {
align-items: center;
flex: 1;
min-width: 0;
margin-right: 16rpx;
}
.card-icon {
width: 56rpx;
height: 56rpx;
background: rgba(255, 255, 255, 0.2);
border-radius: 16rpx;
width: 40rpx;
height: 40rpx;
background: rgba(255, 255, 255, 0.25);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 16rpx;
margin-right: 12rpx;
flex-shrink: 0;
backdrop-filter: blur(10rpx);
}
.card-info {
display: flex;
flex-direction: column;
gap: 6rpx;
flex: 1;
min-width: 0;
overflow: hidden;
.card-name {
color: #ffffff;
font-size: 32rpx;
font-size: 28rpx;
font-weight: 600;
line-height: 1.2;
}
.card-code {
color: rgba(255, 255, 255, 0.8);
font-size: 26rpx;
line-height: 1.2;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
display: block;
.card-code {
color: rgba(255, 255, 255, 0.85);
font-size: 22rpx;
font-weight: 400;
margin-left: 8rpx;
}
}
}
.status-badge {
padding: 12rpx 28rpx;
border-radius: 24rpx;
font-size: 26rpx;
font-weight: 600;
letter-spacing: 0.5rpx;
.balance-section {
display: flex;
align-items: center;
flex-shrink: 0;
white-space: nowrap;
&.status-default {
background: #f0f0f0;
color: #666666;
}
&.status-normal {
background: #fa8c16 !important;
color: #ffffff !important;
box-shadow: 0 2rpx 8rpx rgba(250, 140, 22, 0.3) !important;
}
&.status-error {
background: #ff4d4f;
color: #ffffff;
box-shadow: 0 2rpx 8rpx rgba(255, 77, 79, 0.3);
.balance-value {
color: #fa8c16;
font-size: 32rpx;
font-weight: 700;
line-height: 1;
white-space: nowrap;
.balance-label {
color: rgba(255, 255, 255, 0.85);
font-size: 22rpx;
font-weight: 400;
margin-right: 8rpx;
}
}
}
}
.card-body {
padding: 24rpx;
.info-row {
background: #fff;
}
.info-row {
display: flex;
flex-wrap: wrap;
gap: 24rpx;
margin-bottom: 0;
.info-item {
flex: 0 0 calc(50% - 12rpx);
display: flex;
margin-bottom: 12rpx;
gap: 12rpx;
flex-direction: column;
gap: 4rpx;
min-width: 0;
margin-bottom: -5rpx;
&:last-child {
margin-bottom: 0;
&.info-item-full {
flex: 0 0 100%;
}
.info-label {
font-size: 24rpx;
color: #999;
line-height: 1.2;
padding: 4rpx 12rpx;
background: rgba(102, 126, 234, 0.08);
border-radius: 8rpx;
align-self: flex-start;
}
.info-value {
font-size: 26rpx;
color: #333;
font-weight: 500;
flex: 1;
line-height: 1.5;
word-break: break-all;
&.status-normal {
color: #52c41a;
}
&.status-error {
color: #ff4d4f;
}
&.status-default {
color: #666666;
}
}
.info-item {
flex: 1;
display: flex;
align-items: center;
justify-content: space-between;
padding: 16rpx 20rpx;
background: #f8f9fa;
border-radius: 8rpx;
min-height: 72rpx;
.info-label {
color: #7f8c8d;
font-size: 26rpx;
flex-shrink: 0;
white-space: nowrap;
min-width: 120rpx;
}
.info-value {
color: #2c3e50;
font-size: 28rpx;
font-weight: 500;
text-align: right;
flex: 1;
margin-left: 16rpx;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
&.orange {
color: #fa8c16;
font-weight: 600;
}
}
&:not(.info-item-full) .info-value {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
}
@@ -513,17 +634,20 @@ function selectStatus(item) {
.operate {
display: flex;
justify-content: flex-end;
padding: 0 24rpx 24rpx;
padding: 16rpx 24rpx 24rpx;
gap: 16rpx;
.btn-edit,
.btn-delete {
display: flex;
align-items: center;
justify-content: center;
gap: 6rpx;
padding: 12rpx 24rpx;
border-radius: 8rpx;
padding: 0 24rpx;
height: 64rpx;
border-radius: 12rpx;
font-size: 26rpx;
font-weight: 500;
transition: all 0.3s ease;
&:active {
@@ -535,20 +659,12 @@ function selectStatus(item) {
background: rgba(102, 126, 234, 0.1);
color: #667eea;
border: 1rpx solid rgba(102, 126, 234, 0.3);
text {
color: #667eea;
}
}
.btn-delete {
background: rgba(245, 87, 108, 0.1);
color: #f5576c;
border: 1rpx solid rgba(245, 87, 108, 0.3);
text {
color: #f5576c;
}
}
}
}