提交加的弹窗

This commit is contained in:
daihh
2022-12-30 19:52:53 +08:00
parent 641a765536
commit 7885c20f4e
8 changed files with 113 additions and 7 deletions

View File

@@ -0,0 +1,17 @@
/**文章模块的相关处理*/
// import ajax from '@/utils/xajax.js'
import ajax from '../ajax'
const baseURL =process.env.VUE_APP_STAT_BASE_API;
const has2023 = function() {
return ajax.get(baseURL,'/xboe/m/stat/year/medal/has');
}
const save2023 = function() {
return ajax.get(baseURL,'/xboe/m/stat/year/medal/save');
}
export default {
has2023,
save2023
}