四零语境前端代码仓库
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.
 
 
 

23 lines
352 B

import request from "@/api/request";
export default {
async water(data){
return request({
url: "/promotion/water",
method: "GET",
data,
needToken: true
})
},
// 我的团队
async team(data){
return request({
url: "/promotion/team",
method: "GET",
data,
needToken: true
})
}
}