|
|
|
@ -16,20 +16,22 @@ layui.define([ 'form', 'laydate', 'table','element','upload','resourcesInfoApi']
|
|
|
|
|
var chapterId = $("select[name='courseInfoId_1']").val();//章ID
|
|
|
|
|
var courseInfoId = $("select[name='courseInfoId_2']").val();//节ID
|
|
|
|
|
var resourcesInfoId = $("input[name='resourcesInfoId']").val();
|
|
|
|
|
var resourcesInfoType = $("select[name='resourcesInfoType']").val(); // 资源类型(详细见数据字典,resources_info_type)
|
|
|
|
|
|
|
|
|
|
var ret = "";
|
|
|
|
|
if($.isEmpty(resourcesInfoId)){
|
|
|
|
|
var resourcesInfoJson = new Array();
|
|
|
|
|
$("#demoList tr").each(function (){
|
|
|
|
|
var fileName = $(this).find("input[name='fileName']").val();
|
|
|
|
|
var format = fileName.substr((~-fileName.lastIndexOf('.') >>> 0) + 2).toLowerCase();//获取文件后缀小写
|
|
|
|
|
var resourcesInfoType = ''; //资源类型(1视频 2课件 3附件)
|
|
|
|
|
if('、avi、wmv、mpeg、mp4、mov、mkv、flv、f4v、m4v、rmvb、rm、3gp、dat、ts、mts、vob、'.indexOf("、"+format+"、") >= 0){
|
|
|
|
|
resourcesInfoType = 1;
|
|
|
|
|
}else if('、pdf、xls、xlsx、doc、docx、ppt、pptx、'.indexOf("、"+format+"、") >= 0){
|
|
|
|
|
resourcesInfoType = 2;
|
|
|
|
|
}else {
|
|
|
|
|
resourcesInfoType = 3;
|
|
|
|
|
}
|
|
|
|
|
// var resourcesInfoType = ''; //资源类型(详细见数据字典,resources_info_type)
|
|
|
|
|
// if('、avi、wmv、mpeg、mp4、mov、mkv、flv、f4v、m4v、rmvb、rm、3gp、dat、ts、mts、vob、'.indexOf("、"+format+"、") >= 0){
|
|
|
|
|
// resourcesInfoType = 1;
|
|
|
|
|
// }else if('、pdf、xls、xlsx、doc、docx、ppt、pptx、'.indexOf("、"+format+"、") >= 0){
|
|
|
|
|
// resourcesInfoType = 2;
|
|
|
|
|
// }else {
|
|
|
|
|
// resourcesInfoType = 3;
|
|
|
|
|
// }
|
|
|
|
|
resourcesInfoJson.push({
|
|
|
|
|
courseInfoId:courseInfoId,
|
|
|
|
|
resourcesInfoContent:$(this).find("input[name='imgFile']").val(),
|
|
|
|
|