1 Star 0 Fork 11

魏玉新/软盒APP前端-基于uniapp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
App.vue 1.75 KB
一键复制 编辑 原始数据 按行查看 历史
全能小太阳 提交于 2023-07-01 16:01 . 新版发布
<script>
import {
checkUpdate
} from "./components/yzhua006-update/js/app-update-check.js";
import API from './util/request.js';
export default {
onLaunch: function() {
// var test = plus.navigator.getSignature();
// var test1 = plus.navigator.isSimulator();
// var test2 = plus.navigator.isRoot();
// var test3 = plus.networkinfo.isSetProxy();
// console.log(test)
// console.log(API.AppKey())
// console.log(test1)
// if(test!==API.AppKey()||test3=="true"||test1=="true"){
// plus.runtime.quit();
// }
const system_info = uni.getSystemInfoSync();
let params = {
os: system_info.platform //本机设备操作系统 (android || ios)
}
if (params.os != 'ios' && params.os != 'android') false; //如果不是安卓或ios 返回false
uni.request({
url: API.GetAppUpdate(),
success: (res) => {
var data = JSON.parse(this.AES.decrypt(res.data, API.JmKey(), API.JmIv()));
let update_info = data.data
checkUpdate(update_info, 0).then(res => {
if (res.msg) {
plus.nativeUI.toast(res.msg);
}
});
uni.request({
url: API.addview(),
success: res => {
}
})
}
});
},
onShow: function() {
},
onHide: function() {
}
}
</script>
<style lang="scss">
/*每个页面公共css */
@import "@/uni_modules/uview-ui/index.scss";
@import "common/demo.scss";
page{
background-color: #f7f7f7;
}
</style>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
其他
1
https://gitee.com/wyx_develop/ruanher-app.git
git@gitee.com:wyx_develop/ruanher-app.git
wyx_develop
ruanher-app
软盒APP前端-基于uniapp
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385