...
|
...
|
@@ -142,6 +142,7 @@ var Bll = { |
|
|
module.contentData.data.src = $("#video_src").val();
|
|
|
module.contentData.data.size = $("#video_size").val();
|
|
|
module.contentData.data.video_intro = $("#video_intro").val();
|
|
|
module.contentData.data.cover_image = $("#imgTag2").val();
|
|
|
}
|
|
|
// 对于图片资源位,增加图片的原始尺寸
|
|
|
if(module.contentData.dialog == 'template_dialog_grid' || module.contentData.dialog == 'template_dialog_grid2') {
|
...
|
...
|
@@ -195,8 +196,23 @@ var Bll = { |
|
|
baidu.setContent(module.contentData.data.text);
|
|
|
};
|
|
|
if (module.contentData.dialog == "template_dialog_video") {
|
|
|
common.edit.ajaxfileupload("#cover_image", {
|
|
|
params: {
|
|
|
bucket: "article"
|
|
|
},
|
|
|
onComplete:function (response) {
|
|
|
console.log("url",response.data);
|
|
|
if (response.status && response.code == 200) {
|
|
|
$("#imgTag2").attr("src",response.data);
|
|
|
$("#imgTag2").val(response.data);
|
|
|
$("#imgTag2").show();
|
|
|
$("#imgBTag").hide();
|
|
|
}else {
|
|
|
common.util.__tip(response.message, 'warning');
|
|
|
}
|
|
|
}
|
|
|
});
|
|
|
|
|
|
};
|
|
|
common.edit.ajaxfileupload(".picfile", {
|
|
|
params: {
|
|
|
__type: "import-video",
|
...
|
...
|
@@ -209,15 +225,11 @@ var Bll = { |
|
|
onComplete: function (response) {
|
|
|
console.log("批量接口返回数据",response);
|
|
|
if (response.status && response.code == 200) {
|
|
|
if(response.data.fileSize>50){
|
|
|
common.util.__tip("视频不能超过50M", 'warning');
|
|
|
if(response.data.fileSize>200){
|
|
|
common.util.__tip("视频不能超过200M", '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 {
|
...
|
...
|
@@ -225,6 +237,9 @@ var Bll = { |
|
|
}
|
|
|
}
|
|
|
});
|
|
|
|
|
|
|
|
|
};
|
|
|
},
|
|
|
renderDialog: function (templater) {
|
|
|
Bll.__render(".modal-body", templater, Bll.module);
|
...
|
...
|
@@ -442,7 +457,8 @@ var Button = [ |
|
|
data: {
|
|
|
"src":"",
|
|
|
"video_intro":"",
|
|
|
"size":""
|
|
|
"size":"",
|
|
|
"cover_image":""
|
|
|
}
|
|
|
}];
|
|
|
$("#content_btns").html(common.util.__template2($("#template_content_btns").html(), {
|
...
|
...
|
|