forked from wangjiadong/comp
parent
91d40f949d
commit
91352652fe
5 changed files with 57 additions and 3 deletions
@ -0,0 +1,35 @@ |
|||||||
|
import { defineStore } from 'pinia'; |
||||||
|
import axios from 'axios'; |
||||||
|
const setting = { |
||||||
|
id: '', |
||||||
|
createBy: '', |
||||||
|
createTime: '', |
||||||
|
updateBy: '', |
||||||
|
updateTime: '', |
||||||
|
sysOrgCode: '', |
||||||
|
name: '', |
||||||
|
logo: '', |
||||||
|
newsPage: '', |
||||||
|
recordNumber: '', |
||||||
|
copyright: '', |
||||||
|
certificate: '', |
||||||
|
composition: '', |
||||||
|
}; |
||||||
|
async function getSetting(setting) { |
||||||
|
console.count('请求---'); |
||||||
|
|
||||||
|
const res = await axios({ method: 'post', url: `${import.meta.env.VITE_GLOB_DOMAIN_URL}/sysconfiguration/sysConfiguration/findconfig` }); |
||||||
|
Object.assign(setting, res.data.result); |
||||||
|
setting.logo = import.meta.env.VITE_GLOB_DOMAIN_URL + '/' + setting.logo; |
||||||
|
} |
||||||
|
|
||||||
|
export const useSettingStore = defineStore('setting', { |
||||||
|
state: () => { |
||||||
|
getSetting(setting); |
||||||
|
const getDescriptor = (prop: string) => { |
||||||
|
return { get: () => setting[prop] }; |
||||||
|
}; |
||||||
|
|
||||||
|
return { setting, getDescriptor }; |
||||||
|
}, |
||||||
|
}); |
Loading…
Reference in new issue