Files
smart_venue/oms/oms-h5/src/api/thread.js
2020-01-29 21:50:10 +08:00

23 lines
346 B
JavaScript

import http from '@/utils/http'
/**
* 查询互动列表
*/
export function find(id) {
return http.get('/thread/' + id)
}
/**
* 删除互动列表
*/
export function remove(ids) {
return http.post('/thread/delete', { 'id[]': ids })
}
/**
* 保存互动列表
*/
export function save(params) {
return http.post('/thread', params)
}