diff --git a/src/api/collect/CommemorativeBanknote.js b/src/api/collect/CommemorativeBanknote.js new file mode 100644 index 0000000..8102dca --- /dev/null +++ b/src/api/collect/CommemorativeBanknote.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询纪念钞列表 +export function listCommemorativeBanknote(query) { + return request({ + url: '/collect/CommemorativeBanknote/list', + method: 'get', + params: query + }) +} + +// 查询纪念钞详细 +export function getCommemorativeBanknote(id) { + return request({ + url: '/collect/CommemorativeBanknote/' + id, + method: 'get' + }) +} + +// 新增纪念钞 +export function addCommemorativeBanknote(data) { + return request({ + url: '/collect/CommemorativeBanknote', + method: 'post', + data + }) +} + +// 修改纪念钞 +export function updateCommemorativeBanknote(data) { + return request({ + url: '/collect/CommemorativeBanknote', + method: 'put', + data + }) +} + +// 删除纪念钞 +export function delCommemorativeBanknote(id) { + return request({ + url: '/collect/CommemorativeBanknote/' + id, + method: 'delete' + }) +} diff --git a/src/api/collect/preciousMetalCoin.js b/src/api/collect/preciousMetalCoin.js new file mode 100644 index 0000000..1045332 --- /dev/null +++ b/src/api/collect/preciousMetalCoin.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询贵金属纪念币列表 +export function listPreciousMetalCoin(query) { + return request({ + url: '/collect/preciousMetalCoin/list', + method: 'get', + params: query + }) +} + +// 查询贵金属纪念币详细 +export function getPreciousMetalCoin(id) { + return request({ + url: '/collect/preciousMetalCoin/' + id, + method: 'get' + }) +} + +// 新增贵金属纪念币 +export function addPreciousMetalCoin(data) { + return request({ + url: '/collect/preciousMetalCoin', + method: 'post', + data + }) +} + +// 修改贵金属纪念币 +export function updatePreciousMetalCoin(data) { + return request({ + url: '/collect/preciousMetalCoin', + method: 'put', + data + }) +} + +// 删除贵金属纪念币 +export function delPreciousMetalCoin(id) { + return request({ + url: '/collect/preciousMetalCoin/' + id, + method: 'delete' + }) +} diff --git a/src/views/collect/CommemorativeBanknote/index.vue b/src/views/collect/CommemorativeBanknote/index.vue new file mode 100644 index 0000000..e0ccbda --- /dev/null +++ b/src/views/collect/CommemorativeBanknote/index.vue @@ -0,0 +1,458 @@ + + + + + diff --git a/src/views/collect/commemorativeCoin/index.vue b/src/views/collect/commemorativeCoin/index.vue index 1592108..c53e649 100644 --- a/src/views/collect/commemorativeCoin/index.vue +++ b/src/views/collect/commemorativeCoin/index.vue @@ -98,7 +98,7 @@ - + @@ -162,7 +162,7 @@ - + diff --git a/src/views/collect/preciousMetalCoin/index.vue b/src/views/collect/preciousMetalCoin/index.vue new file mode 100644 index 0000000..a61d1dc --- /dev/null +++ b/src/views/collect/preciousMetalCoin/index.vue @@ -0,0 +1,506 @@ + + + + +