...
|
...
|
@@ -164,6 +164,12 @@ var Bll = { |
|
|
return false;
|
|
|
}
|
|
|
}
|
|
|
//视频描述限制
|
|
|
var videoIntroLimit=$("#video_intro").val();
|
|
|
if(videoIntroLimit&&videoIntroLimit.length>200){
|
|
|
common.util.__tip("视频描述不能超过200字", 'warning');
|
|
|
return false;
|
|
|
}
|
|
|
if (components.validate()) {
|
|
|
//TODO
|
|
|
!!~index ? Bll.contentDatas[index] = module : Bll.contentDatas.push(module);
|
...
|
...
|
@@ -199,12 +205,16 @@ var Bll = { |
|
|
onComplete: function (response) {
|
|
|
console.log("批量接口返回数据",response);
|
|
|
if (response.status && response.code == 200) {
|
|
|
$("#video_src").val(response.data.url);
|
|
|
$("#video_size").val(response.data.fileSize);
|
|
|
// if (loadModal) {
|
|
|
$("#imgTag").attr("src",response.data.url+"?vframe/jpg/offset/0");
|
|
|
$("#imgTag").show();
|
|
|
$("#imgATag").hide();
|
|
|
if(response.data.fileSize>20){
|
|
|
common.util.__tip("视频不能超过20M", 'warning');
|
|
|
}else{
|
|
|
$("#video_src").val(response.data.url);
|
|
|
$("#video_size").val(response.data.fileSize);
|
|
|
// if (loadModal) {
|
|
|
$("#imgTag").attr("src",response.data.url+"?vframe/jpg/offset/0");
|
|
|
$("#imgTag").show();
|
|
|
$("#imgATag").hide();
|
|
|
}
|
|
|
}
|
|
|
else {
|
|
|
common.util.__tip(response.message, 'warning');
|
...
|
...
|
|