dustWarn.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655
  1. <template>
  2. <customHeader :options="options" @change="getSelectRow" :optionValue="optionValue"> 粉尘监测预警 </customHeader>
  3. <div class="dustWarn">
  4. <div class="top-dust">
  5. <a-button v-if="!hasPermission('dustWarn:return')" preIcon="ant-design:rollback-outlined" type="text" size="small"
  6. style="position: absolute; left: 15px; top: 15px; color: #fff" @click="getBack">返回</a-button>
  7. <div class="alarm-menu">
  8. <div class="card-btn">
  9. <div :class="activeIndex1 == ind ? 'btn1' : 'btn'" v-for="(item, ind) in menuList" :key="ind"
  10. @click="cardClick(ind, item)">
  11. <div class="text">{{ item.name }}</div>
  12. <div class="warn">{{ item.warn }}</div>
  13. </div>
  14. </div>
  15. </div>
  16. <div class="dust-content">
  17. <div class="content-left">
  18. <div :class="activeIndex == index ? 'content-left-item' : 'content-left-item1'"
  19. v-for="(item, index) in topAreaList" :key="index" @click="topAreaClick(index)">
  20. <div class="content-title">{{ item.title }}</div>
  21. <div class="content-items" v-for="(ite, ind) in item.content" :key="ind">
  22. <span>{{ ite.label }}</span>
  23. <span style="color: var(--vent-table-action-link)">{{ ite.value }}</span>
  24. </div>
  25. </div>
  26. </div>
  27. <div class="content-right">
  28. <div class="title-t">
  29. <div class="text-t">粉尘信息状态监测</div>
  30. </div>
  31. <div class="echart-boxd">
  32. <echartLine :echartDataGq="echartDataFc" :maxY="maxY" :echartDw="echartDw" :gridV="gridV" />
  33. </div>
  34. </div>
  35. </div>
  36. </div>
  37. <div class="bot-dust">
  38. <div class="bot-area">
  39. <MeasurePoint title="粉尘监控测点信息" :cards="cardListTf" :charts="chartListTf" chartWidth="420px" />
  40. </div>
  41. </div>
  42. </div>
  43. </template>
  44. <script setup lang="ts">
  45. import { ref, reactive, onMounted, onUnmounted } from 'vue';
  46. import { sysTypeWarnList, sysWarn, getDevice } from '../common.api';
  47. import echartLine from '../common/echartLine.vue';
  48. import { useSystemSelect } from '/@/hooks/vent/useSystemSelect';
  49. import { useRouter } from 'vue-router';
  50. import CustomHeader from '/@/components/vent/customHeader.vue';
  51. import { usePermission } from '/@/hooks/web/usePermission';
  52. import { useGlobSetting } from '/@/hooks/setting';
  53. import MeasurePoint from '../common/measurePoint.vue';
  54. const glob = useGlobSetting();
  55. const { hasPermission } = usePermission();
  56. const { options, optionValue, getSelectRow, getSysDataSource } = useSystemSelect('sys_surface_caimei'); // 参数为场景类型(设备类型管理中可以查询到)
  57. //左侧数据列表
  58. let menuList = ref<any[]>([]);
  59. //当前左侧激活菜单的索引
  60. let activeIndex1 = ref(0);
  61. //顶部区域激活选项
  62. let activeIndex = ref(0);
  63. //顶部区域数据
  64. let topAreaList = reactive<any[]>([]);
  65. let choiceData = reactive<any[]>([]);
  66. //粉尘图表数据
  67. let echartDataFc = reactive<any>({
  68. maxData: {
  69. lengedData: '实时值(mg/m³)',
  70. data: [],
  71. },
  72. minData: {
  73. lengedData: '预测值(mg/m³)',
  74. data: [],
  75. },
  76. aveValue: {
  77. lengedData: '预警值(mg/m³)',
  78. data: [],
  79. },
  80. xData: [],
  81. });
  82. let maxY = ref<any>(0);
  83. let echartDw = ref('(mg/m³)');
  84. let gridV = reactive({
  85. top: '12%',
  86. left: '2%',
  87. bottom: '5%',
  88. right: '5%',
  89. containLabel: true,
  90. });
  91. const cardListTf = ref<any[]>([]);
  92. const chartListTf = ref<any[]>([]);
  93. let router = useRouter();
  94. let echartNow = ref<any[]>([]);
  95. let echartYc = reactive<any[]>([]);
  96. let flag = ref(true);
  97. // https获取监测数据
  98. let timer: null | NodeJS.Timeout = null;
  99. function getMonitor(flag?) {
  100. timer = setTimeout(
  101. async () => {
  102. await getMenuList()
  103. await getWindDeviceList();
  104. if (timer) {
  105. timer = null;
  106. }
  107. getMonitor(false);
  108. },
  109. flag ? 0 : 3000
  110. );
  111. }
  112. //返回首页
  113. function getBack() {
  114. router.push('/monitorChannel/monitor-alarm-home');
  115. }
  116. //菜单选项切换
  117. function cardClick(ind, item) {
  118. clearTimeout(timer);
  119. activeIndex1.value = ind;
  120. getMonitor(true);
  121. }
  122. //顶部区域选项切换
  123. function topAreaClick(index) {
  124. activeIndex.value = index;
  125. echartDataFc.maxData.data.length = 0;
  126. echartDataFc.minData.data.length = 0;
  127. echartDataFc.aveValue.data.length = 0;
  128. echartDataFc.xData.length = 0;
  129. echartYc.length = 0;
  130. flag.value = true;
  131. if (flag.value) {
  132. echartNow.value = JSON.parse(choiceData[index].readData.expectInfo)['list'];
  133. flag.value = false;
  134. }
  135. echartYc.push({
  136. time: JSON.parse(choiceData[index].readData.expectInfo)['nowTime'],
  137. value: JSON.parse(choiceData[index].readData.expectInfo)['nowVal'],
  138. });
  139. let setData = [...echartNow.value, ...echartYc].sort((a, b) => Date.parse(new Date(a.time)) - Date.parse(new Date(b.time)));
  140. setData.forEach((el) => {
  141. if (el.value && el.value != '0') {
  142. echartDataFc.xData.push(el.time);
  143. echartDataFc.maxData.data.push(el.value);
  144. echartDataFc.minData.data.push(JSON.parse(choiceData[index].readData.expectInfo)['aveVal']);
  145. echartDataFc.aveValue.data.push(
  146. JSON.parse(choiceData[activeIndex.value].readData.expectInfo)['fmin']
  147. ? JSON.parse(choiceData[activeIndex.value].readData.expectInfo)['fmin']
  148. : 0
  149. );
  150. }
  151. });
  152. }
  153. //获取左侧菜单列表
  154. async function getMenuList() {
  155. let res = await sysTypeWarnList({ type: 'dust' });
  156. if (res.length != 0) {
  157. const menuListTemp: any[] = [];
  158. res.forEach((el) => {
  159. menuListTemp.push({
  160. name: el.systemname,
  161. warn: el.warnDes,
  162. deviceID: el.id,
  163. strtype: el.strtype,
  164. detail: el.detail
  165. });
  166. });
  167. menuList.value = menuListTemp;
  168. getDetailList(menuList.value[activeIndex1.value].detail);
  169. }
  170. }
  171. //获取右侧详情列表数据
  172. function getDetailList(param) {
  173. topAreaList.length = 0;
  174. if (JSON.stringify(param) != '{}') {
  175. param.dust.forEach((el) => {
  176. topAreaList.push({
  177. title: el.strinstallpos,
  178. content: [
  179. { ids: 0, label: '温度(°C)', value: el.readData.temperature || '--' },
  180. { ids: 1, label: '粉尘浓度(mg/m³)', value: el.readData.dustval || '--' },
  181. { ids: 2, label: '喷雾水压(MPa)', value: el.readData.waterPressure || '--' },
  182. { ids: 3, label: '喷雾状态', value: el.readData.atomizingState || '--' },
  183. ],
  184. });
  185. });
  186. choiceData = param.dust;
  187. if (choiceData[activeIndex.value]) {
  188. if (flag.value) {
  189. echartNow.value = JSON.parse(choiceData[activeIndex.value].readData.expectInfo)['list'];
  190. flag.value = false;
  191. }
  192. echartYc.push({
  193. time: JSON.parse(choiceData[activeIndex.value].readData.expectInfo)['nowTime'],
  194. value: JSON.parse(choiceData[activeIndex.value].readData.expectInfo)['nowVal'],
  195. });
  196. let setData = [...echartNow.value, ...echartYc].sort((a, b) => Date.parse(new Date(a.time)) - Date.parse(new Date(b.time)));
  197. echartDataFc.maxData.data.length = 0;
  198. echartDataFc.minData.data.length = 0;
  199. echartDataFc.aveValue.data.length = 0;
  200. echartDataFc.xData.length = 0;
  201. setData.forEach((el) => {
  202. if (el.value && el.value != '0') {
  203. echartDataFc.xData.push(el.time);
  204. echartDataFc.maxData.data.push(el.value);
  205. echartDataFc.minData.data.push(JSON.parse(choiceData[activeIndex.value].readData.expectInfo)['aveVal']);
  206. echartDataFc.aveValue.data.push(
  207. JSON.parse(choiceData[activeIndex.value].readData.expectInfo)['fmin']
  208. ? JSON.parse(choiceData[activeIndex.value].readData.expectInfo)['fmin']
  209. : 0
  210. );
  211. }
  212. });
  213. maxY.value = echartDataFc.maxData.data.reduce((acr, cur) => {
  214. return acr > cur ? acr : cur;
  215. });
  216. maxY.value =
  217. maxY.value.toString().indexOf('.') == -1 ? maxY.value.toString() : maxY.value.toString().substring(0, maxY.value.toString().indexOf('.'));
  218. if (maxY.value.length < 2 && Number(maxY.value) < 1) {
  219. maxY.value = 1;
  220. } else if (maxY.value.length < 2 && Number(maxY.value) >= 1) {
  221. maxY.value = 10;
  222. } else if (maxY.value.length < 3) {
  223. maxY.value = (Number(maxY.value[0]) + 1) * 10;
  224. } else if (maxY.value.length < 4) {
  225. maxY.value = (Number(maxY.value[0]) + 1) * 100;
  226. } else if (maxY.value.length < 5) {
  227. maxY.value = (Number(maxY.value[0]) + 1) * 1000;
  228. } else if (maxY.value.length < 6) {
  229. maxY.value = (Number(maxY.value[0]) + 1) * 10000;
  230. }
  231. } else {
  232. activeIndex.value = 0;
  233. if (flag.value) {
  234. echartNow.value = JSON.parse(choiceData[activeIndex.value].readData.expectInfo)['list'];
  235. flag.value = false;
  236. }
  237. echartYc.push({
  238. time: JSON.parse(choiceData[activeIndex.value].readData.expectInfo)['nowTime'],
  239. value: JSON.parse(choiceData[activeIndex.value].readData.expectInfo)['nowVal'],
  240. });
  241. let setData = [...echartNow.value, ...echartYc].sort((a, b) => Date.parse(new Date(a.time)) - Date.parse(new Date(b.time)));
  242. echartDataFc.maxData.data.length = 0;
  243. echartDataFc.minData.data.length = 0;
  244. echartDataFc.aveValue.data.length = 0;
  245. echartDataFc.xData.length = 0;
  246. setData.forEach((el) => {
  247. if (el.value && el.value != '0') {
  248. echartDataFc.xData.push(el.time);
  249. echartDataFc.maxData.data.push(el.value);
  250. echartDataFc.minData.data.push(JSON.parse(choiceData[activeIndex.value].readData.expectInfo)['aveVal']);
  251. echartDataFc.aveValue.data.push(
  252. JSON.parse(choiceData[activeIndex.value].readData.expectInfo)['fmin']
  253. ? JSON.parse(choiceData[activeIndex.value].readData.expectInfo)['fmin']
  254. : 0
  255. );
  256. }
  257. });
  258. maxY.value = echartDataFc.maxData.data.reduce((acr, cur) => {
  259. return acr > cur ? acr : cur;
  260. });
  261. maxY.value =
  262. maxY.value.toString().indexOf('.') == -1 ? maxY.value.toString() : maxY.value.toString().substring(0, maxY.value.toString().indexOf('.'));
  263. if (maxY.value.length < 2) {
  264. maxY.value = 10;
  265. } else if (maxY.value.length < 3) {
  266. maxY.value = (Number(maxY.value[0]) + 1) * 10;
  267. } else if (maxY.value.length < 4) {
  268. maxY.value = (Number(maxY.value[0]) + 1) * 100;
  269. } else if (maxY.value.length < 5) {
  270. maxY.value = (Number(maxY.value[0]) + 1) * 1000;
  271. } else if (maxY.value.length < 6) {
  272. maxY.value = (Number(maxY.value[0]) + 1) * 10000;
  273. }
  274. }
  275. }
  276. }
  277. //获取粉尘监控测点信息
  278. async function getWindDeviceList() {
  279. // cardListTf.length = 0;
  280. const cardListTfTemp: any[] = [];
  281. const chartListTfTemp: any[] = [];
  282. let res = await getDevice({ devicetype: 'dusting', pagetype: 'normal' });
  283. if (res && res.msgTxt[0]) {
  284. let list = res.msgTxt[0].datalist || [];
  285. if (list.length > 0) {
  286. list.forEach((el: any) => {
  287. const readData = el.readData;
  288. el = Object.assign(el, readData);
  289. cardListTfTemp.push({
  290. label: '通信状态',
  291. value: el.netStatus == '0' ? '断开' : '连接',
  292. listR: [
  293. { id: 0, label: '安装位置', dw: '', value: el.strinstallpos || '-' },
  294. { id: 1, label: '粉尘浓度', dw: '(mg/m³)', value: el.dustval || '-' },
  295. {
  296. id: 2,
  297. label: '巷道湿度',
  298. dw: el.humidity && Number(el.humidity) < 1 ? '(RH)' : el.humidity && Number(el.humidity) > 1 ? '(%RH)' : '',
  299. value: el.humidity || '-',
  300. },
  301. { id: 4, label: '巷道温度', dw: el.humidity ? '(℃)' : '', value: el.temperature || '-' },
  302. {
  303. id: 3,
  304. label: '是否报警',
  305. dw: '',
  306. value: el.warnFlag == '0' ? '正常' : el.warnFlag == 1 ? '报警' : el.warnFlag == 2 ? '断开' : '未监测',
  307. },
  308. ],
  309. });
  310. // 初始化预测曲线配置,分别为x轴时间、平均、最大、最小、实时
  311. const avgParam = el.avgParam || {
  312. avg_dusting_value: 0,
  313. max_dusting_value: 0,
  314. min_dusting_value: 0,
  315. };
  316. chartListTfTemp.push({
  317. label: el.strinstallpos,
  318. time: new Date(),
  319. data: [avgParam.avg_dusting_value, avgParam.max_dusting_value, avgParam.min_dusting_value, el.readData.dustval],
  320. });
  321. });
  322. }
  323. }
  324. cardListTf.value = cardListTfTemp;
  325. chartListTf.value = chartListTfTemp;
  326. }
  327. onMounted(() => {
  328. getMenuList();
  329. getMonitor(true)
  330. });
  331. onUnmounted(() => {
  332. if (timer) {
  333. clearTimeout(timer);
  334. timer = undefined;
  335. }
  336. });
  337. </script>
  338. <style lang="less" scoped>
  339. @import '/@/design/theme.less';
  340. @{theme-deepblue} {
  341. .dustWarn {
  342. --image-border: url('/@/assets/images/themify/deepblue/fire/border.png');
  343. --image-no-choice: url('/@/assets/images/themify/deepblue/fire/no-choice.png');
  344. --image-choice: url('/@/assets/images/themify/deepblue/fire/choice.png');
  345. --image-dust-choice: url('/@/assets/images/themify/deepblue/fire/dust-choice.png');
  346. --image-dust-content: url('/@/assets/images/themify/deepblue/fire/dust-content.png');
  347. --image-dust-choice1: url('/@/assets/images/themify/deepblue/fire/dust-choice1.png');
  348. --image-dust-content: url('/@/assets/images/themify/deepblue/fire/dust-content.png');
  349. --image-bj1: url('/@/assets/images/themify/deepblue/fire/bj1.png');
  350. }
  351. }
  352. .dustWarn {
  353. --image-border: url('/@/assets/images/fire/border.png');
  354. --image-no-choice: url('/@/assets/images/fire/no-choice.png');
  355. --image-choice: url('/@/assets/images/fire/choice.png');
  356. --image-dust-choice: url('/@/assets/images/fire/dust-choice.png');
  357. --image-dust-content: url('/@/assets/images/fire/dust-content.png');
  358. --image-dust-choice1: url('/@/assets/images/fire/dust-choice1.png');
  359. --image-dust-content: url('/@/assets/images/fire/dust-content.png');
  360. --image-bj1: url('/@/assets/images/fire/bj1.png');
  361. width: 100%;
  362. height: 100%;
  363. padding: 80px 10px 15px 10px;
  364. box-sizing: border-box;
  365. .top-dust {
  366. display: flex;
  367. justify-content: space-between;
  368. height: 50%;
  369. margin-bottom: 15px;
  370. background: var(--image-border) no-repeat center;
  371. background-size: 100% 100%;
  372. .alarm-menu {
  373. height: 100%;
  374. width: 15%;
  375. padding: 10px;
  376. box-sizing: border-box;
  377. .card-btn {
  378. width: 100%;
  379. height: 100%;
  380. overflow-y: auto;
  381. .btn {
  382. position: relative;
  383. width: 81%;
  384. height: 24%;
  385. margin-bottom: 6%;
  386. font-family: 'douyuFont';
  387. background: var(--image-no-choice) no-repeat;
  388. background-size: 100% 100%;
  389. cursor: pointer;
  390. .text {
  391. width: 80%;
  392. position: absolute;
  393. left: 50%;
  394. top: 28px;
  395. font-size: 14px;
  396. color: var(--vent-table-action-link);
  397. text-align: center;
  398. transform: translate(-50%, 0);
  399. }
  400. .warn {
  401. width: 100%;
  402. position: absolute;
  403. left: 50%;
  404. bottom: 11px;
  405. font-size: 12px;
  406. color: #fff;
  407. text-align: center;
  408. transform: translate(-50%, 0);
  409. }
  410. }
  411. .btn1 {
  412. position: relative;
  413. width: 100%;
  414. height: 24%;
  415. margin-bottom: 6%;
  416. font-family: 'douyuFont';
  417. background: var(--image-choice) no-repeat;
  418. background-size: 100% 100%;
  419. cursor: pointer;
  420. .text {
  421. width: 80%;
  422. position: absolute;
  423. left: 50%;
  424. top: 28px;
  425. font-size: 14px;
  426. color: var(--vent-table-action-link);
  427. text-align: center;
  428. transform: translate(-62%, 0);
  429. }
  430. .warn {
  431. width: 100%;
  432. position: absolute;
  433. left: 50%;
  434. bottom: 11px;
  435. font-size: 14px;
  436. color: #fff;
  437. text-align: center;
  438. transform: translate(-60%, 0);
  439. }
  440. }
  441. }
  442. }
  443. .dust-content {
  444. display: flex;
  445. justify-content: space-between;
  446. height: 100%;
  447. width: 85%;
  448. padding: 10px 0px;
  449. box-sizing: border-box;
  450. .content-left {
  451. width: 280px;
  452. height: 100%;
  453. display: flex;
  454. flex-direction: column;
  455. // justify-content: space-around;
  456. align-items: flex-start;
  457. overflow-y: auto;
  458. overflow-x: hidden;
  459. .content-left-item {
  460. position: relative;
  461. width: 272px;
  462. height: 173px;
  463. flex-shrink: 0;
  464. background: var(--image-dust-choice) no-repeat center;
  465. background-size: 100% 100%;
  466. margin: 5px 0px;
  467. .content-title {
  468. width: 85%;
  469. position: absolute;
  470. top: 2px;
  471. left: 50%;
  472. transform: translate(-55%, 0);
  473. font-size: 14px;
  474. color: #fff;
  475. text-align: center;
  476. }
  477. .content-items {
  478. position: absolute;
  479. left: 50%;
  480. transform: translate(-54%, 0);
  481. display: flex;
  482. justify-content: space-between;
  483. align-items: center;
  484. width: 240px;
  485. height: 26px;
  486. color: #fff;
  487. font-size: 14px;
  488. padding: 0px 5px;
  489. box-sizing: border-box;
  490. background: var(--image-dust-content) no-repeat center;
  491. background-size: 100% 100%;
  492. &:nth-child(2) {
  493. top: 32px;
  494. }
  495. &:nth-child(3) {
  496. top: 67px;
  497. }
  498. &:nth-child(4) {
  499. top: 102px;
  500. }
  501. &:nth-child(5) {
  502. top: 136px;
  503. }
  504. }
  505. }
  506. .content-left-item1 {
  507. position: relative;
  508. width: 250px;
  509. height: 173px;
  510. flex-shrink: 0;
  511. background: var(--image-dust-choice1) no-repeat center;
  512. background-size: 100% 100%;
  513. margin: 5px 0px;
  514. .content-title {
  515. width: 85%;
  516. position: absolute;
  517. top: 2px;
  518. left: 50%;
  519. transform: translate(-50%, 0);
  520. font-size: 14px;
  521. color: #fff;
  522. text-align: center;
  523. }
  524. .content-items {
  525. position: absolute;
  526. left: 50%;
  527. transform: translate(-54%, 0);
  528. display: flex;
  529. justify-content: space-between;
  530. align-items: center;
  531. width: 215px;
  532. height: 26px;
  533. color: #fff;
  534. font-size: 14px;
  535. padding: 0px 5px;
  536. box-sizing: border-box;
  537. background: var(--image-dust-content) no-repeat center;
  538. background-size: 100% 100%;
  539. &:nth-child(2) {
  540. top: 32px;
  541. }
  542. &:nth-child(3) {
  543. top: 67px;
  544. }
  545. &:nth-child(4) {
  546. top: 102px;
  547. }
  548. &:nth-child(5) {
  549. top: 136px;
  550. }
  551. }
  552. }
  553. }
  554. .content-right {
  555. width: calc(100% - 280px);
  556. height: 100%;
  557. .title-t {
  558. height: 30px;
  559. margin-bottom: 10px;
  560. display: flex;
  561. justify-content: space-between;
  562. align-items: center;
  563. .text-t {
  564. font-family: 'douyuFont';
  565. font-size: 14px;
  566. color: #fff;
  567. }
  568. }
  569. .echart-boxd {
  570. width: 100%;
  571. height: calc(100% - 40px);
  572. }
  573. }
  574. .content-right1 {
  575. width: 100%;
  576. height: 100%;
  577. .title-t {
  578. height: 30px;
  579. margin-bottom: 10px;
  580. display: flex;
  581. justify-content: space-between;
  582. align-items: center;
  583. .text-t {
  584. font-family: 'douyuFont';
  585. font-size: 14px;
  586. color: #fff;
  587. }
  588. }
  589. .echart-boxd {
  590. width: 100%;
  591. height: calc(100% - 40px);
  592. }
  593. }
  594. }
  595. }
  596. .bot-dust {
  597. height: calc(50% - 15px);
  598. background: var(--image-border) no-repeat center;
  599. background-size: 100% 100%;
  600. padding: 10px;
  601. box-sizing: border-box;
  602. .bot-area {
  603. height: 100%;
  604. padding: 10px;
  605. background: var(--image-bj1) no-repeat center;
  606. background-size: 100% 100%;
  607. box-sizing: border-box;
  608. }
  609. }
  610. }
  611. </style>