From d40527c10a2aa2ea481e1bf85ba0ac75ade9b670 Mon Sep 17 00:00:00 2001 From: qingyiay <2386314947@qq.com> Date: 星期六, 16 九月 2023 19:57:56 +0800 Subject: [PATCH] 增加磅房忙碌提示 --- pages/tabbar-page/index-tabbar/index-tabbar.vue | 52 +++++++++++++++++++++++++++++++++++++--------------- 1 files changed, 37 insertions(+), 15 deletions(-) diff --git a/pages/tabbar-page/index-tabbar/index-tabbar.vue b/pages/tabbar-page/index-tabbar/index-tabbar.vue index 04a8ca5..eba8902 100644 --- a/pages/tabbar-page/index-tabbar/index-tabbar.vue +++ b/pages/tabbar-page/index-tabbar/index-tabbar.vue @@ -23,6 +23,10 @@ <driver-index v-if="roleType == 3" ref="driverIndexRef" :indexdriverBillOfLoadingData="indexdriverBillOfLoadingData"></driver-index> + <load-unload ref="LoadUnloadRef" + v-if="roleType == 5"></load-unload> + <!-- <selectTarget v-if="roleType == 5" + ref="LoadUnloadRef"></selectTarget> --> <tab-bar :current="0"></tab-bar> <!-- 鎺ㄩ�佹秷鎭脊绐� --> <u-modal :show="messagePushShow" @@ -39,6 +43,8 @@ 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 selectTarget from '@/pages/loadUnload-page/selectTarget/selectTarget.vue' import { mapState, mapMutations } from 'vuex'; import { webSocketUrl } from '@/api/request.js'; @@ -47,7 +53,9 @@ components: { customerIndex, driverIndex, - freightForwarderIndex + freightForwarderIndex, + LoadUnload, + selectTarget }, computed: { ...mapState(['globalweighHouseCode', 'globalweigh', 'globalisconnect', 'globalSocket', 'websocketData', @@ -165,17 +173,25 @@ title: this.messageList.title.slice(0, 8) + '...', content: removeTags(this.messageList.content).trim().slice(0, 8) + '...' } - this.messagePushShow = true; - } else {} + if (uni.getStorageSync('userId') === this.messageList.appUserId) { + this.messagePushShow = true; + } + } else if (v.startsWith('wsg')) { + let wsgObj = JSON.parse(v.slice(5)); + if (uni.getStorageInfoSync('carNo') === wsgObj.carNo) { + changewsgVisiable(true) + changewsgContent(wsgObj.content) + } + } } }, onShow() { this.init(); - console.log(this.globalisconnect); if (this.globalisconnect) { this.$store.dispatch('websocketInit') this.changeisconnect(false) - console.log(this.globalisconnect, 'index鐨剋s蹇冧簨鈥�'); + this.$store.commit('changeisLogin', true) + console.log(this.globalisconnect, 'index鐨剋s鏁版嵁'); } this.userAuthorization(); this.messageReq(); @@ -187,9 +203,12 @@ console.log('椤甸潰鍗歌浇'); this.$store.dispatch('websocketOnClose') clearInterval(this.globalIntervalId); + this.changeisconnect(true) }, methods: { - ...mapMutations(['pushMessage', 'changeWeigh', 'changeinfraredStatus', 'changeisconnect', 'websocketInit']), + ...mapMutations(['pushMessage', 'changeWeigh', 'changeinfraredStatus', 'changeisconnect', 'websocketInit', + 'changewsgVisiable', 'changewsgContent' + ]), messagePage() { uni.navigateTo({ url: '/pages/public-page/message/message' @@ -216,6 +235,12 @@ this.$refs.driverIndexRef.init(); }); break; + case 5: + console.log('LoadUnloadRef'); + this.$nextTick(() => { + this.$refs.LoadUnloadRef.init(); + }); + break; default: break; } @@ -224,29 +249,26 @@ userAuthorization() { wx.getSetting({ success(res) { - // wx.startRecord(); - console.log('鎺堟潈鐩告満/楹﹀厠椋庢潈闄恠uccess'); + 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 +276,7 @@ }, fail() { console.log('鑾峰彇澶辫触'); - } + }, }); }, // 鍒濆鍖杦ebsocket -- Gitblit v1.9.1