451 lines
12 KiB
Vue
451 lines
12 KiB
Vue
<template>
|
|
<view class="container">
|
|
<u-sticky offsetTop="-10rpx" customNavHeight="0rpx">
|
|
<view class="search-view">
|
|
<u--input v-model="queryParams.name" border="false" placeholder="请输入理财账户名称" class="search-input"
|
|
@blur="searchBlur" suffixIcon="search" suffixIconStyle="color: #909399">
|
|
</u--input>
|
|
<view class="add-btn" @click="handleAdd()">
|
|
<uni-icons type="plusempty" size="18" color="#667eea"></uni-icons>
|
|
<text>新增</text>
|
|
</view>
|
|
</view>
|
|
</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" @click="enterDetails(item)">
|
|
<view class="item-header">
|
|
<view class="card-name-section">
|
|
<view class="card-icon">
|
|
<uni-icons type="wallet-filled" size="20" color="#ffffff"></uni-icons>
|
|
</view>
|
|
<view class="card-info">
|
|
<text class="card-name">{{ item.name }}</text>
|
|
</view>
|
|
</view>
|
|
<view class="balance-section">
|
|
<text class="balance-value"><text class="balance-label">余额</text>{{ item.balance || '0' }}元</text>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="card-body">
|
|
<view class="info-row">
|
|
<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 class="info-item" v-if="item.activationDate || true">
|
|
<text class="info-label">开户日期</text>
|
|
<text class="info-value">{{ item.activationDate || '--' }}</text>
|
|
</view>
|
|
<view class="info-item" v-if="item.bankNameCode || true">
|
|
<text class="info-label">关联储蓄卡</text>
|
|
<text class="info-value">{{ item.bankNameCode || '--' }}</text>
|
|
</view>
|
|
<view class="info-item" v-if="item.commission || true">
|
|
<text class="info-label">佣金费率</text>
|
|
<text class="info-value">{{ item.commission || '--' }}</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>
|
|
|
|
<view class="operate" @click.stop>
|
|
<view class="btn-edit" @click="handleEdit(item)">
|
|
<uni-icons type="compose" size="16" color="#667eea"></uni-icons>
|
|
<text>修改</text>
|
|
</view>
|
|
<view class="btn-delete" @click="handleDelete(item)">
|
|
<uni-icons type="trash" size="16" color="#f5576c"></uni-icons>
|
|
<text>删除</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</u-list-item>
|
|
<view>
|
|
</view>
|
|
<u-loadmore :status="status" loadingIcon="semicircle" height="88" fontSize="32rpx" @loadmore="loadmore" />
|
|
</u-list>
|
|
<u-picker itemHeight="88" :show="settingPickShow" :columns="settingColumns" keyName="settingName"
|
|
@confirm="settingConfirm" @cancel="settingCancel"></u-picker>
|
|
</view>
|
|
<!-- 悬停按钮返回工作台-->
|
|
<suspend></suspend>
|
|
<refresh></refresh>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { listFutureStocks, delFutureStocks} from '@/api/invest/futureStocks'
|
|
import {onLoad,onShow} from "@dcloudio/uni-app";
|
|
import { getDicts } from '@/api/system/dict/data.js'
|
|
// 计算属性与监听属性是在vue中而非uniap中 需要注意!!!
|
|
import {reactive ,toRefs,ref,computed }from "vue";
|
|
const pageNum = ref(1)
|
|
const listData = ref([])
|
|
const isShow = ref(false)
|
|
const status = ref('loadmore')
|
|
const settingPickShow = ref(false)
|
|
const settingColumns = ref([])
|
|
const statusList = ref([])
|
|
const data = reactive({
|
|
queryParams: {
|
|
name: null,
|
|
type: '3'
|
|
}
|
|
})
|
|
const { queryParams} = toRefs(data)
|
|
const windowHeight = computed(() => {
|
|
uni.getSystemInfoSync().windowHeight - 50
|
|
})
|
|
onLoad(() => {
|
|
// 账户状态
|
|
getDicts('account_status').then(res => {
|
|
statusList.value = res.data
|
|
})
|
|
getList()
|
|
});
|
|
|
|
onShow(() => {
|
|
if (isShow.value) {
|
|
listData.value=[]
|
|
getList()
|
|
isShow.value = false
|
|
}
|
|
});
|
|
|
|
function loadmore() {
|
|
pageNum.value += 1
|
|
if (status.value == 'loadmore') {
|
|
getList()
|
|
}
|
|
}
|
|
function getList() {
|
|
status.value = 'loading'
|
|
listFutureStocks({ pageSize: 10, pageNum: pageNum.value, ...queryParams.value }).then(res => {
|
|
listData.value = listData.value.concat(res.rows)
|
|
if (listData.value.length < res.total) {
|
|
status.value = 'loadmore'
|
|
} else {
|
|
status.value = 'nomore'
|
|
}
|
|
}).catch(() => {
|
|
status.value = 'nomore'
|
|
})
|
|
}
|
|
function settingConfirm(e) {
|
|
queryParams.value.settingId = e.value[0].settingId
|
|
queryParams.value.settingName = e.value[0].settingName
|
|
settingPickShow.value = false
|
|
}
|
|
function settingCancel() {
|
|
settingPickShow.value = false
|
|
}
|
|
function dictStr(val, arr) {
|
|
let str = ''
|
|
arr.map(item => {
|
|
if (item.dictValue === val) {
|
|
str = item.dictLabel
|
|
}
|
|
})
|
|
return str
|
|
}
|
|
function getStatusClass(status, statusText) {
|
|
// 优先根据状态文字判断
|
|
if (statusText && statusText.includes('正常')) {
|
|
return 'status-normal'
|
|
}
|
|
if (statusText && (statusText.includes('销卡') || statusText.includes('销户'))) {
|
|
return 'status-error'
|
|
}
|
|
|
|
// 备用:根据状态值判断
|
|
const statusStr = String(status)
|
|
if (statusStr === '2') {
|
|
return 'status-normal'
|
|
}
|
|
if (statusStr === '0' || statusStr === '3' || statusStr === '4') {
|
|
return 'status-error'
|
|
}
|
|
|
|
return 'status-default'
|
|
}
|
|
function searchBlur() {
|
|
pageNum.value = 1
|
|
listData.value = []
|
|
getList()
|
|
}
|
|
function resetQuery() {
|
|
queryParams.value.name = '',
|
|
queryParams.value.type = '2'
|
|
posTypeList.value.map(ele => {
|
|
Reflect.set(ele, 'selected', false)
|
|
})
|
|
}
|
|
function enterDetails(item) {
|
|
uni.navigateTo({ url: `/pages/work/base/financials/details?id=${item.id}` })
|
|
}
|
|
function handleEdit(item) {
|
|
uni.navigateTo({ url: `/pages/work/base/financials/addEdit?id=${item.id}` })
|
|
isShow.value = true
|
|
}
|
|
function handleAdd() {
|
|
uni.navigateTo({ url: `/pages/work/base/financials/addEdit` })
|
|
isShow.value = true
|
|
}
|
|
function handleDelete(item) {
|
|
uni.showModal({
|
|
title: '确认删除',
|
|
content: '确定要删除这条记录吗?',
|
|
confirmText: '删除',
|
|
cancelText: '取消',
|
|
confirmColor: '#f5576c',
|
|
cancelColor: '#909399',
|
|
success: function (res) {
|
|
if (res.confirm) {
|
|
delFutureStocks(item.id).then(() => {
|
|
uni.showToast({
|
|
title: '删除成功',
|
|
icon: 'success'
|
|
})
|
|
pageNum.value = 1
|
|
listData.value = []
|
|
getList()
|
|
})
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
page {
|
|
// height: 100%;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.container {
|
|
background: #f5f7fa;
|
|
}
|
|
|
|
.search-view {
|
|
padding: 12rpx 32rpx;
|
|
background-color: #ffffff;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
position: relative;
|
|
z-index: 100;
|
|
box-shadow: 0 2rpx 8rpx rgba(0, 0, 0, 0.05);
|
|
|
|
.search-input {
|
|
background: rgba(102, 126, 234, 0.08);
|
|
color: #333333;
|
|
flex: 1;
|
|
margin-right: 16rpx;
|
|
border-radius: 24rpx;
|
|
border: 2rpx solid rgba(102, 126, 234, 0.3);
|
|
height: 66rpx !important;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.add-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.15);
|
|
}
|
|
|
|
text {
|
|
color: #667eea;
|
|
font-size: 28rpx;
|
|
font-weight: 500;
|
|
}
|
|
}
|
|
}
|
|
|
|
.list-item {
|
|
margin: 10rpx 24rpx;
|
|
background: #ffffff;
|
|
border-radius: 16rpx;
|
|
overflow: hidden;
|
|
box-shadow: 0 2rpx 12rpx rgba(0, 0, 0, 0.08);
|
|
|
|
|
|
&:active {
|
|
transform: scale(0.98);
|
|
box-shadow: 0 4rpx 16rpx rgba(0, 0, 0, 0.12);
|
|
}
|
|
|
|
.item-header {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
padding: 20rpx 24rpx;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
.card-name-section {
|
|
display: flex;
|
|
align-items: center;
|
|
flex: 1;
|
|
min-width: 0;
|
|
|
|
.card-icon {
|
|
width: 48rpx;
|
|
height: 48rpx;
|
|
background: rgba(255, 255, 255, 0.2);
|
|
border-radius: 16rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-right: 12rpx;
|
|
flex-shrink: 0;
|
|
backdrop-filter: blur(10rpx);
|
|
}
|
|
|
|
.card-info {
|
|
flex: 1;
|
|
min-width: 0;
|
|
|
|
.card-name {
|
|
color: #ffffff;
|
|
font-size: 28rpx;
|
|
font-weight: 600;
|
|
line-height: 1.2;
|
|
display: block;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
}
|
|
|
|
.balance-section {
|
|
flex-shrink: 0;
|
|
text-align: right;
|
|
|
|
.balance-value {
|
|
color: #fa8c16;
|
|
font-size: 32rpx;
|
|
font-weight: 600;
|
|
line-height: 1;
|
|
|
|
.balance-label {
|
|
color: rgba(255, 255, 255, 0.85);
|
|
font-size: 24rpx;
|
|
margin-right: 8rpx;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.card-body {
|
|
padding: 24rpx;
|
|
background: #fff;
|
|
}
|
|
|
|
.info-row {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 24rpx;
|
|
margin-bottom: 0;
|
|
|
|
.info-item {
|
|
flex: 0 0 calc(50% - 12rpx);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4rpx;
|
|
min-width: 0;
|
|
margin-bottom: -5rpx;
|
|
|
|
&.info-item-full {
|
|
flex: 0 0 100%;
|
|
}
|
|
|
|
.info-label {
|
|
font-size: 24rpx;
|
|
color: #667eea;
|
|
font-weight: 500;
|
|
background: rgba(102, 126, 234, 0.08);
|
|
padding: 6rpx 12rpx;
|
|
border-radius: 8rpx;
|
|
align-self: flex-start;
|
|
}
|
|
|
|
.info-value {
|
|
font-size: 26rpx;
|
|
color: #333;
|
|
font-weight: 500;
|
|
flex: 1;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
line-height: 1.2;
|
|
|
|
&.status-normal {
|
|
color: #52c41a;
|
|
}
|
|
|
|
&.status-error {
|
|
color: #ff4d4f;
|
|
}
|
|
|
|
&.status-default {
|
|
color: #666666;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.operate {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
gap: 16rpx;
|
|
padding: 16rpx 24rpx 24rpx;
|
|
|
|
.btn-edit,
|
|
.btn-delete {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 6rpx;
|
|
padding: 0 24rpx;
|
|
height: 64rpx;
|
|
border-radius: 12rpx;
|
|
font-size: 26rpx;
|
|
font-weight: 500;
|
|
transition: all 0.3s ease;
|
|
|
|
&:active {
|
|
transform: scale(0.95);
|
|
}
|
|
}
|
|
|
|
.btn-edit {
|
|
background: rgba(102, 126, 234, 0.1);
|
|
color: #667eea;
|
|
border: 1rpx solid rgba(102, 126, 234, 0.3);
|
|
}
|
|
|
|
.btn-delete {
|
|
background: rgba(245, 87, 108, 0.1);
|
|
color: #f5576c;
|
|
border: 1rpx solid rgba(245, 87, 108, 0.3);
|
|
}
|
|
}
|
|
}
|
|
</style> |