From 265ac10189df72d4fcac5479a3d90065e62e533c Mon Sep 17 00:00:00 2001 From: tianyongbao Date: Thu, 29 Jan 2026 15:19:10 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=96=B0=E5=A2=9E=E9=93=B6=E8=A1=8C?= =?UTF-8?q?=E5=9F=BA=E7=A1=80=E4=BF=A1=E6=81=AF=E7=AE=A1=E7=90=86=EF=BC=8C?= =?UTF-8?q?=E4=BF=A1=E7=94=A8=E5=8D=A1=E5=82=A8=E8=93=84=E5=8D=A1=E6=96=B0?= =?UTF-8?q?=E5=A2=9E=E5=AD=97=E6=AE=B5=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/invest/bankBaseInfo.js | 44 ++++ src/views/invest/bankBaseInfo/index.vue | 307 ++++++++++++++++++++++++ src/views/invest/creditcard/index.vue | 69 +++++- src/views/invest/debitcard/index.vue | 72 +++++- 4 files changed, 481 insertions(+), 11 deletions(-) create mode 100644 src/api/invest/bankBaseInfo.js create mode 100644 src/views/invest/bankBaseInfo/index.vue diff --git a/src/api/invest/bankBaseInfo.js b/src/api/invest/bankBaseInfo.js new file mode 100644 index 0000000..d2f05e3 --- /dev/null +++ b/src/api/invest/bankBaseInfo.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询银行基础信息列表 +export function listBankBaseInfo(query) { + return request({ + url: '/invest/bankBaseInfo/list', + method: 'get', + params: query + }) +} + +// 查询银行基础信息详细 +export function getBankBaseInfo(id) { + return request({ + url: '/invest/bankBaseInfo/' + id, + method: 'get' + }) +} + +// 新增银行基础信息 +export function addBankBaseInfo(data) { + return request({ + url: '/invest/bankBaseInfo', + method: 'post', + data + }) +} + +// 修改银行基础信息 +export function updateBankBaseInfo(data) { + return request({ + url: '/invest/bankBaseInfo', + method: 'put', + data + }) +} + +// 删除银行基础信息 +export function delBankBaseInfo(id) { + return request({ + url: '/invest/bankBaseInfo/' + id, + method: 'delete' + }) +} diff --git a/src/views/invest/bankBaseInfo/index.vue b/src/views/invest/bankBaseInfo/index.vue new file mode 100644 index 0000000..26ff577 --- /dev/null +++ b/src/views/invest/bankBaseInfo/index.vue @@ -0,0 +1,307 @@ + + + diff --git a/src/views/invest/creditcard/index.vue b/src/views/invest/creditcard/index.vue index 7edacda..585e687 100644 --- a/src/views/invest/creditcard/index.vue +++ b/src/views/invest/creditcard/index.vue @@ -6,6 +6,16 @@ + + + + + + + + + + @@ -32,13 +42,18 @@ - + + + + - - + + @@ -81,6 +96,11 @@ + + + + + @@ -90,6 +110,12 @@ + + + + + + @@ -135,6 +161,9 @@ + + + @@ -242,10 +271,11 @@ diff --git a/src/views/invest/debitcard/index.vue b/src/views/invest/debitcard/index.vue index 9e54ce0..39df85d 100644 --- a/src/views/invest/debitcard/index.vue +++ b/src/views/invest/debitcard/index.vue @@ -6,6 +6,16 @@ + + + + + + + + + + @@ -35,25 +45,32 @@ - + - - + + + + + - + + +