diff --git a/src/api/invest/installmentHistory.js b/src/api/invest/installmentHistory.js index ad657b7..6e0c0c7 100644 --- a/src/api/invest/installmentHistory.js +++ b/src/api/invest/installmentHistory.js @@ -1,6 +1,6 @@ import request from '@/utils/request' -// 查询网贷及分期历史列表 +// 查询贷款及分期历史列表 export function listInstallmentHistory(query) { return request({ url: '/invest/installmentHistory/list', @@ -9,7 +9,7 @@ export function listInstallmentHistory(query) { }) } -// 查询网贷及分期历史详细 +// 查询贷款及分期历史详细 export function getInstallmentHistory(id) { return request({ url: '/invest/installmentHistory/' + id, @@ -17,7 +17,7 @@ export function getInstallmentHistory(id) { }) } -// 新增网贷及分期历史 +// 新增贷款及分期历史 export function addInstallmentHistory(data) { return request({ url: '/invest/installmentHistory', @@ -26,7 +26,7 @@ export function addInstallmentHistory(data) { }) } -// 修改网贷及分期历史 +// 修改贷款及分期历史 export function updateInstallmentHistory(data) { return request({ url: '/invest/installmentHistory', @@ -35,7 +35,7 @@ export function updateInstallmentHistory(data) { }) } -// 删除网贷及分期历史 +// 删除贷款及分期历史 export function delInstallmentHistory(id) { return request({ url: '/invest/installmentHistory/' + id, diff --git a/src/views/invest/accountAnalysis/index.vue b/src/views/invest/accountAnalysis/index.vue index eb660df..69da179 100644 --- a/src/views/invest/accountAnalysis/index.vue +++ b/src/views/invest/accountAnalysis/index.vue @@ -45,7 +45,7 @@