新增功能介绍列表,优化关于我们页面。新增分享ios应用id配置

This commit is contained in:
lemon橪
2021-06-13 17:54:48 +08:00
parent 2995383d63
commit eb070953c0
9 changed files with 162 additions and 88 deletions

View File

@@ -67,15 +67,28 @@ export function getLogisticsMessages(params) {
/**
* TODO 获取版本更新信息 暂无此功能。后续会优化更新
* @param appType
* @returns {AxiosPromise}
*
*/
export function getAppVersionList(appType) {
export function getAppVersion(appType) {
return http.request({
url: `/appVersion/${appType}`,
method: Method.GET,
type:"manager"
});
}
/**
* @param appType
* @returns {AxiosPromise}
*
*/
export function getAppVersionList(type,data) {
return http.request({
url: `/appVersion/appVersion/${type}`,
method: Method.GET,
type:"manager",
data
});
}