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 }) }