merchapp/java-mall-app-shop-admin/api/checkAPPupdate.js
2025-05-09 17:16:48 +08:00

24 lines
726 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import http from '../utils/http';
import config from '../config/config';
/**
* 账号密码登录
* @author Seven
* @data 2025-1-6
* @param {
* marketId: marketId, // 各大安卓 APP 市场标识1 - 小米2 - 华为3 - 腾讯应用市场4 - OPPO5 - VIVO6 - 三星100-通用包(不区分市场的包);
* packageName: 'com.xiaofa.shopAdmin', //包名
* currVersionKey: version, // 热更新包内部整数版本号1-10000000
}
* @returns { }
* @see https://mall.gpxscs.cn/mobile/admin/app-market-update/check/version
*/
export function GetAPPversion(params) {
return http({
url: '/admin/app-market-update/check/version',
method: 'post',
data: params,
});
}