diff --git a/src/api/cai/payTotal.js b/src/api/cai/payTotal.js new file mode 100644 index 0000000..551fbff --- /dev/null +++ b/src/api/cai/payTotal.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询支付统计列表 +export function listPayTotal(query) { + return request({ + url: '/cai/payTotal/list', + method: 'get', + params: query + }) +} + +// 查询支付统计详细 +export function getPayTotal(id) { + return request({ + url: '/cai/payTotal/' + id, + method: 'get' + }) +} + +// 新增支付统计 +export function addPayTotal(data) { + return request({ + url: '/cai/payTotal', + method: 'post', + data: data + }) +} + +// 修改支付统计 +export function updatePayTotal(data) { + return request({ + url: '/cai/payTotal', + method: 'put', + data: data + }) +} + +// 删除支付统计 +export function delPayTotal(id) { + return request({ + url: '/cai/payTotal/' + id, + method: 'delete' + }) +} diff --git a/src/views/cai/payTotal/index.vue b/src/views/cai/payTotal/index.vue new file mode 100644 index 0000000..56ba24c --- /dev/null +++ b/src/views/cai/payTotal/index.vue @@ -0,0 +1,119 @@ + + +