feature:代码初始化。
This commit is contained in:
37
src/api/invest/accountAnalysis.js
Normal file
37
src/api/invest/accountAnalysis.js
Normal file
@@ -0,0 +1,37 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 标题--投资收益
|
||||
export function getIncomeInfo(query) {
|
||||
return request({
|
||||
url: '/invest/analysis/accountAnalysis/getIncomeInfo',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 标题--基础信息
|
||||
export function getBaseAccountInfo(query) {
|
||||
return request({
|
||||
url: '/invest/analysis/accountAnalysis/getBaseAccountInfo',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 标题--负债信息
|
||||
export function getDebetInfo(query) {
|
||||
return request({
|
||||
url: '/invest/analysis/accountAnalysis/getDebetInfo',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 标题--信用卡信息
|
||||
export function getCreditInfo(query) {
|
||||
return request({
|
||||
url: '/invest/analysis/accountAnalysis/getCreditInfo',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
44
src/api/invest/accountDealRecord.js
Normal file
44
src/api/invest/accountDealRecord.js
Normal file
@@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询账户交易记录列表
|
||||
export function listAccountDealRecord(query) {
|
||||
return request({
|
||||
url: '/invest/accountDealRecord/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询账户交易记录详细
|
||||
export function getAccountDealRecord(id) {
|
||||
return request({
|
||||
url: '/invest/accountDealRecord/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增账户交易记录
|
||||
export function addAccountDealRecord(data) {
|
||||
return request({
|
||||
url: '/invest/accountDealRecord',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改账户交易记录
|
||||
export function updateAccountDealRecord(data) {
|
||||
return request({
|
||||
url: '/invest/accountDealRecord',
|
||||
method: 'put',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除账户交易记录
|
||||
export function delAccountDealRecord(id) {
|
||||
return request({
|
||||
url: '/invest/accountDealRecord/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
44
src/api/invest/accounts.js
Normal file
44
src/api/invest/accounts.js
Normal file
@@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询记账账户列表
|
||||
export function listAccounts(query) {
|
||||
return request({
|
||||
url: '/invest/accounts/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询记账账户详细
|
||||
export function getAccounts(id) {
|
||||
return request({
|
||||
url: '/invest/accounts/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增记账账户
|
||||
export function addAccounts(data) {
|
||||
return request({
|
||||
url: '/invest/accounts',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改记账账户
|
||||
export function updateAccounts(data) {
|
||||
return request({
|
||||
url: '/invest/accounts',
|
||||
method: 'put',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除记账账户
|
||||
export function delAccounts(id) {
|
||||
return request({
|
||||
url: '/invest/accounts/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
44
src/api/invest/accountsTransferRecord.js
Normal file
44
src/api/invest/accountsTransferRecord.js
Normal file
@@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询账户转账记录列表
|
||||
export function listAccountsTransferRecord(query) {
|
||||
return request({
|
||||
url: '/invest/accountsTransferRecord/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询账户转账记录详细
|
||||
export function getAccountsTransferRecord(id) {
|
||||
return request({
|
||||
url: '/invest/accountsTransferRecord/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增账户转账记录
|
||||
export function addAccountsTransferRecord(data) {
|
||||
return request({
|
||||
url: '/invest/accountsTransferRecord',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改账户转账记录
|
||||
export function updateAccountsTransferRecord(data) {
|
||||
return request({
|
||||
url: '/invest/accountsTransferRecord',
|
||||
method: 'put',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除账户转账记录
|
||||
export function delAccountsTransferRecord(id) {
|
||||
return request({
|
||||
url: '/invest/accountsTransferRecord/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
44
src/api/invest/bankcardlend.js
Normal file
44
src/api/invest/bankcardlend.js
Normal file
@@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询银行卡信息列表
|
||||
export function listBankcardLend(query) {
|
||||
return request({
|
||||
url: '/invest/bankcardlend/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询银行卡信息详细
|
||||
export function getBankcardLend(id) {
|
||||
return request({
|
||||
url: '/invest/bankcardlend/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增银行卡信息
|
||||
export function addBankcardLend(data) {
|
||||
return request({
|
||||
url: '/invest/bankcardlend',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改银行卡信息
|
||||
export function updateBankcardLend(data) {
|
||||
return request({
|
||||
url: '/invest/bankcardlend',
|
||||
method: 'put',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除银行卡信息
|
||||
export function delBankcardLend(id) {
|
||||
return request({
|
||||
url: '/invest/bankcardlend/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
44
src/api/invest/creditCardBill.js
Normal file
44
src/api/invest/creditCardBill.js
Normal file
@@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询信用卡账单列表
|
||||
export function listCreditCardBill(query) {
|
||||
return request({
|
||||
url: '/invest/creditCardBill/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询信用卡账单详细
|
||||
export function getCreditCardBill(id) {
|
||||
return request({
|
||||
url: '/invest/creditCardBill/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增信用卡账单
|
||||
export function addCreditCardBill(data) {
|
||||
return request({
|
||||
url: '/invest/creditCardBill',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改信用卡账单
|
||||
export function updateCreditCardBill(data) {
|
||||
return request({
|
||||
url: '/invest/creditCardBill',
|
||||
method: 'put',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除信用卡账单
|
||||
export function delCreditCardBill(id) {
|
||||
return request({
|
||||
url: '/invest/creditCardBill/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
62
src/api/invest/creditQueryRecord.js
Normal file
62
src/api/invest/creditQueryRecord.js
Normal file
@@ -0,0 +1,62 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询机构记录列表
|
||||
export function listQueryInstitution(query) {
|
||||
return request({
|
||||
url: '/invest/creditQueryRecord/listQueryInstitution',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询征信报告查询记录列表
|
||||
export function listCreditQueryRecord(query) {
|
||||
return request({
|
||||
url: '/invest/creditQueryRecord/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询征信报告查询记录详细
|
||||
export function getCreditQueryRecord(id) {
|
||||
return request({
|
||||
url: '/invest/creditQueryRecord/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增征信报告查询记录
|
||||
export function addCreditQueryRecord(data) {
|
||||
return request({
|
||||
url: '/invest/creditQueryRecord',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改征信报告查询记录
|
||||
export function updateCreditQueryRecord(data) {
|
||||
return request({
|
||||
url: '/invest/creditQueryRecord',
|
||||
method: 'put',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除征信报告查询记录
|
||||
export function delCreditQueryRecord(id) {
|
||||
return request({
|
||||
url: '/invest/creditQueryRecord/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
|
||||
// 查询征信报告查询记录详细
|
||||
export function getCreditRecordAnalysis(query) {
|
||||
return request({
|
||||
url: '/invest/creditQueryRecord/analysis',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
44
src/api/invest/debitInfors.js
Normal file
44
src/api/invest/debitInfors.js
Normal file
@@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询信贷产品管理列表
|
||||
export function listDebitInfors(query) {
|
||||
return request({
|
||||
url: '/invest/debitInfors/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询信贷产品管理详细
|
||||
export function getDebitInfors(id) {
|
||||
return request({
|
||||
url: '/invest/debitInfors/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增信贷产品管理
|
||||
export function addDebitInfors(data) {
|
||||
return request({
|
||||
url: '/invest/debitInfors',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改信贷产品管理
|
||||
export function updateDebitInfors(data) {
|
||||
return request({
|
||||
url: '/invest/debitInfors',
|
||||
method: 'put',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除信贷产品管理
|
||||
export function delDebitInfors(id) {
|
||||
return request({
|
||||
url: '/invest/debitInfors/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
44
src/api/invest/futureStocks.js
Normal file
44
src/api/invest/futureStocks.js
Normal file
@@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询期货股票基本信息列表
|
||||
export function listFutureStocks(query) {
|
||||
return request({
|
||||
url: '/invest/futureStocks/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询期货股票基本信息详细
|
||||
export function getFutureStocks(id) {
|
||||
return request({
|
||||
url: '/invest/futureStocks/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增期货股票基本信息
|
||||
export function addFutureStocks(data) {
|
||||
return request({
|
||||
url: '/invest/futureStocks',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改期货股票基本信息
|
||||
export function updateFutureStocks(data) {
|
||||
return request({
|
||||
url: '/invest/futureStocks',
|
||||
method: 'put',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除期货股票基本信息
|
||||
export function delFutureStocks(id) {
|
||||
return request({
|
||||
url: '/invest/futureStocks/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
44
src/api/invest/futureStocksBill.js
Normal file
44
src/api/invest/futureStocksBill.js
Normal file
@@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询期货股票账单列表
|
||||
export function listFutureStocksBill(query) {
|
||||
return request({
|
||||
url: '/invest/futureStocksBill/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询期货股票账单详细
|
||||
export function getFutureStocksBill(id) {
|
||||
return request({
|
||||
url: '/invest/futureStocksBill/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增期货股票账单
|
||||
export function addFutureStocksBill(data) {
|
||||
return request({
|
||||
url: '/invest/futureStocksBill',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改期货股票账单
|
||||
export function updateFutureStocksBill(data) {
|
||||
return request({
|
||||
url: '/invest/futureStocksBill',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除期货股票账单
|
||||
export function delFutureStocksBill(id) {
|
||||
return request({
|
||||
url: '/invest/futureStocksBill/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
44
src/api/invest/heartJourney.js
Normal file
44
src/api/invest/heartJourney.js
Normal file
@@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询心路历程列表
|
||||
export function listHeartJourney(query) {
|
||||
return request({
|
||||
url: '/invest/heartJourney/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询心路历程详细
|
||||
export function getHeartJourney(id) {
|
||||
return request({
|
||||
url: '/invest/heartJourney/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增心路历程
|
||||
export function addHeartJourney(data) {
|
||||
return request({
|
||||
url: '/invest/heartJourney',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改心路历程
|
||||
export function updateHeartJourney(data) {
|
||||
return request({
|
||||
url: '/invest/heartJourney',
|
||||
method: 'put',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除心路历程
|
||||
export function delHeartJourney(id) {
|
||||
return request({
|
||||
url: '/invest/heartJourney/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
44
src/api/invest/installmentDetail.js
Normal file
44
src/api/invest/installmentDetail.js
Normal file
@@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询分期历史明细列表
|
||||
export function listInstallmentDetail(query) {
|
||||
return request({
|
||||
url: '/invest/installmentDetail/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询分期历史明细详细
|
||||
export function getInstallmentDetail(id) {
|
||||
return request({
|
||||
url: '/invest/installmentDetail/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增分期历史明细
|
||||
export function addInstallmentDetail(data) {
|
||||
return request({
|
||||
url: '/invest/installmentDetail',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改分期历史明细
|
||||
export function updateInstallmentDetail(data) {
|
||||
return request({
|
||||
url: '/invest/installmentDetail',
|
||||
method: 'put',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除分期历史明细
|
||||
export function delInstallmentDetail(id) {
|
||||
return request({
|
||||
url: '/invest/installmentDetail/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
44
src/api/invest/installmentHistory.js
Normal file
44
src/api/invest/installmentHistory.js
Normal file
@@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询网贷及分期历史列表
|
||||
export function listInstallmentHistory(query) {
|
||||
return request({
|
||||
url: '/invest/installmentHistory/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询网贷及分期历史详细
|
||||
export function getInstallmentHistory(id) {
|
||||
return request({
|
||||
url: '/invest/installmentHistory/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增网贷及分期历史
|
||||
export function addInstallmentHistory(data) {
|
||||
return request({
|
||||
url: '/invest/installmentHistory',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改网贷及分期历史
|
||||
export function updateInstallmentHistory(data) {
|
||||
return request({
|
||||
url: '/invest/installmentHistory',
|
||||
method: 'put',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除网贷及分期历史
|
||||
export function delInstallmentHistory(id) {
|
||||
return request({
|
||||
url: '/invest/installmentHistory/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
44
src/api/invest/posmachine.js
Normal file
44
src/api/invest/posmachine.js
Normal file
@@ -0,0 +1,44 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询pos机信息列表
|
||||
export function listPosmachine(query) {
|
||||
return request({
|
||||
url: '/invest/posmachine/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询pos机信息详细
|
||||
export function getPosmachine(id) {
|
||||
return request({
|
||||
url: '/invest/posmachine/' + id,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增pos机信息
|
||||
export function addPosmachine(data) {
|
||||
return request({
|
||||
url: '/invest/posmachine',
|
||||
method: 'post',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改pos机信息
|
||||
export function updatePosmachine(data) {
|
||||
return request({
|
||||
url: '/invest/posmachine',
|
||||
method: 'put',
|
||||
data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除pos机信息
|
||||
export function delPosmachine(id) {
|
||||
return request({
|
||||
url: '/invest/posmachine/' + id,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
57
src/api/invest/statisticAnalysis.js
Normal file
57
src/api/invest/statisticAnalysis.js
Normal file
@@ -0,0 +1,57 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
export function getCreditAnalysis(query) {
|
||||
return request({
|
||||
url: '/invest/analysis/creditAnalysis',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
export function getFuturesStocksAnalysis(query) {
|
||||
return request({
|
||||
url: '/invest/analysis/futuresStocksAnalysis',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
export function getInstallmentHistoryAnalysis(query) {
|
||||
return request({
|
||||
url: '/invest/analysis/installmentHistoryAnalysis',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
export function getCreditRecordsAnalysis(query) {
|
||||
return request({
|
||||
url: '/invest/analysis/creditRecordAnalysis',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
export function getInstallmentSettledAnalysis(query) {
|
||||
return request({
|
||||
url: '/invest/analysis/installmentSettledAnalysis',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
export function getAccountsAnalysis(query) {
|
||||
return request({
|
||||
url: '/invest/analysis/accountsAnalysis',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
export function getPosAnalysis(query) {
|
||||
return request({
|
||||
url: '/invest/analysis/posAnalysis',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user