fix: 智聪记账管理,睡眠账户统计,bug修复。
This commit is contained in:
477
src/pages/statistic/accounts/sleepAccounts/index.vue
Normal file
477
src/pages/statistic/accounts/sleepAccounts/index.vue
Normal file
@@ -0,0 +1,477 @@
|
|||||||
|
<template>
|
||||||
|
<view class="container">
|
||||||
|
<u-sticky offsetTop="8rpx" customNavHeight="8rpx">
|
||||||
|
<view class="search-view">
|
||||||
|
<u-input v-model="queryParams.accountName" border="false" type="select" @click="handleAccount" placeholder="请选择记账账户" suffixIcon="search"
|
||||||
|
suffixIconStyle="color: #909399" class="search-input">
|
||||||
|
</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="plus-circle-fill" color="#666666" size="28" style="margin-left:10px" label="新增"
|
||||||
|
labelPos="left" labelSize="32rpx" labelColor="#666666" @click="handleAdd()"></u-icon> -->
|
||||||
|
<u-transition :show="filterPanel" mode="fade">
|
||||||
|
<view class="filter-panel" :style="{ height: `${windowHeight - 42}px` }">
|
||||||
|
<view class="filter-panel-content">
|
||||||
|
<view class="filter-title">账户类型</view>
|
||||||
|
<view class="state-list">
|
||||||
|
<view v-for="item in accountType" :key="item.id" class="state-item"
|
||||||
|
:class="item.selected ? 'active' : ''" @click="selectType(item)">{{ item.dictLabel }}</view>
|
||||||
|
</view>
|
||||||
|
<view class="filter-title">账户状态</view>
|
||||||
|
<view class="state-list">
|
||||||
|
<view v-for="item in accountStatus" :key="item.id" class="state-item"
|
||||||
|
:class="item.selected ? 'active' : ''" @click="selectStatus(item)">{{ item.dictLabel }}</view>
|
||||||
|
</view>
|
||||||
|
</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>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
|
</u-transition>
|
||||||
|
</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">
|
||||||
|
<view class="item-header">
|
||||||
|
<u--text lines="2" iconStyle="font-size: 18px; color: #333333; font-weight:bold"
|
||||||
|
:text="item.name+' :睡眠时长 '+item.duration" size="30rpx" color="#333333" :bold="true"></u--text>
|
||||||
|
</view>
|
||||||
|
<!-- <view class="item-row">
|
||||||
|
<text class="row-label">账户类型:</text>
|
||||||
|
<text class="row-value">{{ dictStr(item.type, accountType) }}</text>
|
||||||
|
</view> -->
|
||||||
|
<view class="item-row">
|
||||||
|
<text class="row-label">账号:</text>
|
||||||
|
<text class="row-value">{{ item.code }}</text>
|
||||||
|
</view>
|
||||||
|
<!-- <view class="item-row">
|
||||||
|
<text class="row-label">可用额度:</text>
|
||||||
|
<text class="row-value">{{ item.availableLimit }}</text>
|
||||||
|
</view> -->
|
||||||
|
<view class="item-row" v-if="item.type=='1'">
|
||||||
|
<text class="row-label">储蓄卡类型:</text>
|
||||||
|
<text class="row-value">{{ dictStr(item.debitType, debitType) }}</text>
|
||||||
|
</view>
|
||||||
|
<view class="item-row">
|
||||||
|
<text class="row-label">余额:</text>
|
||||||
|
<text class="row-value">{{ item.balance }}</text>
|
||||||
|
</view>
|
||||||
|
<view class="item-row">
|
||||||
|
<text class="row-label">最近一次交易时间:</text>
|
||||||
|
<text class="row-value">{{ item.recentDealTime }}</text>
|
||||||
|
</view>
|
||||||
|
<!-- <view class="item-row">
|
||||||
|
<text class="row-label">余额:</text>
|
||||||
|
<text class="row-value">{{ item.duration }}</text>
|
||||||
|
</view> -->
|
||||||
|
<!--
|
||||||
|
<view class="item-row" v-if="item.type=='2'">
|
||||||
|
<text class="row-label">信用卡额度:</text>
|
||||||
|
<text class="row-value">{{ item.creditLimit }}</text>
|
||||||
|
</view>
|
||||||
|
<view class="item-row" v-if="item.type=='2'">
|
||||||
|
<text class="row-label">账单日:</text>
|
||||||
|
<text class="row-value">{{ item.billDateName }}</text>
|
||||||
|
</view>
|
||||||
|
<view class="item-row" v-if="item.type=='2'">
|
||||||
|
<text class="row-label">还款日:</text>
|
||||||
|
<text class="row-value">{{ item.payDateName }}</text>
|
||||||
|
</view> -->
|
||||||
|
|
||||||
|
<!-- <view class="item-row">
|
||||||
|
<text class="row-label">账户状态:</text>
|
||||||
|
<text class="row-value">{{ dictStr(item.status, accountStatus) }}</text>
|
||||||
|
</view>
|
||||||
|
<view class="item-row">
|
||||||
|
<text class="row-label">备注:</text>
|
||||||
|
<text class="row-value">{{ item.remark }}</text>
|
||||||
|
</view> -->
|
||||||
|
|
||||||
|
<view class="operate" >
|
||||||
|
<!-- <view class="btn filling" @click="enterDetails(item)">查看</view > -->
|
||||||
|
<!-- <view class="btn filling" @click="handleEdit(item)">修改</view>
|
||||||
|
<view class="btn filling" @click="handleDelete(item)">删除</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>
|
||||||
|
<u-picker itemHeight="88" :show="showAccount" :columns="accountList" keyName="typeNameCodeAvailableLimit" @cancel="handleAccountCancel"
|
||||||
|
@confirm="handleAccountConfirm"></u-picker>
|
||||||
|
</view>
|
||||||
|
<!-- 悬停按钮返回工作台-->
|
||||||
|
<suspend></suspend>
|
||||||
|
<refresh></refresh>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import { listAccounts, delAccounts } from '@/api/invest/accounts'
|
||||||
|
import { listSleepAccounts } from '@/api/invest/statisticAnalysis'
|
||||||
|
import { getDicts } from '@/api/system/dict/data.js'
|
||||||
|
import {onLoad,onShow} from "@dcloudio/uni-app";
|
||||||
|
// 计算属性与监听属性是在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 accountType = ref([])
|
||||||
|
const debitType = ref([])
|
||||||
|
const accountStatus= ref([])
|
||||||
|
const showAccount = ref(false)
|
||||||
|
const accountList = ref([])
|
||||||
|
const settingPickShow = ref(false)
|
||||||
|
const settingColumns = ref([])
|
||||||
|
const data = reactive({
|
||||||
|
filterPanel: false,
|
||||||
|
queryAccountParams: {
|
||||||
|
pageNum: 1,
|
||||||
|
status: '1',
|
||||||
|
pageSize: 100
|
||||||
|
},
|
||||||
|
queryParams: {
|
||||||
|
name: null,
|
||||||
|
type: null,
|
||||||
|
state: null
|
||||||
|
}
|
||||||
|
})
|
||||||
|
const { filterPanel, queryAccountParams, queryParams} = toRefs(data)
|
||||||
|
const windowHeight = computed(() => {
|
||||||
|
uni.getSystemInfoSync().windowHeight - 50
|
||||||
|
})
|
||||||
|
onLoad(() => {
|
||||||
|
getDict()
|
||||||
|
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'
|
||||||
|
listSleepAccounts({ 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 getDict() {
|
||||||
|
listSleepAccounts(queryAccountParams.value).then((response) => {
|
||||||
|
accountList.value = [response.rows]
|
||||||
|
})
|
||||||
|
// 类型
|
||||||
|
getDicts('account_type').then(res => {
|
||||||
|
accountType.value = res.data
|
||||||
|
})
|
||||||
|
|
||||||
|
// 类型
|
||||||
|
getDicts('account_status').then(res => {
|
||||||
|
accountStatus.value = res.data
|
||||||
|
})
|
||||||
|
// 类型
|
||||||
|
getDicts('debit_type').then(res => {
|
||||||
|
debitType.value = res.data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
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 selectType(item) {
|
||||||
|
queryParams.value.type = item.dictValue
|
||||||
|
accountType.value.map(ele => {
|
||||||
|
if (ele.dictValue == item.dictValue) {
|
||||||
|
ele.selected = true
|
||||||
|
Reflect.set(ele, 'selected', true)
|
||||||
|
} else {
|
||||||
|
Reflect.set(ele, 'selected', false)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
function selectStatus(item) {
|
||||||
|
queryParams.value.status = item.dictValue
|
||||||
|
accountStatus.value.map(ele => {
|
||||||
|
if (ele.dictValue == item.dictValue) {
|
||||||
|
ele.selected = true
|
||||||
|
Reflect.set(ele, 'selected', true)
|
||||||
|
} else {
|
||||||
|
Reflect.set(ele, 'selected', false)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
function searchSubmit() {
|
||||||
|
pageNum.value = 1
|
||||||
|
listData.value = []
|
||||||
|
getList()
|
||||||
|
filterPanel.value = false
|
||||||
|
}
|
||||||
|
function handleAccount() {
|
||||||
|
if (accountList.value[0].length === 0) {
|
||||||
|
proxy.$refs['uToast'].show({
|
||||||
|
message: '记账账户为空 ', type: 'warning'
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
showAccount.value = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function handleAccountConfirm(e) {
|
||||||
|
queryParams.value.accountName = e.value[0].typeNameCodeAvailableLimit
|
||||||
|
queryParams.value.accountId= e.value[0].id
|
||||||
|
showAccount.value = false
|
||||||
|
pageNum.value = 1
|
||||||
|
listData.value = []
|
||||||
|
getList()
|
||||||
|
}
|
||||||
|
function handleAccountCancel() {
|
||||||
|
showAccount.value = false
|
||||||
|
}
|
||||||
|
function searchBlur() {
|
||||||
|
pageNum.value = 1
|
||||||
|
listData.value = []
|
||||||
|
getList()
|
||||||
|
}
|
||||||
|
function resetQuery() {
|
||||||
|
queryParams.value.accountId = ''
|
||||||
|
queryParams.value.accountName = ''
|
||||||
|
queryParams.value.name = '',
|
||||||
|
queryParams.value.type = ''
|
||||||
|
accountType.value.map(ele => {
|
||||||
|
Reflect.set(ele, 'selected', false)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
function enterDetails(item) {
|
||||||
|
uni.navigateTo({ url: `/pages/work/accounts/accounts/details?id=${item.id}` })
|
||||||
|
}
|
||||||
|
function handleEdit(item) {
|
||||||
|
uni.navigateTo({ url: `/pages/work/accounts/accounts/addEdit?id=${item.id}` })
|
||||||
|
isShow.value = true
|
||||||
|
}
|
||||||
|
function handleAdd() {
|
||||||
|
uni.navigateTo({ url: `/pages/work/heartJourney/addEdit` })
|
||||||
|
isShow.value = true
|
||||||
|
}
|
||||||
|
function handleDelete(item) {
|
||||||
|
uni.showModal({
|
||||||
|
title: '提示',
|
||||||
|
content: '你确定要删除吗',
|
||||||
|
success: function (res) {
|
||||||
|
if (res.confirm) {
|
||||||
|
delAccounts(item.id)
|
||||||
|
uni.navigateTo({ url: `/pages/work/accounts/accounts/list` })
|
||||||
|
} else if (res.cancel) {
|
||||||
|
console.log('取消');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
</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;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
position: relative;
|
||||||
|
margin-bottom: 24rpx;
|
||||||
|
|
||||||
|
.search-input {
|
||||||
|
background: #F5F5F5;
|
||||||
|
color: #333333;
|
||||||
|
margin-right: 36rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.filter-panel {
|
||||||
|
width: 100%;
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 96rpx;
|
||||||
|
background-color: rgba(0, 0, 0, 0.5);
|
||||||
|
|
||||||
|
.filter-panel-content {
|
||||||
|
background-color: #ffff;
|
||||||
|
padding: 0 30rpx 30rpx;
|
||||||
|
|
||||||
|
.filter-title {
|
||||||
|
color: #000000;
|
||||||
|
font-size: 30rpx;
|
||||||
|
font-weight: 500;
|
||||||
|
padding: 30rpx 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.state-list {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
justify-content: flex-start;
|
||||||
|
|
||||||
|
.state-item {
|
||||||
|
width: 210rpx;
|
||||||
|
height: 72rpx;
|
||||||
|
border: 1rpx solid rgba(0, 0, 0, 0.25);
|
||||||
|
border-radius: 72rpx;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 72rpx;
|
||||||
|
margin: 0 20rpx 20rpx 0;
|
||||||
|
font-size: 28rpx;
|
||||||
|
color: #000000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.active {
|
||||||
|
background-color: rgba(222, 241, 255, 1);
|
||||||
|
border: 1rpx solid rgba(22, 119, 255, 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.btn-box {
|
||||||
|
display: flex;
|
||||||
|
padding: 24rpx 30rpx;
|
||||||
|
background-color: #fff;
|
||||||
|
box-shadow: 0rpx -10rpx 20rpx #EEEEEE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.list-item {
|
||||||
|
margin: 0 24rpx 24rpx;
|
||||||
|
padding: 32rpx;
|
||||||
|
background-color: #fff;
|
||||||
|
|
||||||
|
.item-header {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
padding-bottom: 16rpx;
|
||||||
|
|
||||||
|
.status {
|
||||||
|
.status-item {
|
||||||
|
width: 120rpx;
|
||||||
|
height: 44rpx;
|
||||||
|
text-align: center;
|
||||||
|
line-height: 44rpx;
|
||||||
|
border-radius: 4rpx;
|
||||||
|
font-size: 24rpx;
|
||||||
|
}
|
||||||
|
|
||||||
|
.status1 {
|
||||||
|
background: #F0F0F0;
|
||||||
|
color: #8C8C8C;
|
||||||
|
}
|
||||||
|
|
||||||
|
.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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.item-row {
|
||||||
|
padding: 16rpx 0;
|
||||||
|
|
||||||
|
.row-label {
|
||||||
|
color: rgba(0, 0, 0, 0.55);
|
||||||
|
}
|
||||||
|
|
||||||
|
.row-value {
|
||||||
|
color: rgba(0, 0, 0, 0.85)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.operate {
|
||||||
|
display: flex;
|
||||||
|
justify-content: flex-end;
|
||||||
|
|
||||||
|
.btn {
|
||||||
|
width: 146rpx;
|
||||||
|
height: 56rpx;
|
||||||
|
line-height: 56rpx;
|
||||||
|
border-radius: 8rpx;
|
||||||
|
margin-left: 5rpx;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.circulation {
|
||||||
|
background: rgba(0, 0, 0, 0.04);
|
||||||
|
margin-right: 24rpx;
|
||||||
|
color: rgba(0, 0, 0, 0.85);
|
||||||
|
}
|
||||||
|
|
||||||
|
.filling {
|
||||||
|
background: #2681FF;
|
||||||
|
border-radius: 8rpx;
|
||||||
|
color: #FFFFFF;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
Reference in New Issue
Block a user