合成照相馆小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
photo_uniapp/App.vue

73 lines
1.9 KiB

<style lang="scss">
/* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
@import "@/uni_modules/uview-ui/index.scss";
@import "@/static/css/iconfont.css";
</style>
<script>
export default {
onLaunch: function(options) {
console.log('App Launch');
var _this =this;
//系统信息
uni.getSystemInfo({
success:(res) => {
console.log(res);
_this.$user.session('app_system_info',res);
//检测当前平台,如果是安卓则启动安卓更新
_this.$user.session('app_system',res.platform);
}
});
// #ifdef APP-PLUS
// 锁定屏幕方向
plus.screen.lockOrientation('portrait-primary'); //锁定
// #endif
},
onShow: function() {
console.log('App Show')
var _this =this;
// #ifdef MP
//这里目前微信小程序和抖音功能基本一样
uni.getProvider({
service: 'oauth',
success: function (res) {
console.log(res.provider)
var provider = res.provider[0];
uni.login({
provider:provider,
scopes:'auth_base',
success: function (rs) {
console.log(rs);
//发起网络请求
var post = {loginCode: rs.code};
_this.$api.post('ycl/user/wx-login', post,function(res){
console.log(res);
_this.$user.session('openid',res.wxOpenid);
_this.$user.session('user_id',res.id);
if(!_this.$com.isNull(res.token))
{
_this.$user.session('token',res.token);
}
});
},
fail:function(rs){
console.log('登录失败'+rs.errMsg);
}
});
}
});
// #endif
},
onHide: function() {
console.log('App Hide')
}
}
</script>