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
  • workflow.js
  • 任超's avatar
    style:业务办理模块整理 · 25aa848d
    25aa848d Browse Directory
    任超 committed 2022-11-22 17:10:03 +0800
workflow.js 291 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 = {
  transfer: false
}

const mutations = {
  SET_TRANSFER: (state, data) => {
    state.transfer = data
  },
}

const actions = {
  setTransfere ({ commit }, data) {
    commit('SET_TRANSFER', data)
  }
}

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