@ -1,9 +1,18 @@
import {HTTP} from '../utils/http.js'
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}