fix: 智聪记账管理,新增睡眠账户统计功能,功能优化。
This commit is contained in:
@@ -97,3 +97,12 @@ export function getPosStatics(query) {
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询记账账户列表
|
||||
export function listSleepAccounts(query) {
|
||||
return request({
|
||||
url: '/invest/analysis/sleepAccountsList',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
@@ -174,6 +174,13 @@
|
||||
}
|
||||
}
|
||||
,
|
||||
{
|
||||
"path": "pages/statistic/accounts/sleepAccounts/index",
|
||||
"style": {
|
||||
"navigationBarTitleText": "睡眠账户统计"
|
||||
}
|
||||
}
|
||||
,
|
||||
{
|
||||
"path": "pages/statistic/accounts/accountDealAnalysis/index",
|
||||
"style": {
|
||||
|
||||
@@ -73,13 +73,14 @@
|
||||
const accountGridList=ref([
|
||||
{ path: '/pages/statistic/accounts/accountsBalance/index', text: '记账账户统计', icon: 'staff-filled' , permission: 'invest:accountsBalance:list' },
|
||||
{ path: '/pages/statistic/accounts/posAnalysis/index', text: 'POS机刷卡统计', icon: 'shop-filled' , permission: 'invest:posAnalysis:list' },
|
||||
{ path: '/pages/statistic/accounts/debitDealAnalysis/index', text: '储蓄账户统计', icon: 'wallet-filled', permission: 'invest:accountDealRecord:list' },
|
||||
{ path: '/pages/statistic/accounts/debitDealAnalysis/index', text: '储蓄账户统计', icon: 'wallet-filled', permission: 'invest:debitCard' },
|
||||
{ path: '/pages/statistic/accounts/creditCardDealAnalysis/index', text: '信用卡收支统计', icon: 'wallet' , permission: 'invest:creditCard' },
|
||||
{ path: '/pages/statistic/accounts/investDealAnalysis/index', text: '投资收益统计', icon: 'arrow-down', permission: 'invest:investDealAnalysis:list' },
|
||||
{ path: '/pages/statistic/accounts/accountDealAnalysis/index', text: '账户收支统计', icon: 'person', permission: 'invest:accountDealAnalysis:list' },
|
||||
{ path: '/pages/statistic/accounts/dailyExpensesAnalysis/index', text: '日常支出统计', icon: 'wallet' , permission: 'invest:dailyExpensesAnalysis:list' },
|
||||
{ path: '/pages/statistic/accounts/debitCardAnalysis/index', text: '结算卡统计', icon: 'shop-filled' , permission: 'invest:debitCardAnalysis:list' },
|
||||
{ path: '/pages/statistic/accounts/posStatics/index', text: 'POS机统计', icon: 'shop-filled' , permission: 'invest:posStatics:list' },
|
||||
{ path: '/pages/statistic/accounts/sleepAccounts/index', text: '睡眠账户统计', icon: 'cloud-upload' , permission: 'invest:debitCard' },
|
||||
])
|
||||
|
||||
function navigateTo(path) {
|
||||
|
||||
@@ -21,6 +21,10 @@
|
||||
<text class="row-label">信用卡额度:</text>
|
||||
<text class="row-value">{{ item.creditLimit }}</text>
|
||||
</view>
|
||||
<view class="item-row">
|
||||
<text class="row-label">可用额度:</text>
|
||||
<text class="row-value">{{ item.availableLimit }}</text>
|
||||
</view>
|
||||
<view class="item-row">
|
||||
<text class="row-label">账户状态:</text>
|
||||
<text class="row-value">{{ dictStr(item.status, statusList) }}</text>
|
||||
|
||||
@@ -41,6 +41,10 @@
|
||||
<text class="row-label">账户状态:</text>
|
||||
<text class="row-value">{{ dictStr(item.status, statusList) }}</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.code }}</text>
|
||||
|
||||
@@ -20,6 +20,10 @@
|
||||
<text class="row-label">账户状态:</text>
|
||||
<text class="row-value">{{ dictStr(item.status, statusList) }}</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.bankNameCode }}</text>
|
||||
|
||||
@@ -20,6 +20,10 @@
|
||||
<text class="row-label">账户状态:</text>
|
||||
<text class="row-value">{{ dictStr(item.status, statusList) }}</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.tradingCenterCode }}</text>
|
||||
|
||||
@@ -41,6 +41,10 @@
|
||||
<text class="row-label">账户状态:</text>
|
||||
<text class="row-value">{{ dictStr(item.status, statusList) }}</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.remark }}</text>
|
||||
|
||||
@@ -20,6 +20,10 @@
|
||||
<text class="row-label">账户状态:</text>
|
||||
<text class="row-value">{{ dictStr(item.status, statusList) }}</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.bankNameCode }}</text>
|
||||
|
||||
Reference in New Issue
Block a user