1 Star 0 Fork 999

afsoft / HC小区业主版

forked from java110 / HC小区业主版 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
App.vue 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
Your Name 提交于 2023-09-04 16:46 . update .gitignore
<script>
//app.js
import context from './lib/java110/Java110Context.js'
const loginFactory = context.factory.login;
const userFactory = context.factory.user;
import {reciveMessage} from './api/webView/webViewApi.js';
import {requestNoAuth} from './lib/java110/java110Request.js';
import url from './constant/url.js'
export default {
// 小程序启动生命周期
onLaunch: function() {
let that = this; // 检查登录状态
//loginFactory.checkLoginStatus(); // 获取用户地理位置
userFactory.getUserLocation();
// #ifdef H5
window.addEventListener("message", reciveMessage);
// #endif
uni.onTabBarMidButtonTap(()=>{
uni.navigateTo({
url:"/pages/machine/openDoorByQrCode",
animationType:'slide-in-bottom'
})
})
requestNoAuth({
url: url.listSystemInfo,
method: "GET",
data: {
page:1,
row:1
},
success: function(res) {
console.log(res.data);
if(res.data.data && res.data.data.length >0){
uni.setStorageSync('java110SystemConfig',res.data.data[0])
}
//reslove(res);
},
fail: function(e) {}
});
},
// app全局数据
globalData: {
userInfo: null
},
methods: {}
};
</script>
<style>
@import "./app.css";
/* #ifdef H5 */
uni-page-head {
display: none;
}
/* #endif */
</style>
微信
1
https://gitee.com/afsoft_admin/WechatOwnerService.git
git@gitee.com:afsoft_admin/WechatOwnerService.git
afsoft_admin
WechatOwnerService
HC小区业主版
master

搜索帮助