|
@@ -164,6 +164,12 @@ var Bll = { |
|
@@ -164,6 +164,12 @@ var Bll = { |
164
|
return false;
|
164
|
return false;
|
165
|
}
|
165
|
}
|
166
|
}
|
166
|
}
|
|
|
167
|
+ //视频描述限制
|
|
|
168
|
+ var videoIntroLimit=$("#video_intro").val();
|
|
|
169
|
+ if(videoIntroLimit&&videoIntroLimit.length>200){
|
|
|
170
|
+ common.util.__tip("视频描述不能超过200字", 'warning');
|
|
|
171
|
+ return false;
|
|
|
172
|
+ }
|
167
|
if (components.validate()) {
|
173
|
if (components.validate()) {
|
168
|
//TODO
|
174
|
//TODO
|
169
|
!!~index ? Bll.contentDatas[index] = module : Bll.contentDatas.push(module);
|
175
|
!!~index ? Bll.contentDatas[index] = module : Bll.contentDatas.push(module);
|
|
@@ -199,12 +205,16 @@ var Bll = { |
|
@@ -199,12 +205,16 @@ var Bll = { |
199
|
onComplete: function (response) {
|
205
|
onComplete: function (response) {
|
200
|
console.log("批量接口返回数据",response);
|
206
|
console.log("批量接口返回数据",response);
|
201
|
if (response.status && response.code == 200) {
|
207
|
if (response.status && response.code == 200) {
|
202
|
- $("#video_src").val(response.data.url);
|
|
|
203
|
- $("#video_size").val(response.data.fileSize);
|
|
|
204
|
- // if (loadModal) {
|
|
|
205
|
- $("#imgTag").attr("src",response.data.url+"?vframe/jpg/offset/0");
|
|
|
206
|
- $("#imgTag").show();
|
|
|
207
|
- $("#imgATag").hide();
|
208
|
+ if(response.data.fileSize>20){
|
|
|
209
|
+ common.util.__tip("视频不能超过20M", 'warning');
|
|
|
210
|
+ }else{
|
|
|
211
|
+ $("#video_src").val(response.data.url);
|
|
|
212
|
+ $("#video_size").val(response.data.fileSize);
|
|
|
213
|
+ // if (loadModal) {
|
|
|
214
|
+ $("#imgTag").attr("src",response.data.url+"?vframe/jpg/offset/0");
|
|
|
215
|
+ $("#imgTag").show();
|
|
|
216
|
+ $("#imgATag").hide();
|
|
|
217
|
+ }
|
208
|
}
|
218
|
}
|
209
|
else {
|
219
|
else {
|
210
|
common.util.__tip(response.message, 'warning');
|
220
|
common.util.__tip(response.message, 'warning');
|