| 123456789101112131415161718192021222324252627282930 |
- <style lang="scss">
- /* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
- @import "uview-ui/index.scss";
- </style>
- <script>
- export default {
- onLaunch: function() {
- let that = this;
- wx.login({
- success(re) {
- that.$api.wxLogin({code:re.code}).then(res=>{
- uni.setStorageSync('userInfo',res.data.data.userInfo)
- uni.setStorageSync('accessToken',res.data.data.access_token)
- uni.removeStorageSync('parent_member_id');
- })
- },
- })
- console.log('App Launch')
- },
- onShow: function() {
- console.log('App Show')
- },
- onHide: function() {
- console.log('App Hide')
- }
- }
- </script>
|