+
-
+
-
+
{
SearchApp(appReq).then((res) => {
apps.value = res.data.items;
if (res.data.items.length > 0) {
- website.value.appinstall.appID = res.data.items[0].id;
+ website.value.appinstall.appId = res.data.items[0].id;
getApp();
}
});
};
const getApp = () => {
- GetApp(website.value.appinstall.appID).then((res) => {
+ GetApp(website.value.appinstall.appId).then((res) => {
appVersions.value = res.data.versions;
if (res.data.versions.length > 0) {
website.value.appinstall.version = res.data.versions[0];
@@ -206,8 +206,8 @@ const getApp = () => {
};
const getAppDetail = (version: string) => {
- GetAppDetail(website.value.appinstall.appID, version).then((res) => {
- website.value.appinstall.appDetailID = res.data.id;
+ GetAppDetail(website.value.appinstall.appId, version).then((res) => {
+ website.value.appinstall.appDetailId = res.data.id;
appDetail.value = res.data;
appParams.value = res.data.params;
paramKey.value++;