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,
| };
|
|