diff --git a/src/api/otc/OtcStoreBondConfig.js b/src/api/otc/OtcStoreBondConfig.js new file mode 100644 index 0000000..90a5a05 --- /dev/null +++ b/src/api/otc/OtcStoreBondConfig.js @@ -0,0 +1,53 @@ +import request from '@/utils/request' + +// 查询承兑商质押金费率配置列表 +export function listOtcStoreBondConfig(query) { + return request({ + url: '/otc/OtcStoreBondConfig/list', + method: 'get', + params: query + }) +} + +// 查询承兑商质押金费率配置详细 +export function getOtcStoreBondConfig(id) { + return request({ + url: '/otc/OtcStoreBondConfig/' + id, + method: 'get' + }) +} + +// 新增承兑商质押金费率配置 +export function addOtcStoreBondConfig(data) { + return request({ + url: '/otc/OtcStoreBondConfig', + method: 'post', + data: data + }) +} + +// 修改承兑商质押金费率配置 +export function updateOtcStoreBondConfig(data) { + return request({ + url: '/otc/OtcStoreBondConfig', + method: 'put', + data: data + }) +} + +// 删除承兑商质押金费率配置 +export function delOtcStoreBondConfig(id) { + return request({ + url: '/otc/OtcStoreBondConfig/' + id, + method: 'delete' + }) +} + +// 导出承兑商质押金费率配置 +export function exportOtcStoreBondConfig(query) { + return request({ + url: '/otc/OtcStoreBondConfig/export', + method: 'get', + params: query + }) +} \ No newline at end of file diff --git a/src/api/otc/otcStoreBond.js b/src/api/otc/otcStoreBond.js new file mode 100644 index 0000000..47c5eda --- /dev/null +++ b/src/api/otc/otcStoreBond.js @@ -0,0 +1,53 @@ +import request from '@/utils/request' + +// 查询承兑商保证金记录列表 +export function listOtcStoreBond(query) { + return request({ + url: '/otc/otcStoreBond/list', + method: 'get', + params: query + }) +} + +// 查询承兑商保证金记录详细 +export function getOtcStoreBond(id) { + return request({ + url: '/otc/otcStoreBond/' + id, + method: 'get' + }) +} + +// 新增承兑商保证金记录 +export function addOtcStoreBond(data) { + return request({ + url: '/otc/otcStoreBond', + method: 'post', + data: data + }) +} + +// 修改承兑商保证金记录 +export function updateOtcStoreBond(data) { + return request({ + url: '/otc/otcStoreBond', + method: 'put', + data: data + }) +} + +// 删除承兑商保证金记录 +export function delOtcStoreBond(id) { + return request({ + url: '/otc/otcStoreBond/' + id, + method: 'delete' + }) +} + +// 导出承兑商保证金记录 +export function exportOtcStoreBond(query) { + return request({ + url: '/otc/otcStoreBond/export', + method: 'get', + params: query + }) +} \ No newline at end of file diff --git a/src/views/otc/OtcStoreBondConfig/index.vue b/src/views/otc/OtcStoreBondConfig/index.vue new file mode 100644 index 0000000..acc94db --- /dev/null +++ b/src/views/otc/OtcStoreBondConfig/index.vue @@ -0,0 +1,369 @@ + + + diff --git a/src/views/otc/otcAppealOrder/index.vue b/src/views/otc/otcAppealOrder/index.vue index 738f9e7..e1818a5 100644 --- a/src/views/otc/otcAppealOrder/index.vue +++ b/src/views/otc/otcAppealOrder/index.vue @@ -163,7 +163,8 @@ - + diff --git a/src/views/otc/otcStoreBond/index.vue b/src/views/otc/otcStoreBond/index.vue new file mode 100644 index 0000000..3b41a86 --- /dev/null +++ b/src/views/otc/otcStoreBond/index.vue @@ -0,0 +1,340 @@ + + + diff --git a/src/views/otc/otcStorePledge/index.vue b/src/views/otc/otcStorePledge/index.vue index 2939b0d..4131f7d 100644 --- a/src/views/otc/otcStorePledge/index.vue +++ b/src/views/otc/otcStorePledge/index.vue @@ -1,10 +1,19 @@