| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- import request from '@/utils/request'
- // 送水列表
- export function waterList(data) {
- return request({
- url: '/api/certificate/list',
- method: 'get',
- data
- });
- }
- // 送水详情
- export function waterDetail(data) {
- return request({
- url: '/api/certificate/detail/'+data.id,
- method: 'get',
- data
- });
- }
- // 获取商品二级分类
- export function category_layer(data) {
- return request({
- url: '/api/category_layer',
- method: 'get',
- data
- });
- }
- // 获取二级分类下商品
- export function category_goods(data) {
- return request({
- url: '/api/category_goods',
- method: 'get',
- data
- });
- }
- // 获取水票
- export function certificate(data) {
- return request({
- url: '/api/user/certificate',
- method: 'get',
- data
- });
- }
- // 水票使用记录
- export function use_certificate(data) {
- return request({
- url: '/api/user/use_certificate',
- method: 'get',
- data
- });
- }
|