You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
531 B
33 lines
531 B
import request from '@/utils/request' |
|
|
|
export function add(data) { |
|
return request({ |
|
url: 'api/yxWechatLive', |
|
method: 'post', |
|
data |
|
}) |
|
} |
|
|
|
export function del(ids) { |
|
return request({ |
|
url: 'api/yxWechatLive/', |
|
method: 'delete', |
|
data: ids |
|
}) |
|
} |
|
|
|
export function edit(data) { |
|
return request({ |
|
url: 'api/yxWechatLive', |
|
method: 'put', |
|
data |
|
}) |
|
} |
|
|
|
export function sync() { |
|
return request({ |
|
url: 'api/yxWechatLive/synchro', |
|
method: 'get' |
|
}) |
|
} |
|
export default { add, edit, del, sync }
|
|
|