| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
 | | <template>  |  |     <view> |  |           |  |         <myTabbar :index="0" />  |  |     </view>  |  | </template>  |  |   |  | <script>  |  |     // import { coustomLogin, wxEmpower } from '@/util/api/index'  |  |   |  |   |  |     import myTabbar from "@/components/myTabber.vue"  |  |     export default {  |  |         components: {  |  |             myTabbar  |  |         },  |  |         data() {  |  |             return {  |  |                 form: {  |  |                     account: '',  |  |                     password: '',  |  |                 },  |  |                 logining: false,  |  |                 openId: ''  |  |             }  |  |         },  |  |         onLoad() {  |  |             // uni.login({  |  |             //     success: data => {  |  |             //         this.wxLogin(data.code)  |  |             //     },  |  |             //     fail: err => {  |  |             //         uni.$u.toast(err)  |  |             //     }  |  |             // })  |  |         },  |  |         methods: {  |  |             // loginAction() {  |  |             //     if (!this.form.account || !this.form.password) {  |  |             //         uni.$u.toast('账号或者密码不能为空')  |  |             //     }  |  |             //     this.logining = true  |  |             //     coustomLogin({...this.form, openid: this.openId})  |  |             //         .then(res => {  |  |             //             this.$store.commit('SETTOKEN', res.token)  |  |             //             this.$store.commit('SETUSERINFO', res)  |  |             //             uni.navigateTo({  |  |             //                 url:'/pages/projectList/projectList'  |  |             //             })  |  |             //         })  |  |             //         .finally(() => {  |  |             //             this.logining = false  |  |             //         })  |  |             // },  |  |             // wxLogin(code) {  |  |             //     wxEmpower({code})  |  |             //         .then(res => {  |  |             //             this.openId = res.openid  |  |             //             if (res.userInfo) {  |  |             //                 this.$store.commit('SETTOKEN', res.userInfo.token)  |  |             //                 this.$store.commit('SETUSERINFO', res.userInfo)  |  |             //                 uni.navigateTo({  |  |             //                     url:'/pages/projectList/projectList'  |  |             //                 })  |  |             //             }   |  |             //         })  |  |             //         .catch(err => {  |  |             //             uni.$u.toast(err)  |  |             //         })  |  |             // }  |  |         }  |  |     }  |  | </script>  |  |   |  | <style lang="scss" scoped>  |  |   |  | </style> | 
 |