| 1234567891011121314151617181920212223242526272829 |
- // 刮刮乐API
- import request from "@/utils/request";
- /**
- * 新增投入/中奖记录
- */
- export function addScratchRecord(data) {
- return request({
- url: '/scratch/addScratchRecord',
- method: 'post',
- data,
- loading: true,
- loadingText: '保存中...'
- });
- }
- /**
- * 新增投入/中奖记录
- */
- export function queryScratchRecord(data) {
- return request({
- url: '/scratch/queryScratchRecord',
- method: 'post',
- data,
- loading: true,
- loadingText: '查询中...'
- });
- }
|