diff --git a/src/api/ss/bonusRefund.js b/src/api/ss/bonusRefund.js new file mode 100644 index 0000000..f786b39 --- /dev/null +++ b/src/api/ss/bonusRefund.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询分成退款记录列表 +export function listBonusRefund(query) { + return request({ + url: '/ss/bonusRefund/list', + method: 'get', + params: query + }) +} + +// 查询分成退款记录详细 +export function getBonusRefund(id) { + return request({ + url: '/ss/bonusRefund/' + id, + method: 'get' + }) +} + +// 新增分成退款记录 +export function addBonusRefund(data) { + return request({ + url: '/ss/bonusRefund', + method: 'post', + data: data + }) +} + +// 修改分成退款记录 +export function updateBonusRefund(data) { + return request({ + url: '/ss/bonusRefund', + method: 'put', + data: data + }) +} + +// 删除分成退款记录 +export function delBonusRefund(id) { + return request({ + url: '/ss/bonusRefund/' + id, + method: 'delete' + }) +} diff --git a/src/api/ss/reconciliationDate.js b/src/api/ss/reconciliationDate.js new file mode 100644 index 0000000..4550fe6 --- /dev/null +++ b/src/api/ss/reconciliationDate.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询日期对账列表 +export function listReconciliationDate(query) { + return request({ + url: '/ss/reconciliationDate/list', + method: 'get', + params: query + }) +} + +// 查询日期对账详细 +export function getReconciliationDate(id) { + return request({ + url: '/ss/reconciliationDate/' + id, + method: 'get' + }) +} + +// 新增日期对账 +export function addReconciliationDate(data) { + return request({ + url: '/ss/reconciliationDate', + method: 'post', + data: data + }) +} + +// 修改日期对账 +export function updateReconciliationDate(data) { + return request({ + url: '/ss/reconciliationDate', + method: 'put', + data: data + }) +} + +// 删除日期对账 +export function delReconciliationDate(id) { + return request({ + url: '/ss/reconciliationDate/' + id, + method: 'delete' + }) +} diff --git a/src/views/ss/bonusRefund/index.vue b/src/views/ss/bonusRefund/index.vue new file mode 100644 index 0000000..71c4014 --- /dev/null +++ b/src/views/ss/bonusRefund/index.vue @@ -0,0 +1,252 @@ + + + diff --git a/src/views/ss/reconciliationDate/index.vue b/src/views/ss/reconciliationDate/index.vue new file mode 100644 index 0000000..949fb00 --- /dev/null +++ b/src/views/ss/reconciliationDate/index.vue @@ -0,0 +1,304 @@ + + +