12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- import request from '@/utils/request'
- // 分页查询平台代金券
- export function getAllPlatformVoucher(data) {
- return request({
- url: '/platformVoucher/getAll',
- method: 'post',
- data
- })
- }
- // 充值代金券统计
- export function getByUserOrderShopVoucher(params) {
- return request({
- url: '/shopVoucherEntryRecord/getByUserOrderVoucher',
- method: 'get',
- params
- })
- }
- // 兑换代金券统计
- export function getShopTotalShopVoucher(data) {
- return request({
- url: '/shopVoucherEntryRecord/shopTotal',
- method: 'post',
- data
- })
- }
- // 充值代金券转赠
- export function updateTransferRechargeShopVoucher(data) {
- return request({
- url: '/shopVoucherEntryRecord/getByUserOrderVoucher',
- method: 'post',
- data
- })
- }
- // 兑换代金券转赠
- export function updateTransferExchangeShopVoucher(data) {
- return request({
- url: '/shopVoucherEntryRecord/transfer',
- method: 'post',
- data
- })
- }
- // 商家充值代金券:商家转用户转账操作
- export function orderShopToUserTransferVoucher(params) {
- return request({
- url: '/shopVoucherEntryRecord/orderShopToUserTransfer',
- method: 'get',
- params
- })
- }
- // 商家兑换代金券:商家转用户转账操作
- export function shopToUserTransferVoucher(params) {
- return request({
- url: '/shopVoucherEntryRecord/shopToUserTransfer',
- method: 'get',
- params
- })
- }
- // 代金券购买提交订单
- export function submitShopVoucherEntryRecord(data) {
- return request({
- url: '/shopVoucherEntryRecord/submitVoucher',
- method: 'post',
- data
- })
- }
|