From 8346b6dc91ab5f93d83532451dc44b8ab6c2cf80 Mon Sep 17 00:00:00 2001 From: wk Date: 星期五, 14 六月 2024 10:03:47 +0800 Subject: [PATCH] feta:登录bug更改 --- store/index.js | 111 +++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 files changed, 106 insertions(+), 5 deletions(-) diff --git a/store/index.js b/store/index.js index a9b48f3..59360b8 100644 --- a/store/index.js +++ b/store/index.js @@ -1,6 +1,10 @@ import Vue from 'vue' import Vuex from 'vuex' -import { webSocketUrl } from '@/api/request.js' +import { webSocketUrl,BaseUrl } from '@/api/request.js' +// 璇锋眰鐩稿叧 +import { + reqGet, +} from '@/api/index.js' Vue.use(Vuex) // 鍔ㄦ�佸簳閮╰abbar @@ -55,7 +59,45 @@ selectedIconPath: '../../static/tabBar-icon/Bmine57.png', text: '鎴戠殑' } - ] + ], + fourth: [{ + pagePath: 'pages/tabbar-page/index-tabbar/index-tabbar', + iconPath: '../../static/tabBar-icon/home.png', + selectedIconPath: '../../static/tabBar-icon/homeblue.png', + text: '杩涘満' + },{ + pagePath: 'pages/doorkeeper-page/doorkeeper-index/exit-index', + iconPath: '../../static/tabBar-icon/home.png', + selectedIconPath: '../../static/tabBar-icon/homeblue.png', + text: '鍑哄満' + }, + { + pagePath: 'pages/tabbar-page/myPage-tabbar/myPage-tabbar', + iconPath: '../../static/tabBar-icon/Gmine10.png', + selectedIconPath: '../../static/tabBar-icon/Bmine57.png', + text: '鎴戠殑' + }, + + ], + five:[{ + pagePath: 'pages/tabbar-page/index-tabbar/index-tabbar', + iconPath: '../../static/tabBar-icon/home.png', + selectedIconPath: '../../static/tabBar-icon/homeblue.png', + text: '棣栭〉' + }, + { + pagePath: 'pages/loadUnload-page/orderPlanList/index', + iconPath: '../../static/tabBar-icon/Gmine10.png', + selectedIconPath: '../../static/tabBar-icon/Bmine57.png', + text: '鏃ヨ鍒�' + }, + { + pagePath: 'pages/tabbar-page/myPage-tabbar/myPage-tabbar', + iconPath: '../../static/tabBar-icon/Gmine10.png', + selectedIconPath: '../../static/tabBar-icon/Bmine57.png', + text: '鎴戠殑' + }, +] } const store = new Vuex.Store({ state: { @@ -150,6 +192,8 @@ confirmWeighContent: '', // 绉伴噸绋冲畾鎬� 0/绋冲畾 1/闈炵ǔ瀹� 闈炵ǔ瀹氭�佷笉鑳界偣绉伴噸 globalWarning: false, + filedId:'', //鐓ゅ満id + bunkerList:'', //鐓や粨list }, mutations: { setUserInfo(state, identity) { @@ -165,7 +209,10 @@ state.userTabbar = userRoleTabbar.second uni.setStorageSync('userTabbar', state.userTabbar) } else if (roleType == 5) { - state.userTabbar = userRoleTabbar.three + state.userTabbar = userRoleTabbar.five + uni.setStorageSync('userTabbar', state.userTabbar) + }else if (roleType == 6) { + state.userTabbar = userRoleTabbar.fourth uni.setStorageSync('userTabbar', state.userTabbar) } }, @@ -248,13 +295,32 @@ changeWarning(state, payload) { state.globalWarning = payload }, + // 鐓ゅ満filedId鐨勮幏鍙� + getFiledId(state, payload) { + console.log(payload,'filedId=====') + state.filedId = payload + uni.setStorageSync('filedId', state.filedId) + }, + getBunkerList(state, payload) { + console.log('鎴戞墽琛屼簡getBunkerList====',payload) + state.bunkerList = payload + uni.setStorageSync('bunkerList', state.bunkerList) + } }, actions: { websocketInit({ state, dispatch, commit }) { + // #ifdef H5 + let wsUrl = `access_token=${uni.getStorageSync('token')}` + // #endif + // #ifndef H5 let wsUrl = `${webSocketUrl}?access_token=${uni.getStorageSync('token')}` + // #endif state.socketTask = uni.connectSocket({ url: wsUrl, - header: { CLIENT_TOC: 'Y' }, + header: { + clientToc: 'Y' , + 'CLIENT_TOC': 'Y', + }, success: res => { console.log(res, 'socketSuccess') if (res.errMsg === 'connectSocket:ok') { @@ -352,7 +418,42 @@ dispatch('websocketInit') }, 5000) } - } + }, + + //filedId + async getBunkerList({ state,dispatch, commit }) { //鑾峰彇filedId + // this.$reqGet(`getList/${this.deptId}`).then(res => { + // console.log(res,'鎯冲緱鍒癴iledId') + // }) + let deptId = uni.getStorageSync('userInfo').deptIds + console.log(deptId,'deptId====') + await uni.request({ //鑾峰彇deptId + url: `/wrzs/jccoalfiled/list/${deptId}`, + method: 'GET', + header: { + Authorization: 'Bearer' + ' ' + uni.getStorageSync('token'), + clientToc: 'Y', + 'CLIENT_TOC': 'Y', + }, + success: res => { + console.log(res,'filedId鎺ュ彛000000000000') + commit('getFiledId',res.data.data[0].id || '') + dispatch('getFiledIdCoalBunker') + // console.log(res,'shuj------') + // this.filedId = res.data?.data.length > 0 ? res.data.data[0].id : ''; + // this.getFiledIdCoalBunker() + } + }) + + }, + getFiledIdCoalBunker({ state, commit }) { //鐓や粨鍒楄〃锛堥噰鏍峰湴鐐癸級 + let filedId = uni.getStorageSync('filedId') + console.log(filedId,'鏈�缁堢殑filedId=============') + reqGet('getFiledIdCoalBunker', {filedId: filedId}).then(res => { + console.log(res,'res----鐓や粨') + commit('getBunkerList',res.data) + }) + }, } }) -- Gitblit v1.9.1