12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- 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 submitShopVoucherEntryRecord(data) {
- return request({
- url: '/shopVoucherEntryRecord/submitVoucher',
- method: 'post',
- data
- })
- }
|