加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
App.vue 513 Bytes
一键复制 编辑 原始数据 按行查看 历史
java110 提交于 2020-06-12 11:34 . 发布新版本业主版
<script>
//app.js
const context = require("./context/Java110Context.js");
const loginFactory = context.factory.login;
const userFactory = context.factory.user;
export default {
// 小程序启动生命周期
onLaunch: function () {
let that = this; // 检查登录状态
//loginFactory.checkLoginStatus(); // 获取用户地理位置
userFactory.getUserLocation();
},
// app全局数据
globalData: {
userInfo: null
},
methods: {}
};
</script>
<style>
@import "./app.css";
</style>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化