Skip to content
  • This project
    • Loading...
  • Sign in

bdc / bdcdj-web

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • bdcdj-web
  • src
  • store
  • modules
  • getdqhj.js
  • xiaomiao's avatar
    --no commit message · 95524904
    95524904 Browse Directory
    xiaomiao committed 2023-08-24 17:17:17 +0800
getdqhj.js 267 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
const state = {
  dqhj: "",
}

const mutations = {
  SET_DQHJ: (state, data) => {
    state.dqhj = data
  }
}

const actions = {
  setdqjh ({ commit }, data) {
    commit('SET_DQHJ', data)
  }
}

export default {
  namespaced: true,
  state,
  mutations,
  actions
}