ll
liukangdong
2025-03-05 7c60a229899757aaae09f0152bd0a8a78dfeaf2a
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
<template>
    <view class="main_app">
        <image class="login_bg" src="@/static/staff/shenfen_bg@2x.png" mode="widthFix" />
        <view class="h1">安泰物流智慧园区</view>
        <view class="placeholder6 place">请选择您的身份</view>
        <view class="item" @click="userAuth(1)">
            <image class="avatar" src="@/static/ic_visitor@2x.png" />
            <view class="content">
                <view class="name">我是访客</view>
                <view class="placeholder6">VISITOR</view>
            </view>
            <u-icon name="arrow-right" size="24" color="#979797" />
        </view>
        <view class="item" @click="userAuth(2)">
            <image class="avatar" src="@/static/ic_staff@2x.png" />
            <view class="content">
                <view class="name">我是员工</view>
                <view class="placeholder6">STAFF</view>
            </view>
            <u-icon name="arrow-right" size="24" color="#979797" />
        </view>
        <view class="item" @click="userAuth(0)">
            <image class="avatar" src="@/static/ic_driver@2x.png" />
            <view class="content">
                <view class="name">我是物流车司机</view>
                <view class="placeholder6">DRIVER</view>
            </view>
            <u-icon name="arrow-right" size="24" color="#979797" />
        </view>
    </view>
</template>
 
<script>
    import {
        wxAuthorizea,
        getUserInfo
    } from '@/api'
    import {
        baseUrl
    } from "@/utils/config.js"
    export default {
        data() {
            return {
                code: ''
            }
        },
        onLoad(option) {
            console.log('onLoad');
            if (option.ywid) {
                uni.setStorageSync('ywinfo', {
                    type: option.type,
                    yw: option.yw,
                    ywid: option.ywid
                })
            }
        },
        onShow() {
            var that = this
            let url = 'https://atwl.ahzyssl.com/zhyq_h5/#/'
            let code = ''
            if (window.location.href.indexOf('code=') !== -1 || this.code) {
                // if(window.location.href.indexOf('wdata') !== -1){
                //     uni.redirectTo({
                //         url: '/pages/wdata/home?code=' + 
                //     })
                // }
                const ywinfo = uni.getStorageSync('ywinfo') || {}
                if (ywinfo.ywid && (ywinfo.type || ywinfo.type == 0)) {
                    this.userAuth(ywinfo.type)
                }
            } else {
                // let url = window.location.href
                const appID = 'wx173e6caf5abc718a'
                let uri = encodeURIComponent(url)
                let authURL =
                    `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${appID}&redirect_uri=${uri}&response_type=code&scope=snsapi_base#wechat_redirect`
                window.location.href = authURL
            }
 
        },
        methods: {
            jump(url) {
                console.log(url)
                uni.navigateTo({
                    url
                })
            },
            driverLogin(flag) {
                // const driverInfo = uni.getStorageSync('driverInfo') || {}
                if (flag) {
                    uni.navigateTo({
                        url: '/pages/driver/index'
                    })
                } else {
                    uni.navigateTo({
                        url: '/pages/driver/login'
                    })
                }
            },
            staffLogin(flag) {
                // const userInfo = uni.getStorageSync('userInfo') || {}
                if (flag) {
                    uni.navigateTo({
                        url: '/pages/staff/index'
                    })
                } else {
                    uni.navigateTo({
                        url: '/pages/staffLogin/login'
                    })
                }
            },
            // source    来源:0=司机;1=访客;2=内部员工
            userAuth(source) {
                var that = this
                let url = window.location.href
                let code = ''
                if (url.indexOf('code=') !== -1 || this.code) {
                    const query = url.split('?')
                    for (const q of query) {
                        if (q.indexOf('code=') !== -1) {
                            let statusIndex = q.indexOf('&state')
                            code = q.substring(q.indexOf('code=') + 5, statusIndex)
                        }
                    }
                    wxAuthorizea({
                        code: code || this.code,
                        source: source
                    }).then(res => {
                        if (res.code === 200) {
                            that.$store.commit('setOpenId', res.data.openid)
                            if (res.data.member) {
                                that.$store.commit('setMember', res.data.member)
                            }
                            let flag = res.data.member && res.data.member.id
                            if (source == 0) {
                                if (res.data.token) {
                                    that.$store.commit('setToken', res.data.token)
                                    getUserInfo().then(ress => {
                                        that.$store.commit('setDriverInfo', ress.data)
                                    })
                                }
                                setTimeout(() => {
                                    that.driverLogin(flag)
                                }, 200)
                            } else if (source == 2) {
                                if (res.data.token) {
                                    that.$store.commit('setToken', res.data.token)
                                    getUserInfo().then(ress => {
                                        that.$store.commit('setUserInfo', ress.data)
                                    })
                                }
                                setTimeout(() => {
                                    that.staffLogin(flag)
                                }, 200)
                            } else {
                                this.jump('/pages/index/index')
                            }
                        }
                    })
                }
            }
        }
    }
</script>
 
<style lang="scss">
    .main_app {
        width: 100vw;
        box-sizing: border-box;
        overflow: hidden;
        margin: 0;
        height: 100vh;
        padding-top: 80rpx;
        background: linear-gradient(180deg,
                rgba(39, 155, 170, 0.2) 0%,
                rgba(39, 155, 170, 0) 100%);
 
        .login_bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: -1;
        }
 
        .h1 {
            font-weight: 600;
            font-size: 48rpx;
            color: #222222;
            line-height: 66rpx;
            margin-bottom: 16rpx;
        }
 
        .place {
            margin-bottom: 98rpx;
        }
 
        .item {
            width: 690rpx;
            height: 200rpx;
            background: #ffffff;
            border-radius: 8rpx;
            display: flex;
            align-items: center;
            padding: 40rpx;
            font-size: 26rpx;
            margin-bottom: 40rpx;
 
            .avatar {
                width: 120rpx;
                height: 120rpx;
                margin-right: 30rpx;
            }
 
            .content {
                flex: 1;
 
                .name {
                    font-weight: 600;
                    font-size: 38rpx;
                    color: #222222;
                    margin-bottom: 20rpx;
                }
            }
        }
    }
</style>