video1.html 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. <!DOCTYPE html>
  2. <html lang="zh">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=0.5">
  6. <title>云看板</title>
  7. <link href="/lib/bootstrap/bootstrap.min.css" rel="stylesheet" />
  8. <link href="/css/dashboard.css" rel="stylesheet" />
  9. <script type="text/javascript" src="/js/service.js"></script>
  10. <script type="text/javascript" src="/js/session.js"></script>
  11. <script type="text/javascript" src="/js/getService.js"></script>
  12. <script type="text/javascript" src="/lib/jquery-3.4.1.js"></script>
  13. <script type="text/javascript" src="/lib/jquery-3.4.1.min.js"></script>
  14. </head>
  15. <body id="container" class="container-fluid">
  16. <style>
  17. body{
  18. overflow-y: hidden;
  19. overflow-x: hidden;
  20. }
  21. </style>
  22. <div class="row no-padding head-bar" style="height:81px">
  23. <div class="col-lg-1 col-md-1">
  24. </div>
  25. <div class="col-lg-4 col-md-4 page-title">
  26. 云看板
  27. </div>
  28. <!-- <div class="col-lg-3 col-md-3 block-padding">
  29. <button type="button" class="btn btn-warning"
  30. onclick="window.location.replace('/pages/dashboard/warehouse.html');">仓库看板</button>
  31. <button type="button" class="btn btn-warning"
  32. onclick="window.location.replace('/pages/dashboard/produce.html');">制造看板</button>
  33. <button type="button" class="btn btn-warning"
  34. onclick="window.location.replace('/pages/dashboard/line.html');">产线看板</button>
  35. <button type="button" class="btn btn-warning"
  36. onclick="window.location.replace('/pages/dashboard/quality.html');">品质看板</button>
  37. </div> -->
  38. <!-- <div class="col-lg-4 col-md-4">
  39. </div>-->
  40. </div>
  41. <div class="my-container" id="div-main">
  42. <div id="two">
  43. <div style="width: 49%;height: 100%;float:left;margin-right: 10px;">
  44. <video id="twoVideo" class="videoType" :src="'/upVedio/ABB/'+firstFile" controls width="100%" height="100%" > </video>
  45. <img id="twoImg" class="imgType" :src="'/upVedio/ABB/'+firstFile" width="100%" />
  46. </div>
  47. <div style="width: 50%;height: 100%;float:left;" v-for="task in taskList">
  48. <video v-if="!task.isImg" class="videoType" :src="'/upVedio/ABB/'+task.fileName" controls width="100%" height="100%" > </video>
  49. <img v-if="task.isImg" class="imgType" :src="'/upVedio/ABB/'+task.fileName" width="100%" />
  50. </div>
  51. </div>
  52. <div class="row" v-for="task in taskList" id="one">
  53. <video v-if="!task.isImg" class="videoType" :src="'/upVedio/AAA/'+task.fileName" controls width="100%" height="100%" > </video>
  54. <img v-if="task.isImg" class="imgType" :src="'/upVedio/AAA/'+task.fileName" width="100%" />
  55. </div>
  56. </div>
  57. <!-- jQuery -->
  58. <script src="/lib/jquery.min.js"></script>
  59. <script src="/lib/vue.min.js"></script>
  60. <script src="/lib/echarts/echarts.min.js"></script>
  61. <script src="/lib/echarts/theme/macarons.js"></script>
  62. <script src="/js/service/produce-task.js"></script>
  63. <script type="text/javascript">
  64. $(".videoType").height($(window).height()-85);
  65. $(".imgType").height($(window).height()-85);
  66. var vm = new Vue({
  67. el: '#div-main',
  68. data: {
  69. taskList: [],
  70. cacheDataObject: {}, // 从服务器加载的全数据,界面只取某几条
  71. imer_long: '', // 定时取服务器数据
  72. timer_short: '', // 数据超长定时轮播
  73. upVideo:'',
  74. firstFile:''
  75. },
  76. methods: {
  77. // 从服务器加载数据并显示
  78. refreshData: function () {
  79. // 关闭定时器
  80. clearInterval(this.timer_short);
  81. this.loadData();
  82. // 开启定时器
  83. this.timer_short = setInterval(this.scrollData, 3000);
  84. }, // 轮播数据
  85. scrollData: function () {
  86. for (var key in this.cacheDataObject) {
  87. const dataList = this.cacheDataObject[key].data;
  88. const pagesize = this.cacheDataObject[key].pagesize;
  89. var pageindex = this.cacheDataObject[key].pageindex + 1;
  90. if (dataList.length > pagesize) {
  91. const pagesum = (dataList.length / pagesize).toFixed(0) * 1 + (dataList.length %
  92. pagesize > 0 ? 1 : 0);
  93. if (pageindex >= pagesum)
  94. pageindex = 0;
  95. this.cacheDataObject[key].pageindex = pageindex;
  96. const startIndex = pageindex * pagesize;
  97. const remainSum = dataList.length - startIndex;
  98. const recordSum = remainSum >= pagesize ? pagesize : remainSum;
  99. const keyPar = dataList.slice(startIndex, startIndex + pagesize);
  100. if(keyPar.length < 1){
  101. continue;
  102. }
  103. this[key] = dataList.slice(startIndex, startIndex + pagesize);
  104. }
  105. }
  106. }, // 从服务器加载数据
  107. loadData: function () {
  108. this.cacheDataObject = {};
  109. const taskList = ServiceProduceTask.getVedioFileList();
  110. this.upVideo = taskList[0].upVideo;
  111. if(this.upVideo == 'AAA'){
  112. $("#two").hide();
  113. }else{
  114. $("#one").hide();
  115. }
  116. this.firstFile = taskList[0].fileName;
  117. if(taskList[0].isImg){
  118. $("#twoVideo").hide();
  119. }else{
  120. $("#twoImg").hide();
  121. }
  122. this.cacheDataObject.taskList = {
  123. data: taskList,
  124. pagesize: 1,
  125. pageindex: 0
  126. }
  127. this.taskList = taskList.slice(0, this.cacheDataObject.taskList.pagesize);
  128. }
  129. },
  130. mounted() {
  131. this.timer_long = setInterval(this.refreshData, 10000);
  132. this.refreshData();
  133. },
  134. beforeDestroy() {
  135. clearInterval(this.timer_long);
  136. clearInterval(this.timer_short);
  137. }
  138. })
  139. // $(function () {
  140. // if(taskList != null){
  141. // var file = taskList[0].fileType;
  142. // if (file=='jpg' || file=='jpeg' || file=='png'){
  143. // $("#videoType").hide();
  144. // $("#imgType").attr('src',"/upVedio/"+taskList[0].fileName);
  145. // }else{
  146. // $("#imgType").hide();
  147. // $("#videoType").attr('src',"/upVedio/"+taskList[0].fileName);
  148. // setInterval(function () { getVideo(); }, 3000);
  149. // }
  150. // }
  151. // })
  152. // function getVideo(){
  153. // var _video = $('#videoType')[0];
  154. // if(_video.paused){
  155. // _video.play();
  156. // //_video.pause();//暂停
  157. // }
  158. // }
  159. </script>
  160. </body>
  161. </html>