mirror of
https://github.com/ialley-workshop-open/uni-halo.git
synced 2025-05-20 02:20:15 +09:00
34 lines
693 B
JavaScript
34 lines
693 B
JavaScript
export default function() {
|
|
// #ifdef APP-PLUS
|
|
return new Promise((resolve, reject) => {
|
|
plus.runtime.getProperty(plus.runtime.appid, function(widgetInfo) {
|
|
const data = {
|
|
action: 'checkVersion',
|
|
appid: plus.runtime.appid,
|
|
appVersion: plus.runtime.version,
|
|
wgtVersion: widgetInfo.version
|
|
}
|
|
console.log("data: ",data);
|
|
uniCloud.callFunction({
|
|
name: 'uni-upgrade-center',
|
|
data,
|
|
success: (e) => {
|
|
console.log("e: ", e);
|
|
resolve(e)
|
|
},
|
|
fail: (error) => {
|
|
reject(error)
|
|
}
|
|
})
|
|
})
|
|
})
|
|
// #endif
|
|
// #ifndef APP-PLUS
|
|
return new Promise((resolve, reject) => {
|
|
reject({
|
|
message: '请在App中使用'
|
|
})
|
|
})
|
|
// #endif
|
|
}
|