gaoluyang
2 天以前 7b21512f6cb5aaa9e53024a80e92ca877b5c4aa1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import request from "@/utils/request";
 
// 查询 APP 版本分页列表
export function listAppVersion(params) {
  return request({
    url: "/app/getAllVersion",
    method: "get",
    params,
  });
}
 
// 上传 APK
export function add(data) {
  return request({
    url: "/app/add",
    method: "post",
    data
  });
}