zhangzengfei
2020-09-17 d4cd7df0bd1484c31e37bcb0642e89ecdcf7ab29
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import request from "@/scripts/httpRequest";
 
export const getApps = (query: any) => {
  return request({
    url: "/apps.json",
    method: "get",
    params: query
  });
};
 
//获取应用中心商城待激活列表
export const getUnActivedSdk = () => {
  return request({
    url: "/data/api-v/sdk/buyList",
    method: "get"
  });
};
 
//激活页面算法
export const actPageAlg = (sdkId:String,code:String) => {
  return request({
    url: `/data/api-v/sdk/active?sdkId=${sdkId}&code=${code}`,
    method: "get",
  })
}