对接数据

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/comment.js Normal file
View File

@ -0,0 +1,8 @@
export default ($axios) => ({
getToolCommentList(params) {
return $axios.get('/comment', { params })
},
addToolComment(data) {
return $axios.post('/comment', data)
},
})