You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
773 B
JavaScript
18 lines
773 B
JavaScript
/*访问后台的代码*/
|
|
layui.define([], function(exports) {
|
|
var api={
|
|
updateTeacherOpenCourseKnowledgePointRelation:function(form,callback){
|
|
Lib.submitForm("/jlw/teacherOpenCourseKnowledgePointRelation/edit.json",form,{},callback)
|
|
},
|
|
addTeacherOpenCourseKnowledgePointRelation:function(form,callback){
|
|
Lib.submitForm("/jlw/teacherOpenCourseKnowledgePointRelation/add.json",form,{},callback)
|
|
},
|
|
del:function(ids,callback){
|
|
Common.post("/jlw/teacherOpenCourseKnowledgePointRelation/delete.json",{"ids":ids},function(){
|
|
callback();
|
|
})
|
|
}
|
|
|
|
};
|
|
exports('teacherOpenCourseKnowledgePointRelationApi',api);
|
|
}); |