|
@@ -639,7 +639,7 @@ $(document).on('click', '.btn-use-vedio', function() { |
|
@@ -639,7 +639,7 @@ $(document).on('click', '.btn-use-vedio', function() { |
639
|
}, function(res) {
|
639
|
}, function(res) {
|
640
|
var data = res.data;
|
640
|
var data = res.data;
|
641
|
var imgHtml = '';
|
641
|
var imgHtml = '';
|
642
|
- if (res.code == 200 && data instanceof Array) {
|
642
|
+ if (res.code == 200 && data instanceof Array && data.length > 0) {
|
643
|
var vedioHtml = "<div class = 'vedioList' style='border-top:solid black 1px;padding:8px;'><table><tr>";
|
643
|
var vedioHtml = "<div class = 'vedioList' style='border-top:solid black 1px;padding:8px;'><table><tr>";
|
644
|
$.each(data, function(i, vedioItem) {
|
644
|
$.each(data, function(i, vedioItem) {
|
645
|
var select_img_class = "";
|
645
|
var select_img_class = "";
|
|
@@ -667,7 +667,7 @@ $(document).on('click', '.btn-use-vedio', function() { |
|
@@ -667,7 +667,7 @@ $(document).on('click', '.btn-use-vedio', function() { |
667
|
|
667
|
|
668
|
});
|
668
|
});
|
669
|
} else {
|
669
|
} else {
|
670
|
- common.util.__tip('没有可调用的图片', 'warning');
|
670
|
+ common.util.__tip('没有可调用的视频', 'warning');
|
671
|
}
|
671
|
}
|
672
|
}, true);
|
672
|
}, true);
|
673
|
});
|
673
|
});
|