From 632470dca291b5ab097802ccd93cfbca6e786528 Mon Sep 17 00:00:00 2001 From: tianyongbao Date: Sun, 17 Nov 2024 22:08:13 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=AE=B0=E8=B4=A6=E7=AE=A1=E7=90=86?= =?UTF-8?q?=EF=BC=8C=E4=BF=A1=E7=94=A8=E5=8D=A1=E3=80=81=E5=82=A8=E8=93=84?= =?UTF-8?q?=E5=8D=A1=E8=B0=83=E9=A2=9D=E8=AE=B0=E5=BD=95=E5=8A=9F=E8=83=BD?= =?UTF-8?q?=E5=BC=80=E5=8F=91=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/invest/limitHistory.js | 44 +++++ src/views/invest/creditcard/index.vue | 231 +++++++++++++++++++++++++- src/views/invest/debitcard/index.vue | 213 +++++++++++++++++++++++- 3 files changed, 484 insertions(+), 4 deletions(-) create mode 100644 src/api/invest/limitHistory.js diff --git a/src/api/invest/limitHistory.js b/src/api/invest/limitHistory.js new file mode 100644 index 0000000..7e63df5 --- /dev/null +++ b/src/api/invest/limitHistory.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询银行卡额度调整历史记录列表 +export function listLimitHistory(query) { + return request({ + url: '/invest/limitHistory/list', + method: 'get', + params: query + }) +} + +// 查询银行卡额度调整历史记录详细 +export function getLimitHistory(id) { + return request({ + url: '/invest/limitHistory/' + id, + method: 'get' + }) +} + +// 新增银行卡额度调整历史记录 +export function addLimitHistory(data) { + return request({ + url: '/invest/limitHistory', + method: 'post', + data + }) +} + +// 修改银行卡额度调整历史记录 +export function updateLimitHistory(data) { + return request({ + url: '/invest/limitHistory', + method: 'put', + data + }) +} + +// 删除银行卡额度调整历史记录 +export function delLimitHistory(id) { + return request({ + url: '/invest/limitHistory/' + id, + method: 'delete' + }) +} diff --git a/src/views/invest/creditcard/index.vue b/src/views/invest/creditcard/index.vue index 3985088..2244523 100644 --- a/src/views/invest/creditcard/index.vue +++ b/src/views/invest/creditcard/index.vue @@ -141,16 +141,107 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
基本信息
+
+ 新增 +
+
+
+ + + + + + + + + + + + + + + + + + + + +
+
+
+ +