819527061@qq.com
2024-08-08 983619ef25f84e095bcbf6f4996b0cb58210c73b
store/index.js
@@ -3,7 +3,7 @@
import { webSocketUrl,BaseUrl } from '@/api/request.js'
// 请求相关
import {
   reqGet,
   reqGet
} from '@/api/index.js'
Vue.use(Vuex)
@@ -167,7 +167,7 @@
      iconPath:  '/static/tabBar-icon/statistics.png',
      selectedIconPath: '/static/tabBar-icon/statisticsactive.png',
      // #endif
      text: '日计划'
      text: '日计划'
   },
   {
      pagePath: 'pages/tabbar-page/myPage-tabbar/myPage-tabbar',
@@ -302,6 +302,7 @@
      globalWarning: false,
      filedId:'', //场地id
      bunkerList:'', //仓库list
      samplingPersonList:'', //采样员list
   },
   mutations: {
      setUserInfo(state, identity) {
@@ -414,15 +415,19 @@
         uni.setStorageSync('filedId', state.filedId)
      },
      getBunkerList(state, payload) {
         console.log('我执行了getBunkerList====',payload)
         state.bunkerList = payload
         uni.setStorageSync('bunkerList', state.bunkerList)
      }
      },
      getSamplingPersonList(state, payload) {
         console.log('我执行了samplingPersonList====',payload)
         state.samplingPersonList = payload
         uni.setStorageSync('samplingPersonList', state.samplingPersonList)
      },
   },
   actions: {
      websocketInit({ state, dispatch, commit }) {
         // #ifdef H5
         let wsUrl = `access_token=${uni.getStorageSync('token')}`
         let wsUrl = `${webSocketUrl}?UUID=${uni.getStorageSync('token')}`
         // #endif
         // #ifndef H5
         let wsUrl = `${webSocketUrl}?access_token=${uni.getStorageSync('token')}`
@@ -558,6 +563,20 @@
         })
      },
      getSamplingPerson({ state, commit }) {  //采样人
         let params = {
            current: 1,
            size: 999,
            type: 7
         }
         reqGet('pageCarAndHuoDai',params).then(res => {
           console.log(res,'pageCarAndHuoDai======')
            if(res.code == 0) {
               let temp = res.data.records
               commit('getSamplingPersonList',temp)
            }
         })
      },
      getFiledIdCoalBunker({ state, commit }) {  //仓库列表(采样地点)
         let filedId = uni.getStorageSync('filedId')
         console.log(filedId,'最终的filedId=============')
@@ -568,7 +587,8 @@
      },
   },
   getters:{
      websocketData:(state) => state.websocketData
      websocketData:(state) => state.websocketData,
      samplingPersonList: (state) => state.samplingPersonList
   }
})