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.
43 lines
760 B
43 lines
760 B
import httpService from "@/request"
|
|
|
|
// 话题列表
|
|
export function topicList(params) {
|
|
return httpService({
|
|
url: `/user/topic/list`,
|
|
method: 'get',
|
|
params: params,
|
|
})
|
|
}
|
|
// 话题新增
|
|
export function topicInsert(params) {
|
|
return httpService({
|
|
url: `/user/topic/insert`,
|
|
method: 'post',
|
|
data: params,
|
|
})
|
|
}
|
|
// 话题信息
|
|
export function topicInfo(params) {
|
|
return httpService({
|
|
url: `/user/topic/findById`,
|
|
method: 'get',
|
|
params: params,
|
|
})
|
|
}
|
|
// 话题修改
|
|
export function topicUpdate(params) {
|
|
return httpService({
|
|
url: `/user/topic/update`,
|
|
method: 'post',
|
|
data: params,
|
|
})
|
|
}
|
|
// 话题删除
|
|
export function topicDelete(params) {
|
|
return httpService({
|
|
url: `/user/topic/delete`,
|
|
method: 'post',
|
|
data: params,
|
|
})
|
|
}
|