锦水居民端小程序
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.

28 lines
599 B

5 years ago
var fly = require('./request.js')
module.exports = {
getActivityList: getActivityList,
5 years ago
bannerList,
bannerListV2,
5 years ago
volunteerlist,
getImgUrl
5 years ago
}
function getActivityList(params) {
return fly.get('heart/act/list', params)
}
5 years ago
function bannerList(params) {
return fly.get('heart/act/banner/list',params)
5 years ago
}
5 years ago
function bannerListV2() {
return fly.get('heart/actbanner/banner/list')
}
// 志愿者列表
function volunteerlist(params) {
return fly.get('app-user/volunteer/list',params)
}
5 years ago
// 获取配置图片
function getImgUrl(imgType) {
return fly.get(`imgConfig/getImgUrl/${imgType}`)
}