uni-halo/tm-vuetify/tool/function/vuex.js
小莫唐尼 9d3ebac076 新增:更新halo.config.js 配置参数;
更新:更新项目UI框架;
修复:修复友链列表丢失白色背景色BUG;
2022-12-09 18:10:47 +08:00

63 lines
1.0 KiB
JavaScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* 操作全局Vuex。
* 作者tmzdy
* 时间20211014
* 联系zhongjihan@sina.com
*
*/
class vuex {
constructor(store) {
this.store = store;
}
//链式调用
state(){
return this.store.state;
}
//链式调用
getters(){
let t = this;
const g = this.store.getters
let keys = Object.keys(g);
console.log(keys)
let k = keys.map((el,index)=>{
let f = el.split('/');
let tst = {}
if(f.length==1){
tst[el]=g[el]
}else{
tst[f[1]]=g[el]
// tst[f[0]+'_'+f[1]]=g[el]
// tst[f[0]][f[1]] = g[el]
}
return tst
})
let rulst = {};
k.forEach(el=>{
rulst = {...rulst,...el}
})
return rulst;
}
commit(funName,arg){
try{
this.store.commit(funName,arg);
}catch(e){
console.error("未发现函数方法:"+funName)
}
}
actions(funName,arg){
try{
return this.store.dispatch(funName,arg);
}catch(e){
console.error("未发现函数方法:"+funName)
}
}
//获得原始vuex对象。
getVuex(){
return this.store;
}
}
export default vuex;