gasreport.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <template>
  2. <view class="gas-report" name="gasreport">
  3. <u-navbar
  4. :bgStatusImage="backPic0"
  5. :bgImage="backPic" :title="gasTitle" :safeAreaInsetTop="true" leftIcon="list" @leftClick="handlerToggle"> </u-navbar>
  6. <view class="gas-content">
  7. <component :is="loadComponent" :firstAddress="firstAddress" :secondAddress="secondAddress"
  8. :firstTj="firstTj" :secondTj="secondTj"></component>
  9. </view>
  10. <!-- 导航弹出层 -->
  11. <view class="popup-modal">
  12. <popupModal :showModel="showModel" @handlerClick="handlerClick"></popupModal>
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. import api from "@/api/api";
  18. import popupModal from './components/popupModal.vue'
  19. import gasFill from './components/gasFill.vue'
  20. import gasTask from './components/gasTask.vue'
  21. import gasRecordCard from './components/gasRecordCard.vue'
  22. import gasImgIdentify from './components/gasImgIdentify.vue'
  23. export default {
  24. name: 'gasreport',
  25. components: {
  26. popupModal,
  27. gasFill,
  28. gasTask,
  29. gasRecordCard,
  30. gasImgIdentify
  31. },
  32. data() {
  33. return {
  34. backPic0: "url(/static/topnavbar0.png)",
  35. backPic: "url(../../static/topnavbar.png)",
  36. gasTitle: '瓦斯日报',//标题
  37. showModel: false,//是否打开弹出层
  38. // loadComponent: 'gasFill',//默认加载组件
  39. loadComponent: 'gasImgIdentify',//默认加载组件
  40. taskTj: {},
  41. firstAddress: '',//一次线路
  42. secondAddress: '',//二次线路
  43. firstTj: [],//一次统计
  44. secondTj: [],//二次统计
  45. };
  46. },
  47. computed: {
  48. },
  49. mounted() {
  50. this.queryNowGasInfoByUser()
  51. },
  52. methods: {
  53. //切换导航
  54. handlerToggle() {
  55. this.showModel = !this.showModel
  56. },
  57. //导航栏点击
  58. handlerClick(data) {
  59. let that = this
  60. switch (data) {
  61. case '瓦斯巡检记录卡管理':
  62. that.loadComponent = 'gasRecordCard'
  63. that.gasTitle = '瓦斯巡检记录卡管理'
  64. that.showModel = false
  65. break;
  66. case '图片识别':
  67. that.loadComponent = 'gasImgIdentify'
  68. that.gasTitle = '图片识别'
  69. that.showModel = false
  70. break;
  71. case '早班':
  72. that.loadComponent = 'gasTask'
  73. that.gasTitle = '早班巡检任务'
  74. that.firstAddress = that.taskTj.addressEarly1
  75. that.secondAddress = that.taskTj.addressEarly2
  76. that.firstTj = that.taskTj.arrayEarly1
  77. that.secondTj = that.taskTj.arrayEarly2
  78. that.showModel = false
  79. break;
  80. case '中班':
  81. that.loadComponent = 'gasTask'
  82. that.gasTitle = '中班巡检任务'
  83. that.firstAddress = that.taskTj.addressNoon1
  84. that.secondAddress = that.taskTj.addressNoon2
  85. that.firstTj = that.taskTj.arrayNoon1
  86. that.secondTj = that.taskTj.arrayNoon2
  87. that.showModel = false
  88. break;
  89. case '夜班':
  90. that.loadComponent = 'gasTask'
  91. that.gasTitle = '夜班巡检任务'
  92. that.firstAddress = that.taskTj.addressNight1
  93. that.secondAddress = that.taskTj.addressNight2
  94. that.firstTj = that.taskTj.arrayNight1
  95. that.secondTj = that.taskTj.arrayNight2
  96. that.showModel = false
  97. break;
  98. case '瓦斯巡检填报':
  99. that.loadComponent = 'gasFill'
  100. that.gasTitle = '瓦斯巡检填报'
  101. that.showModel = false
  102. break;
  103. }
  104. },
  105. //获取card列表
  106. queryNowGasInfoByUser() {
  107. let that = this
  108. new Promise((resolve, reject) => {
  109. api
  110. .queryNowGasInfoByUser({})
  111. .then((response) => {
  112. if (response.data.code == 200) {
  113. that.taskTj=response.data.result
  114. } else {
  115. reject(response);
  116. }
  117. })
  118. .catch((error) => {
  119. console.log("catch===>response", response);
  120. reject(error);
  121. });
  122. });
  123. },
  124. },
  125. };
  126. </script>
  127. <style lang="scss" scoped>
  128. .gas-report {
  129. position: relative;
  130. box-sizing: border-box;
  131. .gas-content {
  132. height: 708px;
  133. margin-top: 85px;
  134. overflow-y: auto;
  135. .popup-modal {
  136. position: absolute;
  137. top: 45px;
  138. left: 0;
  139. height: 748px;
  140. width: 240px;
  141. }
  142. }
  143. }
  144. </style>