v3.0.1
v3.0.1
This commit is contained in:
35
CC.Yi/CC.Yi.Common/T4Vue/T4Api.vue
Normal file
35
CC.Yi/CC.Yi.Common/T4Vue/T4Api.vue
Normal file
@@ -0,0 +1,35 @@
|
||||
|
||||
|
||||
|
||||
/*
|
||||
import myaxios from '@/utils/myaxios'
|
||||
export default {
|
||||
getStudents() {
|
||||
return myaxios({
|
||||
url: '/Student/getStudents',
|
||||
method: 'get'
|
||||
})
|
||||
},
|
||||
addStudent(student) {
|
||||
return myaxios({
|
||||
url: '/Student/addStudent',
|
||||
method: 'post',
|
||||
data: student
|
||||
})
|
||||
},
|
||||
updateStudent(Student) {
|
||||
return myaxios({
|
||||
url: '/Student/UpdateStudent',
|
||||
method: 'post',
|
||||
data: Student
|
||||
})
|
||||
},
|
||||
delStudentList(Ids) {
|
||||
return myaxios({
|
||||
url: '/Student/DelStudentList',
|
||||
method: 'post',
|
||||
data: Ids
|
||||
})
|
||||
},
|
||||
}
|
||||
*/
|
||||
Reference in New Issue
Block a user