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 @@ - + - - + + + + + - + + +