1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| import request from '@/utils/request'
|
| export function fetchList (data) {
| return request.post('/business/douyinProduct/page', data)
| }
|
| export function bindDiscount (data) {
| return request.post(`/business/douyinProduct/bindDiscount?id=${data.id}&discountId=${data.discountId}`)
| }
|
| export function sync (data) {
| return request.post('/business/douyinProduct/sync', data, {
| trim: true
| })
| }
|
|