MrShi
4 天以前 9eeb62c02a7b3c7b95c20678b6a9c74e7f12f943
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
  })
}