measure-detail.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328
  1. <template>
  2. <div class="content-box">
  3. <div class="title">{{ title }}</div>
  4. <div class="risk-select">
  5. <a-select style="width: 308px; font-size: 16px" v-model:value="selectVal" allowClear class="code-mode-select" @change="changeSelect">
  6. <a-select-option v-for="item in selectList" :key="item.orgname" :value="item.orgcode">{{ item.orgname }} </a-select-option>
  7. </a-select>
  8. <ArrowRightOutlined class="go-icon" @click="goDetail()" />
  9. </div>
  10. <div class="dust-content">
  11. <div class="dust-scroll-content">
  12. <!-- <template v-for="(data, selectIndex) in selectData" :key="selectIndex">
  13. <div class="monitor-item">
  14. <div class="title-box">{{ data['devicePos'] }}</div>
  15. <div class="monitor-content-top">
  16. <div v-for="(dustItem, index) in dustMonitorColumnTop" :key="index" class="top-item-box" :class="`top-item-box-${index + 1}`">
  17. <div class="item-top-title">{{ dustItem.title }}</div>
  18. <div class="item-top-value">{{ data[dustItem.code] }}</div>
  19. </div>
  20. </div>
  21. <div class="monitor-content-bottom">
  22. <div v-for="(dustItem, index) in dustMonitorColumnBootom" :key="index" class="bottom-item-box" :class="`bottom-item-box-${index + 1}`">
  23. <div class="item-bottom-title">{{ dustItem.title }}</div>
  24. <div class="item-bottom-value">{{ data[dustItem.code] }}</div>
  25. </div>
  26. </div>
  27. </div>
  28. </template> -->
  29. <a-carousel dot-position="left" dotsClass="dots-class" :dots="true" :autoplay="true">
  30. <template v-for="(data, selectIndex) in selectData" :key="selectIndex">
  31. <div class="monitor-item">
  32. <div class="title-box">{{ data['devicePos'] }}</div>
  33. <div class="monitor-content-top">
  34. <div v-for="(dustItem, index) in dustMonitorColumnTop" :key="index" class="top-item-box" :class="`top-item-box-${index + 1}`">
  35. <div class="item-top-title">{{ dustItem.title }}</div>
  36. <div class="item-top-value">{{ data[dustItem.code] }}</div>
  37. </div>
  38. </div>
  39. <div class="monitor-content-bottom">
  40. <div
  41. v-for="(dustItem, index) in dustMonitorColumnBootom"
  42. :key="index"
  43. class="bottom-item-box"
  44. :class="`bottom-item-box-${index + 1}`"
  45. >
  46. <div class="item-bottom-title">{{ dustItem.title }}</div>
  47. <div class="item-bottom-value">{{ data[dustItem.code] }}</div>
  48. </div>
  49. </div>
  50. </div>
  51. </template>
  52. </a-carousel>
  53. </div>
  54. </div>
  55. </div>
  56. </template>
  57. <script setup lang="ts">
  58. import { ref, defineProps, watch } from 'vue';
  59. import { dustMonitorColumnTop, dustMonitorColumnBootom } from '../dust.data';
  60. import { ArrowRightOutlined } from '@ant-design/icons-vue';
  61. import { useGo } from '/@/hooks/web/usePage';
  62. let props = defineProps({
  63. compositeData: {
  64. type: Array,
  65. default: () => {
  66. return [];
  67. },
  68. },
  69. });
  70. const go = useGo();
  71. let selectVal = ref('sdmtjtbetmk');
  72. let selectList = ref<any>([]);
  73. const selectData = ref<any>([]);
  74. const title = ref('粉尘测点监测详情');
  75. function changeSelect(val) {
  76. const index = selectList.value.findIndex((item) => item['orgcode'] == val);
  77. if (index > -1) {
  78. selectData.value = selectList.value[index]['dust_data'];
  79. }
  80. }
  81. function goDetail() {
  82. //本地模拟跳转
  83. go('/staticSheets/dust');
  84. }
  85. watch(
  86. () => props.compositeData,
  87. (newS, oldV) => {
  88. if (newS.length != 0) {
  89. selectList.value = newS;
  90. if (!oldV || oldV.length == 0) {
  91. const index = selectList.value.findIndex((item) => item['orgcode'] == selectVal.value);
  92. if (index > -1) {
  93. selectData.value = selectList.value[index]['dust_data'];
  94. }
  95. }
  96. }
  97. },
  98. {
  99. immediate: true,
  100. deep: true,
  101. }
  102. );
  103. </script>
  104. <style lang="less" scoped>
  105. @font-face {
  106. font-family: 'douyuFont';
  107. src: url('../../../../assets/font/douyuFont.otf');
  108. }
  109. .content-box {
  110. position: relative;
  111. width: 100%;
  112. height: 100%;
  113. .title {
  114. position: absolute;
  115. left: 50px;
  116. top: 12px;
  117. color: #fff;
  118. font-family: 'douyuFont';
  119. font-size: 14px;
  120. }
  121. .risk-select {
  122. position: relative;
  123. width: 90%;
  124. height: 30px;
  125. left: 50%;
  126. transform: translate(-50%, 0);
  127. top: 45px;
  128. background: url('../../../../../assets/images/company/content-label.png') no-repeat center;
  129. background-size: 100% 100%;
  130. z-index: 9999;
  131. .zxm-select {
  132. position: absolute;
  133. top: 50%;
  134. transform: translate(0, -50%);
  135. &:nth-child(1) {
  136. left: 10px;
  137. }
  138. }
  139. .go-icon {
  140. position: absolute;
  141. right: 2px;
  142. top: 8px;
  143. color: #fff;
  144. cursor: pointer;
  145. font-size: 20px;
  146. &:hover {
  147. color: #00d8ff;
  148. }
  149. }
  150. }
  151. .dust-content {
  152. height: 100%;
  153. padding-top: 52px;
  154. padding-left: 20px;
  155. box-sizing: border-box;
  156. .dust-scroll-content {
  157. width: 100%;
  158. height: 420px;
  159. overflow-y: auto;
  160. overflow-x: hidden;
  161. .monitor-item {
  162. margin-bottom: 15px;
  163. .title-box {
  164. color: #fff;
  165. width: 100%;
  166. height: 40px;
  167. margin-left: 5px;
  168. margin-top: 00px;
  169. margin-bottom: 5px;
  170. padding-left: 40px;
  171. padding-top: 6px;
  172. background: url('../../../../../assets//images//company//lentj.png') no-repeat;
  173. background-size: 199px 100%;
  174. font-size: 15px;
  175. font-weight: 600;
  176. }
  177. .monitor-content-top {
  178. width: 100%;
  179. display: flex;
  180. flex-direction: row;
  181. flex-wrap: wrap;
  182. color: #fff;
  183. .top-item-box {
  184. width: 193px;
  185. height: 64px;
  186. display: flex;
  187. justify-content: space-between;
  188. align-items: center;
  189. padding: 0 28px;
  190. }
  191. .top-item-box-1 {
  192. background: url('../../../../../assets//images//company//dust//tip-bg-1.png');
  193. }
  194. .top-item-box-2 {
  195. background: url('../../../../../assets//images//company//dust//tip-bg-2.png');
  196. }
  197. .top-item-box-3 {
  198. background: url('../../../../../assets//images//company//dust//tip-bg-3.png');
  199. }
  200. .top-item-box-4 {
  201. background: url('../../../../../assets//images//company//dust//tip-bg-4.png');
  202. }
  203. }
  204. .monitor-content-bottom {
  205. padding: 0 20px;
  206. color: #fff;
  207. .bottom-item-box {
  208. width: 358px;
  209. height: 43px;
  210. display: flex;
  211. justify-content: space-between;
  212. align-items: center;
  213. margin-top: 14px;
  214. position: relative;
  215. .item-bottom-title {
  216. margin-left: 65px;
  217. }
  218. .item-bottom-value {
  219. margin-right: 20px;
  220. }
  221. }
  222. .bottom-item-box-1 {
  223. background: url('../../../../../assets//images//company//dust//tip-bg1-1.png');
  224. &::after {
  225. content: '';
  226. width: 25px;
  227. height: 25px;
  228. position: absolute;
  229. left: 13px;
  230. top: 7px;
  231. background: url('../../../../../assets//images//company//dust//dustCon-icon.png');
  232. }
  233. }
  234. .bottom-item-box-2 {
  235. background: url('../../../../../assets//images//company//dust//tip-bg1-2.png');
  236. &::after {
  237. content: '';
  238. width: 25px;
  239. height: 25px;
  240. position: absolute;
  241. left: 12px;
  242. top: 6px;
  243. background: url('../../../../../assets//images//company//dust//respirableDustCon-icon.png');
  244. }
  245. }
  246. .bottom-item-box-3 {
  247. background: url('../../../../../assets//images//company//dust//tip-bg1-1.png');
  248. &::after {
  249. content: '';
  250. width: 28px;
  251. height: 22px;
  252. position: absolute;
  253. left: 10px;
  254. top: 7px;
  255. background: url('../../../../../assets//images//company//dust//SiO2Content-icon.png');
  256. }
  257. }
  258. .bottom-item-box-4 {
  259. background: url('../../../../../assets//images//company//dust//tip-bg1-2.png');
  260. &::after {
  261. content: '';
  262. width: 26px;
  263. height: 20px;
  264. position: absolute;
  265. left: 11px;
  266. top: 8px;
  267. background: url('../../../../../assets//images//company//dust//respirableDustRatio-icon.png');
  268. }
  269. }
  270. }
  271. }
  272. }
  273. }
  274. }
  275. .dots-class {
  276. width: 8px;
  277. }
  278. ::v-deep .slick-dots-left {
  279. left: 0 !important;
  280. }
  281. ::v-deep .zxm-select-single:not(.zxm-select-customize-input) .zxm-select-selector {
  282. height: 24px;
  283. }
  284. ::v-deep .zxm-select-single:not(.zxm-select-customize-input) .zxm-select-selector .zxm-select-selection-search-input {
  285. height: 24px;
  286. }
  287. ::v-deep .zxm-select-selection-placeholder {
  288. color: #fff !important;
  289. line-height: 22px !important;
  290. }
  291. ::v-deep .zxm-select-single:not(.zxm-select-customize-input) .zxm-select-selector::after {
  292. line-height: 24px;
  293. }
  294. ::v-deep .zxm-select:not(.zxm-select-customize-input) .zxm-select-selector {
  295. background-color: transparent;
  296. border-top: 0px;
  297. border-bottom: 0px;
  298. border-left: 2px solid;
  299. border-right: 2px solid;
  300. border-image: linear-gradient(to bottom, transparent, rgba(49, 184, 255, 1), transparent) 1 1 1;
  301. }
  302. ::v-deep .zxm-select-arrow {
  303. color: #fff !important;
  304. }
  305. ::v-deep .zxm-select-selection-item {
  306. color: #fff !important;
  307. }
  308. ::v-deep .zxm-select-single .zxm-select-selector .zxm-select-selection-item {
  309. line-height: 24px !important;
  310. }
  311. </style>