对接数据

This commit is contained in:
2025-10-24 15:45:38 +08:00
parent 672a2f4c90
commit d3375a347f
138 changed files with 16904 additions and 1026 deletions

8
api/config.js Normal file
View File

@ -0,0 +1,8 @@
export default ($axios) => ({
getModuleConfigKey(Key) {
return $axios.get('/setting', { params: { Key }});
},
getModuleConfigs() {
return $axios.get('/settings');
}
})