qingyiay
2023-03-24 09c2ac7911db8993b6b435cb5af23fcf69c0fbe2
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
<template>
    <view>
        <customer-index v-if="roleType == 1" ref="customerIndexRef"></customer-index>
        <freight-forwarder-index v-if="roleType == 2" ref="freightForwarderIndexRef"></freight-forwarder-index>
        <driver-index v-if="roleType == 3" ref="driverIndexRef"></driver-index>
        <tab-bar :current="0"></tab-bar>
    </view>
</template>
 
<script>
import customerIndex from '@/pages/customer-page/customer-index/customer-index.vue';
import driverIndex from '@/pages/driver-page/driver-index/driver-index.vue';
import freightForwarderIndex from '@/pages/freight-forwarder-page/freightForwarder-index/freightForwarder-index.vue';
 
export default {
    components: {
        customerIndex,
        driverIndex,
        freightForwarderIndex
    },
    onLoad(){
        // 开启双人通话
        wx.setEnable1v1Chat({
            enable: true,
            backgroundType: 1,
            minWindowType:2,
            success() {
                console.log('开启双人通话成功');
            },
            fail() {
                console.log('开启双人通话失败');
            },
            complete() {
                console.log('开启双人通话成功Complete');
            }
        });
    },
    data() {
        return {
            roleType: null
        };
    },
    onShow() {
        this.init();
        this.userAuthorization();
    },
    methods: {
        init() {
            this.roleType = uni.getStorageSync('roleType');
            switch (this.roleType) {
                case 1:
                    console.log('customerIndexRef');
                    this.$nextTick(() => {
                        this.$refs.customerIndexRef.init();
                    });
                    break;
                case 2:
                    console.log('freightForwarderIndexRef');
                    this.$nextTick(() => {
                        this.$refs.freightForwarderIndexRef.init();
                    });
                    break;
                case 3:
                    console.log('driverIndexRef');
                    this.$nextTick(() => {
                        this.$refs.driverIndexRef.init();
                    });
                    break;
                default:
                    break;
            }
        },
        // 要求用户授权相机/麦克风权限
        userAuthorization() {
            wx.getSetting({
                success(res) {
                    // wx.startRecord();
                    console.log('success');
                    if (!res.authSetting['scope.record'] || !res.authSetting['scope.camera']) {
                        if (!res.authSetting['scope.camera']) {
                            wx.authorize({
                                scope: 'scope.camera',
                                success() {
                                    // 用户已经同意小程序使用录音功能,后续调用 wx.startRecord 接口不会弹窗询问
                                    console.log('授权成功');
                                },
                                fail() {
                                    console.log('授权失败');
                                }
                            });
                        } else if (!res.authSetting['scope.record']) {
                            wx.authorize({
                                scope: 'scope.record',
                                success() {
                                    // 用户已经同意小程序使用录音功能,后续调用 wx.startRecord 接口不会弹窗询问
                                    console.log('授权成功');
                                },
                                fail: () => {
                                    console.log('授权失败');
                                }
                            });
                        }
                    }
                },
                fail() {
                    console.log('获取失败');
                }
            });
        }
    }
};
</script>
 
<style lang="scss" scoped></style>