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

22 lines
352 B

1 month ago
1 month ago
  1. import request from "@/api/request";
  2. export default {
  3. async water(data){
  4. return request({
  5. url: "/promotion/water",
  6. method: "GET",
  7. data,
  8. needToken: true
  9. })
  10. },
  11. // 我的团队
  12. async team(data){
  13. return request({
  14. url: "/promotion/team",
  15. method: "GET",
  16. data,
  17. needToken: true
  18. })
  19. }
  20. }