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.
19 lines
321 B
19 lines
321 B
import {HTTP, Method} from '../utils/http.js'
|
|
|
|
class TopicModel extends HTTP {
|
|
constructor () {
|
|
super()
|
|
}
|
|
// 首页列表
|
|
getTopicList = (success) => {
|
|
let params = {
|
|
url: '/fqsb/group/list',
|
|
sucess: success,
|
|
method: Method.GET
|
|
}
|
|
this.request(params)
|
|
}
|
|
}
|
|
|
|
export {TopicModel}
|
|
|
|
|