chenhj
2026-04-30 67eb69b58fcc17aff9995d552cac80921f7c764c
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
  });
}