qingyiay
2023-08-28 82a7eba143cc761b303b99889193f7aad2dc9d08
pages/tabbar-page/index-tabbar/index-tabbar.vue
@@ -23,6 +23,8 @@
      <driver-index v-if="roleType == 3"
         ref="driverIndexRef"
         :indexdriverBillOfLoadingData="indexdriverBillOfLoadingData"></driver-index>
      <load-unload ref="LoadUnloadRef"
         v-if="roleType == 5"></load-unload>
      <tab-bar :current="0"></tab-bar>
      <!-- 推送消息弹窗 -->
      <u-modal :show="messagePushShow"
@@ -39,6 +41,7 @@
   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';
   import LoadUnload from '@/pages/loadUnload-page/loadUnload-page.vue'
   import { mapState, mapMutations } from 'vuex';
   import { webSocketUrl } from '@/api/request.js';
@@ -47,7 +50,8 @@
      components: {
         customerIndex,
         driverIndex,
         freightForwarderIndex
         freightForwarderIndex,
         LoadUnload
      },
      computed: {
         ...mapState(['globalweighHouseCode', 'globalweigh', 'globalisconnect', 'globalSocket', 'websocketData',
@@ -165,17 +169,19 @@
                  title: this.messageList.title.slice(0, 8) + '...',
                  content: removeTags(this.messageList.content).trim().slice(0, 8) + '...'
               }
               this.messagePushShow = true;
               if (uni.getStorageSync('userId') === this.messageList.appUserId) {
                  this.messagePushShow = true;
               }
            } else {}
         }
      },
      onShow() {
         this.init();
         console.log(this.globalisconnect);
         if (this.globalisconnect) {
            this.$store.dispatch('websocketInit')
            this.changeisconnect(false)
            console.log(this.globalisconnect, 'index的ws心事’');
            this.$store.commit('changeisLogin', true)
            console.log(this.globalisconnect, 'index的ws数据');
         }
         this.userAuthorization();
         this.messageReq();
@@ -187,6 +193,7 @@
         console.log('页面卸载');
         this.$store.dispatch('websocketOnClose')
         clearInterval(this.globalIntervalId);
         this.changeisconnect(true)
      },
      methods: {
         ...mapMutations(['pushMessage', 'changeWeigh', 'changeinfraredStatus', 'changeisconnect', 'websocketInit']),
@@ -216,6 +223,12 @@
                     this.$refs.driverIndexRef.init();
                  });
                  break;
               case 5:
                  console.log('LoadUnloadRef');
                  this.$nextTick(() => {
                     this.$refs.LoadUnloadRef.init();
                  });
                  break;
               default:
                  break;
            }
@@ -224,29 +237,26 @@
         userAuthorization() {
            wx.getSetting({
               success(res) {
                  // wx.startRecord();
                  console.log('授权相机/麦克风权限success');
                  console.log(res);
                  if (!res.authSetting['scope.record'] || !res.authSetting['scope.camera']) {
                     if (!res.authSetting['scope.camera']) {
                        wx.authorize({
                           scope: 'scope.camera',
                           success() {
                              // 用户已经同意小程序使用录音功能,后续调用 wx.startRecord 接口不会弹窗询问
                              console.log('授权成功');
                              console.log('相机成功');
                           },
                           fail() {
                              console.log('授权失败');
                              console.log('相机失败');
                           }
                        });
                     } else if (!res.authSetting['scope.record']) {
                        wx.authorize({
                           scope: 'scope.record',
                           success() {
                              // 用户已经同意小程序使用录音功能,后续调用 wx.startRecord 接口不会弹窗询问
                              console.log('授权成功');
                              console.log('录音成功');
                           },
                           fail: () => {
                              console.log('授权失败');
                              console.log('录音失败');
                           }
                        });
                     }
@@ -254,7 +264,7 @@
               },
               fail() {
                  console.log('获取失败');
               }
               },
            });
         },
         // 初始化websocket