市北人才赋能平台 --小程序端
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.

20 lines
321 B

import {HTTP, Method} from '../utils/http.js'
class TopicModel extends HTTP {
constructor () {
super()
}
6 years ago
// 首页列表
getTopicList = (success) => {
let params = {
url: '/fqsb/group/list',
sucess: success,
method: Method.GET
}
this.request(params)
}
}
export {TopicModel}