info.vue 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. <template>
  2. <div id="main">
  3. <div class="title">
  4. <div>{{ mainTitle }}</div>
  5. <div style="width:1.5rem;height:1.5rem;margin-left: 0.625rem;cursor: pointer;" @click="back"><img src="../assets/img/tuichu.png"></div>
  6. </div>
  7. <div class="content">
  8. <div class="content_child">
  9. <table border="1" cellspacing="0" style="width:100%;">
  10. <tr height="53">
  11. <th colspan="2">班次</th>
  12. <th colspan="2">{{ data.shift }}</th>
  13. <th>检查人</th>
  14. <th>{{ data.commitUser.name }}</th>
  15. <th colspan="3">检查时间</th>
  16. <th colspan="2">{{ data.time }}</th>
  17. </tr>
  18. <template v-if="data.projectCommonList.length">
  19. <tr height="53" v-for="(item,index) in newProjectCommonList">
  20. <th colspan="2">{{ item.commonList[0] | argIfExistName }}</th>
  21. <th colspan="2">{{ item.commonList[0] | argIfExistValue }}</th>
  22. <th>{{ item.commonList[1] | argIfExistName }}</th>
  23. <th>{{ item.commonList[1] | argIfExistValue }}</th>
  24. <th colspan="3">{{ item.commonList[2] | argIfExistName }}</th>
  25. <th colspan="2">{{ item.commonList[2] | argIfExistValue }}</th>
  26. </tr>
  27. </template>
  28. <tr height="53" v-if="data.projectGroupList.length">
  29. <th>序号</th>
  30. <th>点检位置</th>
  31. <th>项目</th>
  32. <th>点检方法</th>
  33. <th style="width:16.125rem">点检内容和标准</th>
  34. <th style="width:16.125rem">数值</th>
  35. <th>可视化参考</th>
  36. <th>结果</th>
  37. <th>备注</th>
  38. <th>图片</th>
  39. <th>工程师确认</th>
  40. </tr>
  41. <template v-if="data.projectGroupList.length">
  42. <template v-for="(item,index) in data.projectGroupList">
  43. <tr height="53" v-for="(iten,indey) in item.projectList" :key="indey">
  44. <th>{{ jisuan(indey) }}</th>
  45. <th :rowspan="item.projectList.length" v-if="indey === 0">{{ item.name }}</th>
  46. <th>{{ iten.name }}</th>
  47. <th>{{ iten.method}} </th>
  48. <th style="width:16.125rem">{{ iten.standard }}</th>
  49. <th style="width:16.125rem;">
  50. <div style="display: inline-block;width:30%;" v-for="(iteo,indez) in iten.projectSubList" :key="indez">
  51. <div>{{ iteo.name }}</div>
  52. <div>{{ iteo.value }}</div>
  53. </div>
  54. </th>
  55. <th>
  56. <template v-if="iten.file.url">
  57. <img style="width:4.5rem;height:6rem;" :src="iten.file.url" alt="" @click="clickImg($event)">
  58. <big-img v-if="showImg" :imgSrc="iten.file.url" @cancelEnlarge="cancelEnlarge"></big-img>
  59. </template>
  60. </th>
  61. <th :style="{background: backgroundStyle(iten.status)}">{{ iten.statusValue }}</th>
  62. <th>{{ iten.remark }}</th>
  63. <th style="display: flex;justify-content: space-evenly;" v-if="iten.fileList.length">
  64. <div v-for="(item,indea) in iten.fileList">
  65. <img style="width:4.5rem;height:6rem;" :src="item.url" alt="" @click="clickImg($event)">
  66. <big-img v-if="showImg" :imgSrc="item.url" @cancelEnlarge="cancelEnlarge"></big-img>
  67. </div>
  68. </th>
  69. <th v-else></th>
  70. <th>{{ iten.engineer.remark }}</th>
  71. </tr>
  72. </template>
  73. </template>
  74. </table>
  75. </div>
  76. </div>
  77. </div>
  78. </template>
  79. <script>
  80. import timg from '../assets/img/timg.jpg'
  81. import bigImg from "../components/bigImg.vue"
  82. import { selectDetailById } from '@/api/bigScreen'
  83. let num = 0
  84. export default {
  85. components: {
  86. bigImg
  87. },
  88. created() {
  89. num = 0
  90. this.mainTitle = this.$route.query.name
  91. const rLoading = this.openLoading()
  92. selectDetailById({'id':this.$route.query.id}).then(res=> {
  93. if (res.status === "20000") {
  94. rLoading.close()
  95. this.data = res.data
  96. let commonNum = Math.ceil(res.data.projectCommonList.length/3)
  97. let projectCommonList = res.data.projectCommonList
  98. let newProjectCommonList = []
  99. for (let i=0;i<commonNum;i++){
  100. let data = {}
  101. let dataItem = projectCommonList.slice(i*commonNum,(i+1)*commonNum)
  102. data['commonList'] = dataItem
  103. newProjectCommonList.push(data)
  104. }
  105. this.newProjectCommonList = newProjectCommonList
  106. } else {
  107. this.$message.error(res.message)
  108. }
  109. })
  110. },
  111. mounted() {
  112. },
  113. data() {
  114. return {
  115. showImg: false,
  116. data: {},
  117. mainTitle: '',
  118. commonNum: 0,
  119. newProjectCommonList: []
  120. }
  121. },
  122. computed: {
  123. jisuan(){
  124. return function(){
  125. num += 1
  126. return num
  127. }
  128. },
  129. backgroundStyle() {
  130. return function(i){
  131. if( i === 1 ) {
  132. return 'green'
  133. } else if ( i=== 2 ) {
  134. return 'red'
  135. } else {
  136. return ''
  137. }
  138. }
  139. },
  140. // getCommonList() {
  141. // let projectCommonList = this.data.projectCommonList
  142. // let commonNum = this.commonNum
  143. // let newProjectCommonList = []
  144. // for (let i=0;i<commonNum;i++){
  145. // let data = {}
  146. // let dataItem = projectCommonList.slice(i*commonNum,(i+1)*commonNum)
  147. // data['commonList'] = dataItem
  148. // newProjectCommonList.push(data)
  149. // }
  150. // }
  151. },
  152. methods: {
  153. clickImg () {
  154. this.showImg = true
  155. },
  156. cancelEnlarge () {
  157. this.showImg = false
  158. },
  159. back() {
  160. this.$router.back()
  161. }
  162. },
  163. filters: {
  164. argIfExistName(item) {
  165. return item ? item.name : ''
  166. },
  167. argIfExistValue(item) {
  168. return item ? item.value : ''
  169. }
  170. }
  171. }
  172. </script>
  173. <style>
  174. #main{
  175. width: 100%;
  176. height: 100%;
  177. /*min-height: 100vh;*/
  178. overflow: hidden;
  179. color: #fff;
  180. background-image: url("../assets/img/bg.png");
  181. background-size: cover;
  182. background-position: center center;
  183. }
  184. .title{
  185. font-size: 1.6875rem;
  186. display: flex;
  187. justify-content: center;
  188. align-items: center;
  189. }
  190. .content {
  191. width: 91%;
  192. height: 80%;
  193. margin-top: 2%;
  194. margin-left: 5rem;
  195. text-align: center;
  196. background-image: url("../assets/img/info_bg.png");
  197. /* background-size: cover; */
  198. background-size: contain;
  199. /* background-position: center center; */
  200. background-repeat: no-repeat;
  201. position: relative;
  202. }
  203. .content_child {
  204. width: 92%;
  205. height: 90%;
  206. overflow-y: auto;
  207. margin-left:3.25rem;
  208. position: absolute;
  209. top: 5%;
  210. }
  211. table {
  212. border: 2px solid #03B8FF;
  213. }
  214. th {
  215. border: 2px solid #03B8FF;
  216. }
  217. ::-webkit-scrollbar { /*隐藏滚动条*/
  218. display: none;
  219. }
  220. </style>