修改直播添加商品逻辑

This commit is contained in:
xuwenbo
2020-09-11 22:02:24 +08:00
parent b47c5d4226
commit e529a4de51
3 changed files with 70 additions and 65 deletions

View File

@ -30,4 +30,12 @@ export function sync() {
method: 'get'
})
}
export default { add, edit, del, sync }
export function addGoods(data) {
return request({
url: 'api/yxWechatLive/addGoods',
method: 'post',
data
})
}
export default { add, edit, del, sync, addGoods }