dcc
2024-06-13 3616db170333df7d668c97323344335b52c4153c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import Axios from "@/utils/http";
function getShare() {
  return Axios.fetch("/api/user/getShare.action");
}
function getPromote(data) {
  return Axios.fetch("/api/promote!getPromote.action",data);
}
function getPromoteData(data) {
  return Axios.fetch("/api/promote!getPromoteData.action",data);
}
export default {
  getShare,
  getPromote,
  getPromoteData,
};