Files
Yi.Admin/CC.Yi/CC.Yi.Common/T4Vue/T4Api.vue

35 lines
693 B
Vue
Raw Normal View History

2021-06-02 20:00:25 +08:00

/*
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
})
},
}
*/