Authored by 马力

vedio

@@ -44,7 +44,7 @@ var Iaccount = { @@ -44,7 +44,7 @@ var Iaccount = {
44 var apiCofig = { 44 var apiCofig = {
45 //root:__dirname, 45 //root:__dirname,
46 EnvConst:{ 46 EnvConst:{
47 - domain:"http://192.168.102.48:8088/platform", 47 + domain:"http://192.168.102.202:8088/platform",
48 //domain:"http://127.0.0.1:8088/platform", 48 //domain:"http://127.0.0.1:8088/platform",
49 // domain:"http://172.16.6.200:8088/platform", 49 // domain:"http://172.16.6.200:8088/platform",
50 //domain:"http://192.168.102.202:8088/platform", 50 //domain:"http://192.168.102.202:8088/platform",
@@ -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 });