学年管理-模块标签开发

This commit is contained in:
2025-11-28 20:52:24 +08:00
parent 60bd79aa9c
commit 492c52c0f6
2 changed files with 113 additions and 2 deletions

View File

@@ -75,3 +75,12 @@ export function delYear(id) {
method: 'post'
})
}
//为学年分配标签
export function assignTag(yearId,tag){
return request({
url:`/system/year/${yearId}/assign-tag`,
method: 'post',
params:{ tag: tag }
})
}