esop.html 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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>E-SOP看板</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="/js/service/method-get-service.js"></script>
  13. <script type="text/javascript" src="/lib/jquery-3.4.1.js"></script>
  14. <script type="text/javascript" src="/lib/jquery-3.4.1.min.js"></script>
  15. </head>
  16. <body id="container" class="container-fluid">
  17. <div class="row no-padding head-bar" style="height:81px">
  18. <div class="col-lg-1 col-md-1">
  19. </div>
  20. <div class="col-lg-4 col-md-4 page-title">
  21. E-SOP看板
  22. </div>
  23. <div class="col-lg-3 col-md-3 block-padding">
  24. <button type="button" class="btn btn-warning"
  25. onclick="window.location.replace('/pages/dashboard/warehouse.html');">仓库看板</button>
  26. <button type="button" class="btn btn-warning"
  27. onclick="window.location.replace('/pages/dashboard/produce.html');">制造看板</button>
  28. <button type="button" class="btn btn-warning"
  29. onclick="window.location.replace('/pages/dashboard/line.html');">产线看板</button>
  30. <button type="button" class="btn btn-warning"
  31. onclick="window.location.replace('/pages/dashboard/quality.html');">品质看板</button>
  32. </div>
  33. <div class="col-lg-4 col-md-4">
  34. </div>
  35. </div>
  36. <div class="my-container" id="div-main">
  37. <div class="row block-padding">
  38. <div class="col-lg-4 col-md-4">
  39. <h2>任务</h2>
  40. <div class="row">
  41. <div class="col-lg-2 col-md-2 center no-padding" style="width: 48%;">订单号</div>
  42. <div class="col-lg-2 col-md-2 center no-padding" style="width: 25%;">物料号</div>
  43. <div class="col-lg-2 col-md-2 center no-padding" style="width: 25%;">物料编码</div>
  44. </div>
  45. <div class="row" v-for="task in taskList2" style="margin-bottom: 2px;">
  46. <div class="col-lg-2 col-md-2 center no-padding" style="width: 48%;">{{task.orderSheetCode}}</div>
  47. <div class="col-lg-2 col-md-2 center no-padding" style="width: 25%;">{{task.materialCode}}</div>
  48. <div class="col-lg-2 col-md-2 center no-padding" style="width: 25%;">{{task.materialName}}</div>
  49. </div>
  50. <h2>文件</h2>
  51. <div class="row">
  52. <div class="col-lg-2 col-md-2 center no-padding" style="width: 48%;">文件名</div>
  53. <div class="col-lg-2 col-md-2 center no-padding" style="width: 25%;">文件类型</div>
  54. <div class="col-lg-1 col-md-2 center no-padding" style="width: 25%;">操作</div>
  55. </div>
  56. <div class="row" v-for="task in taskList" style="margin-bottom: 2px;">
  57. <div class="col-lg-2 col-md-2 center no-padding" style="width: 48%;">{{task.fileName}}</div>
  58. <div class="col-lg-2 col-md-2 center no-padding" style="width: 25%;">{{task.fileType}}</div>
  59. <div class="col-lg-1 col-md-2 center no-padding" style="width: 25%;">
  60. <button type="button" class="btn btn-xs btn-warning" @click="showfile(task.fileName,task.fileType)">查看</button>
  61. </div>
  62. </div>
  63. </div>
  64. <div class="col-lg-8 col-md-8" >
  65. <img id="imgInfo" src="/files/imgInfo.jpg" width="100%" height="100%"/>
  66. <iframe id="frameMain" width="98%" border="0" frameborder="0" v-bind:src="filepath" style="background-color:#ffffff"></iframe>
  67. <img id="imgType" src="" width="auto" />
  68. <video id="videoType" src="" controls width="auto" > </video>
  69. <div id="textType" width="auto" ></div>
  70. </div>
  71. </div>
  72. </div>
  73. <!-- jQuery -->
  74. <script src="/lib/jquery.min.js"></script>
  75. <script src="/lib/vue.min.js"></script>
  76. <script src="/lib/echarts/echarts.min.js"></script>
  77. <script src="/lib/echarts/theme/macarons.js"></script>
  78. <script src="/js/service/produce-task.js"></script>
  79. <script type="text/javascript">
  80. $(function () {
  81. hideAll();
  82. $("#imgInfo").show();
  83. })
  84. function hideAll(){
  85. $("#frameMain").hide();
  86. $("#imgType").hide();
  87. $("#videoType").hide();
  88. $("#imgInfo").hide();
  89. }
  90. const taskList = ServiceProduceTask.getEsopFileList();
  91. const taskList2 = ServiceProduceTask.getEsopTaskList();
  92. $("#frameMain").height($(window).height()-110);
  93. $("#imgType").height($(window).height()-110);
  94. $("#videoType").height($(window).height()-110);
  95. var vm = new Vue({
  96. el: '#div-main',
  97. data: {
  98. taskList: taskList,
  99. taskList2: taskList2,
  100. filepath:""
  101. },
  102. methods: {
  103. showfile: function (name,file) {
  104. if(file=='pdf'){
  105. hideAll();
  106. $("#frameMain").show();
  107. this.filepath = "/lib/pdfjs/web/viewer.html?file=/upFiles/"+name;
  108. }else if(file=='jpg' || file=='jpeg' || file=='png'){
  109. hideAll();
  110. $("#imgType").show();
  111. $("#imgType").attr('src',"/upFiles/"+name);
  112. }else if(file=='avi' || file=='mov' || file=='rmvb' || file=='rm' || file=='flv' || file=='mp4' || file=='3gp'){
  113. hideAll();
  114. $("#videoType").show();
  115. $("#videoType").attr('src',"/upFiles/"+name);
  116. }else{
  117. alert("暂时不支持该类型文件的展示");
  118. }
  119. }
  120. },
  121. });
  122. </script>
  123. </body>
  124. </html>