初始化

This commit is contained in:
2025-07-28 15:52:07 +08:00
commit cd0e77b332
1304 changed files with 302802 additions and 0 deletions

22
src/api/stuYear/index.js Normal file
View File

@@ -0,0 +1,22 @@
import request from '@/utils/request'
export const post = (url, data) => {
data = data || {};
return request({
url: url,
method: 'post',
data
})
}
// 查询【请填写功能名称】列表
export function list(query) {
return request({
url: '/system/year/listAllYear',
method: 'get',
params: query
})
}