This commit is contained in:
全栈小学生 2025-09-13 10:26:51 +08:00
parent 7900632322
commit d497fdcc30
3 changed files with 47 additions and 3 deletions

View File

@ -209,6 +209,10 @@ onLaunch((data: any) => {
// //
uni.setStorageSync('isOnLoad', true); // uni.setStorageSync('isOnLoad', true); //
// #ifdef APP-PLUS
systemStore.getVersionInfoFn()
// #endif
}) })
onShow(() => { onShow(() => {

View File

@ -0,0 +1,3 @@
{
"prompt": "template"
}

View File

@ -7,6 +7,9 @@
"transformPx" : false, "transformPx" : false,
/* 5+App */ /* 5+App */
"app-plus" : { "app-plus" : {
"compatible": {
"ignoreVersion": true
},
"usingComponents" : true, "usingComponents" : true,
"nvueStyleCompiler" : "uni-app", "nvueStyleCompiler" : "uni-app",
"compilerVersion" : 3, "compilerVersion" : 3,
@ -17,7 +20,16 @@
"delay" : 0 "delay" : 0
}, },
/* */ /* */
"modules" : {}, "modules" : {
"Camera" : {},
"Barcode" : {},
"Contacts" : {},
"Geolocation" : {},
"Payment" : {},
"VideoPlayer" : {},
"Maps" : {},
"Share" : {}
},
/* */ /* */
"distribute" : { "distribute" : {
/* android */ /* android */
@ -41,9 +53,34 @@
] ]
}, },
/* ios */ /* ios */
"ios" : {}, "ios" : {
"dSYMs" : false
},
/* SDK */ /* SDK */
"sdkConfigs" : {} "sdkConfigs" : {
"geolocation" : {
"system" : {
"__platform__" : [ "android" ]
}
},
"payment" : {
"alipay" : {
"__platform__" : [ "ios", "android" ]
}
},
"oauth" : {},
"maps" : {
"tencent" : {
"key" : ""
}
},
"share" : {
"weixin" : {
"appid" : "",
"UniversalLinks" : ""
}
}
}
} }
}, },
/* */ /* */