mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-11 19:56:37 +08:00
头像上传功能、性别选择
This commit is contained in:
36
Yi.Vue2.x.Vuetify/src/store/modules/pan.js
Normal file
36
Yi.Vue2.x.Vuetify/src/store/modules/pan.js
Normal file
@@ -0,0 +1,36 @@
|
||||
const state = {
|
||||
basePath: "",
|
||||
extendPath:""
|
||||
}
|
||||
|
||||
const mutations = { //变化//载荷
|
||||
SetExtendPath(state, extendPath) {
|
||||
state.extendPath = extendPath
|
||||
},
|
||||
|
||||
SetBasePath(state, basePath) {
|
||||
state.basePath = basePath
|
||||
}
|
||||
}
|
||||
|
||||
//在action中可以配合axios进行权限判断
|
||||
const actions = { //动作
|
||||
Set_ExtendPath(context,extendPath) {
|
||||
context.commit('SetExtendPath',extendPath)
|
||||
},
|
||||
Set_BasePath(context,basePath) {
|
||||
context.commit('SetBasePath',basePath)
|
||||
},
|
||||
Add_ExtendPath(context,extendPath) {
|
||||
context.commit('SetExtendPath',context.state.extendPath+"/"+extendPath)
|
||||
},
|
||||
}
|
||||
const getters = {
|
||||
path: state => {
|
||||
return state.basePath+state.extendPath;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
export default { state, mutations, actions, getters }
|
||||
Reference in New Issue
Block a user