diff --git a/src/api/system/claimLog.js b/src/api/system/claimLog.js new file mode 100644 index 0000000..7c01806 --- /dev/null +++ b/src/api/system/claimLog.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 查询优惠券领取记录列表 +export function listClaimLog(query) { + return request({ + url: '/system/claimLog/list', + method: 'get', + params: query + }) +} + +// 查询优惠券领取记录详细 +export function getClaimLog(claimId) { + return request({ + url: '/system/claimLog/' + claimId, + method: 'get' + }) +} + +// 新增优惠券领取记录 +export function addClaimLog(data) { + return request({ + url: '/system/claimLog', + method: 'post', + data: data + }) +} + +// 修改优惠券领取记录 +export function updateClaimLog(data) { + return request({ + url: '/system/claimLog', + method: 'put', + data: data + }) +} + +// 删除优惠券领取记录 +export function delClaimLog(claimId) { + return request({ + url: '/system/claimLog/' + claimId, + method: 'delete' + }) +} diff --git a/src/views/system/claimLog/index.vue b/src/views/system/claimLog/index.vue new file mode 100644 index 0000000..7ab1f70 --- /dev/null +++ b/src/views/system/claimLog/index.vue @@ -0,0 +1,274 @@ + + + diff --git a/src/views/system/coupon/index.vue b/src/views/system/coupon/index.vue index bb952fd..5774426 100644 --- a/src/views/system/coupon/index.vue +++ b/src/views/system/coupon/index.vue @@ -11,17 +11,17 @@ /> - + - + - - - - + + + + + + +