testVue.vue 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837
  1. <template>
  2. <div class="dd_class_div3">
  3. <div class="dialog-body">
  4. <div class="title">
  5. <span class="title_first">【{{ sceneName }}专项】</span>
  6. <span class="secod_first">风险评估列表</span>
  7. </div>
  8. <div class="search-box">
  9. <div class="select-row">
  10. <div class="select-item">区域:</div>
  11. <div
  12. v-for="(item, index) in areaList"
  13. :key="item.value"
  14. :class="[
  15. 'select-box',
  16. item.isSelected ? 'select-box-active' : '',
  17. ]"
  18. @click="selectArea(index)"
  19. >
  20. {{ item.label }}
  21. </div>
  22. </div>
  23. <div class="select-row">
  24. <div class="select-item">等级:</div>
  25. <div
  26. v-for="(item, index) in lvList"
  27. :key="item.value"
  28. :class="[
  29. 'select-box',
  30. item.isSelected ? 'select-box-active' : '',
  31. ]"
  32. @click="selectLv(index)"
  33. >
  34. {{ item.label }}
  35. </div>
  36. </div>
  37. <div style="display: flex">
  38. <div class="select-row">
  39. <div class="select-item">是否高发:</div>
  40. <div>
  41. <el-checkbox-group v-model="checkListIsOften" size="medium" @change="getData()">
  42. <el-checkbox label="是" size="medium" />
  43. <el-checkbox label="否" size="medium" />
  44. </el-checkbox-group>
  45. </div>
  46. </div>
  47. </div>
  48. <div v-if="typeShow" class="select-row" style="margin-bottom: 0">
  49. <div class="select-item">类型:</div>
  50. <div
  51. v-for="(item, index) in typeList"
  52. :key="item.value"
  53. :class="[
  54. 'select-box',
  55. item.isSelected ? 'select-box-active' : '',
  56. ]"
  57. @click="selectType(index)"
  58. >
  59. {{ item.label }}
  60. </div>
  61. </div>
  62. </div>
  63. <div class="dialog-table-header">
  64. <el-row>
  65. <el-col :span="2">等级</el-col>
  66. <el-col :span="6">风险概述</el-col>
  67. <el-col :span="2">所属区域</el-col>
  68. <el-col :span="4">责任单位</el-col>
  69. <el-col :span="3">评估单位</el-col>
  70. <el-col :span="3">评估时间</el-col>
  71. <!-- <el-col :span="4">处置状态</el-col>-->
  72. <!-- <el-col :span="6">已发生时长</el-col>-->
  73. <el-col :span="4">详情</el-col>
  74. </el-row>
  75. </div>
  76. <div style="height: 1100px;overflow: scroll;">
  77. <div v-for="(item,index) in infoDataList" class="dialog-table-body">
  78. <el-row>
  79. <el-col :span="2">
  80. <div class="row-center">
  81. <span :class="selectClassRow1(item.row1)">{{ item.row1 }}</span>
  82. </div>
  83. </el-col>
  84. <el-col :span="6">
  85. <div class="row-center" style="position: relative">
  86. <el-tooltip :content="item.row2" class="item" effect="light" placement="top">
  87. <div class="row-center-text">
  88. {{
  89. item.row2 ? item.row2.length ? item.row2.length > 20 ? (item.row2.substring(0, 20) + '...') : item.row2 : item.row2 : ''
  90. }}
  91. </div>
  92. </el-tooltip>
  93. <div v-if="item.row2_1" class="jiaobiao">{{ item.row2_1 }}</div>
  94. </div>
  95. </el-col>
  96. <el-col :span="2">
  97. <div class="area">{{ item.row3 }}</div>
  98. </el-col>
  99. <el-col :span="4">
  100. <div class="row-center">
  101. <span>{{ item.row4 }}</span>
  102. </div>
  103. </el-col>
  104. <el-col :span="3">
  105. <div class="row-center">
  106. <span>{{ item.row5 }}</span>
  107. </div>
  108. </el-col>
  109. <el-col :span="3">
  110. <div class="row-center">
  111. <span>{{ item.row6 }}</span>
  112. </div>
  113. </el-col>
  114. <el-col :span="4">
  115. <div class="row-center">
  116. <span style="color: #fecd2d" @click="showDetailDetail(item)">查看详情</span>&nbsp;&nbsp;
  117. <span style="color: #fecd2d" @click="showDetail(item)">查看处置地图</span>
  118. </div>
  119. </el-col>
  120. </el-row>
  121. </div>
  122. </div>
  123. <el-pagination
  124. :current-page.sync="currentPage"
  125. :page-size="pageSize"
  126. :total="allpage"
  127. class="pagination-class"
  128. layout="total, prev, pager, next"
  129. style=" margin-top: 20px;"
  130. @current-change="handleCurrentChange"
  131. />
  132. </div>
  133. <el-dialog
  134. v-el-drag-dialog
  135. :append-to-body="true"
  136. :close-on-click-modal="false"
  137. :close-on-press-escape="false"
  138. :lock-scroll="false"
  139. :modal="false"
  140. :visible.sync="dialogVisible2"
  141. custom-class="dialogNew"
  142. width="1920px"
  143. >
  144. </el-dialog>
  145. <detailDialogBack :dialog-visible="dialogVisibleFor" @closeVideo="closeRiskItem()">
  146. <template slot="dialogBody">
  147. <risk-detail-ranqi v-if="dialogVisibleFor && detailData.typeStr==='燃气爆炸'" ref="rqbz" />
  148. <risk-detail-neilaoyushui
  149. v-else-if="dialogVisibleFor && detailData.typeStr==='城市内涝' && detailData.childtype === '雨水'"
  150. ref="nlys"
  151. />
  152. <risk-detail-yilaodian
  153. v-else-if="dialogVisibleFor && detailData.typeStr==='城市内涝' && detailData.childtype === '易涝点'"
  154. ref="nlyl"
  155. />
  156. <risk-detail-gongshui v-else-if="dialogVisibleFor && detailData.typeStr==='供水爆管'" ref="gsbg" />
  157. <risk-detail-qiaoliang v-else-if="dialogVisibleFor && detailData.typeStr==='桥梁倒塌'" ref="qldt" />
  158. <risk-detail-daolu v-else-if="dialogVisibleFor && detailData.typeStr==='道路塌陷'" ref="dltx" />
  159. <risk-detail v-else-if="dialogVisibleFor" ref="riskDetail" />
  160. </template>
  161. </detailDialogBack>
  162. <dialogWarning :dialog-visible="dialogWarning" @closeVideo="closeItem()">
  163. <template slot="dialogBody">
  164. <div
  165. style="height:1049px;display: flex;flex-direction:column;align-items: center;justify-content: center;color: white;font-size: 80px"
  166. >
  167. <img src="@/components/my-dialog/image/warningIcon.png" style="margin-bottom: 60px">
  168. {{ errMsg }}
  169. </div>
  170. </template>
  171. </dialogWarning>
  172. </div>
  173. </template>
  174. <script>
  175. import sacleBox from '@/views/testProfile/sacleBox.vue'
  176. import pic from './pic.vue'
  177. import constant from '@/static/utils/constant'
  178. import Base from '@/views/base/base'
  179. import BaseData from '@/views/base/baseData'
  180. import dialogWarning from '@/components/my-dialog/dialogWarning.vue'
  181. import riskDetail from '@/views/life-line/monitor/points/assitsdanger/components/riskDetail.vue'
  182. import riskDetailNeilaoyushui from '@/views/life-line/monitor/points/assitsdanger/components/riskDetailNeilaoyushui.vue'
  183. import riskDetailDaolu from '@/views/life-line/monitor/points/assitsdanger/components/riskDetailDaolu.vue'
  184. import riskDetailQiaoliang from '@/views/life-line/monitor/points/assitsdanger/components/riskDetailQiaoliang.vue'
  185. import dialogFor from '@/components/my-dialog/dialogFor.vue'
  186. import riskDetailYilaodian from '@/views/life-line/monitor/points/assitsdanger/components/riskDetailYilaodian.vue'
  187. import riskDetailRanqi from '@/views/life-line/monitor/points/assitsdanger/components/riskDetailRanqi.vue'
  188. import riskDetailGongshui from '@/views/life-line/monitor/points/assitsdanger/components/riskDetailGongshui.vue'
  189. import detailDialogBack from '@/components/my-dialog/detailDialogBack.vue'
  190. export default {
  191. // name: "DraggableDialog",
  192. components: {
  193. riskDetailGongshui,
  194. riskDetailRanqi,
  195. riskDetailYilaodian,
  196. dialogFor,
  197. riskDetailQiaoliang,
  198. riskDetailDaolu,
  199. riskDetailNeilaoyushui,
  200. riskDetail,
  201. dialogWarning,
  202. pic,
  203. sacleBox,
  204. detailDialogBack
  205. },
  206. mixins: [Base, BaseData],
  207. data() {
  208. return {
  209. dc_key: ['GRADE', 'DISPOSAL_STATE', 'AREA_CODE', '燃气_FXPG_FXLX_DM', '综合管线_JHFXYH_YHLX_DM', 'NOTICE_SCENE'],
  210. sceneCode: '',
  211. sceneName: '',
  212. childtype: '',
  213. infoDataList: [],
  214. dialogVisible: true,
  215. dialogVisible2: false,
  216. dialogVisibleFor: false,
  217. typeShow: false,
  218. dialogWarning: false,
  219. errMsg: '',
  220. imageUrl: '',
  221. title: '',
  222. checkListIsOften: [], // 是否高发
  223. checkListIsOver: [], // 是否超时
  224. checkListDoState: [], // 处置状态:未启动,处置中
  225. typeList: [],
  226. lvList: [
  227. { label: '重大', value: constant.RISK_GRADE.get('重大'), isSelected: false },
  228. { label: '较大', value: constant.RISK_GRADE.get('较大'), isSelected: false },
  229. { label: '一般', value: constant.RISK_GRADE.get('一般'), isSelected: false },
  230. { label: '低', value: constant.RISK_GRADE.get('低'), isSelected: false }
  231. ],
  232. areaList: [
  233. { label: '梁溪区', value: 320213, isSelected: false },
  234. { label: '锡山区', value: 320205, isSelected: false },
  235. { label: '惠山区', value: 320206, isSelected: false },
  236. { label: '滨湖区', value: 320211, isSelected: false },
  237. { label: '新吴区', value: 320214, isSelected: false },
  238. { label: '经开区', value: 320299, isSelected: false },
  239. { label: '江阴市', value: 320281, isSelected: false },
  240. { label: '宜兴市', value: 320282, isSelected: false }
  241. ],
  242. detailData: {}
  243. }
  244. },
  245. methods: {
  246. closeRiskItem() {
  247. this.dialogVisibleFor = false
  248. },
  249. showDetail(item) {
  250. let lng = ''
  251. let lat = ''
  252. if (item.kjxx) {
  253. const json = JSON.parse(item.kjxx)
  254. if (this.$common.isValidCoordinate(json.coordinates[0], json.coordinates[1])) {
  255. lng = json.coordinates[0]
  256. lat = json.coordinates[1]
  257. }
  258. }
  259. if (!lng || !lat) {
  260. this.errMsg = '坐标数据有误'
  261. this.dialogWarning = true
  262. return
  263. }
  264. this.$router.replace({
  265. path: '/lifeLine/monitor/points/assistdanger',
  266. query: {
  267. id: item.bsm,
  268. lat: lat,
  269. lng: lng,
  270. tableName:item.table
  271. }
  272. })
  273. },
  274. showDetailDetail(item) {
  275. this.detailData = item
  276. this.detailData.typeStr = this.detailData.type ? this.dc_data.NOTICE_SCENE[this.detailData.type] ? this.dc_data.NOTICE_SCENE[this.detailData.type].label : '' : ''
  277. this.dialogVisibleFor = true
  278. if (this.detailData.typeStr === '供水爆管') {
  279. this.$nextTick(() => {
  280. this.$refs.gsbg.initData(this.detailData.bsm, this.detailData.table)
  281. })
  282. } else if (this.detailData.typeStr === '燃气爆炸') {
  283. this.$nextTick(() => {
  284. this.$refs.rqbz.initData(this.detailData.bsm, this.detailData.table)
  285. })
  286. } else if (this.detailData.typeStr === '道路塌陷') {
  287. this.$nextTick(() => {
  288. this.$refs.dltx.initData(this.detailData.bsm, this.detailData.table)
  289. })
  290. } else if (this.detailData.typeStr === '桥梁倒塌') {
  291. this.$nextTick(() => {
  292. this.$refs.qldt.initData(this.detailData.bsm, this.detailData.table)
  293. })
  294. } else if (this.detailData.typeStr === '城市内涝' && this.detailData.childtype === '雨水') {
  295. this.$nextTick(() => {
  296. this.$refs.nlys.initData(this.detailData.bsm, this.detailData.table)
  297. })
  298. } else if (this.detailData.typeStr === '城市内涝' && this.detailData.childtype === '易涝点') {
  299. this.$nextTick(() => {
  300. this.$refs.nlyl.initData(this.detailData.bsm, this.detailData.table)
  301. })
  302. } else {
  303. this.$nextTick(() => {
  304. this.$refs.riskDetail.initData(this.detailData.bsm, this.detailData.table)
  305. })
  306. }
  307. },
  308. closeItem() {
  309. this.dialogWarning = false
  310. },
  311. // ok 做一个父传子的数据
  312. // 显示风险小屏幕, sceneCode选择场景,isOver是否超时,selectGrade选择等级
  313. toGetData(sceneCode, isOver, selectGrade, childtype) {
  314. console.log('进入父传子的数据', selectGrade)
  315. this.sceneCode = sceneCode
  316. this.childtype = childtype
  317. console.log(childtype)
  318. console.log('sceneCodesceneCodesceneCode',sceneCode)
  319. if (sceneCode === '1') {
  320. this.sceneName = '内涝-' + childtype
  321. } else {
  322. this.sceneName = constant.SCENE_MAP.get(sceneCode)
  323. }
  324. this.checkListIsOften = []
  325. this.checkListIsOver = []
  326. this.checkListDoState = []
  327. this.lvList.forEach((e) => {
  328. e.isSelected = false
  329. })
  330. this.areaList.forEach((e) => {
  331. e.isSelected = false
  332. })
  333. if (isOver) {
  334. this.checkListIsOver = []
  335. this.checkListIsOver.push('是')
  336. }
  337. if (selectGrade) {
  338. if (selectGrade == constant.RISK_GRADE.get('低')) {
  339. this.lvList[3].isSelected = true
  340. } else if (selectGrade == constant.RISK_GRADE.get('一般')) {
  341. this.lvList[2].isSelected = true
  342. } else if (selectGrade == constant.RISK_GRADE.get('较大')) {
  343. this.lvList[1].isSelected = true
  344. } else if (selectGrade == constant.RISK_GRADE.get('重大')) {
  345. this.lvList[0].isSelected = true
  346. }
  347. }
  348. // 进行获取数据
  349. this.initDict(this.dc_key).then((res) => {
  350. this.infoDataList = []
  351. this.getData()
  352. this.typeList = []
  353. if (sceneCode === '0' && this.dc_data.燃气_FXPG_FXLX_DM) {
  354. this.dc_data.燃气_FXPG_FXLX_DM.forEach(item => {
  355. this.typeList.push({
  356. label: item.label,
  357. value: item.value,
  358. isSelected: false
  359. })
  360. })
  361. this.typeShow = true
  362. } else if (sceneCode === '4' && this.dc_data.综合管线_JHFXYH_YHLX_DM) {
  363. this.dc_data.综合管线_JHFXYH_YHLX_DM.forEach(item => {
  364. this.typeList.push({
  365. label: item.label,
  366. value: item.value,
  367. isSelected: false
  368. })
  369. })
  370. this.typeShow = true
  371. }
  372. })
  373. },
  374. // 获取数据
  375. getData() {
  376. const _this = this
  377. const gradeList = []
  378. _this.lvList.forEach((e) => {
  379. if (e.isSelected === true) {
  380. gradeList.push(e.value)
  381. }
  382. })
  383. const placesList = []
  384. _this.areaList.forEach((e) => {
  385. if (e.isSelected) {
  386. placesList.push(e.value)
  387. }
  388. })
  389. const typeList = []
  390. _this.typeList.forEach((e) => {
  391. if (e.isSelected) {
  392. typeList.push(e.value)
  393. }
  394. })
  395. _this.infoDataList = []
  396. _this.baseRequestZt('SecuritySuperviseController/findInfoDetailEveryPlace', {
  397. pageNum: _this.currentPage,
  398. pageSize: _this.pageSize,
  399. top_type: '1',
  400. childtype: _this.childtype,
  401. second_type: _this.sceneCode,
  402. levels: gradeList.join(','),
  403. places: placesList.join(','),
  404. disposeProgress: _this.checkListDoState.join(','),
  405. isOften: _this.checkListIsOften.join(','),
  406. isTimeout: _this.checkListIsOver.join(','),
  407. type: typeList.join(',')
  408. }).then((res) => {
  409. // const data = res.data
  410. // console.log('获取数据:res.data', res.data)
  411. if (res.data.rows) {
  412. res.data.rows.forEach(function(item) {
  413. const json = _this.getItemJson(item)
  414. _this.infoDataList.push(json)
  415. })
  416. _this.allpage = res.data.total
  417. console.log('_this.infoDataList',_this.infoDataList)
  418. }
  419. // data.forEach(function(item) {
  420. // const json = _this.getItemJson(item)
  421. // _this.infoDataList.push(json)
  422. // })
  423. }).catch((e) => {
  424. // console.log(e)
  425. })
  426. },
  427. getItemJson: function(item) {
  428. item.row1 = this.dc_map.GRADE[item.fxdj] || '-'
  429. item.row2 = item.fxms // this.$common.transDate(item.birthday, this.$constant.DATE_PATTERN.DATE_TIME_s_h)
  430. item.row2_1 = item.is_often === '是' ? '高发' : ''// this.$common.transDate(item.createdAt, this.$constant.DATE_PATTERN.DATE_TIME_s_h)
  431. item.row3 = this.dc_map.AREA_CODE[item.xzqhdm]
  432. item.row4 = item.zrdw
  433. item.row5 = item.pgdw
  434. item.row6 = item.pgsj ? this.$common.formatDate('yyyy-MM-dd', new Date(item.pgsj)) : ''
  435. return item
  436. },
  437. handleCurrentChange: function(val) {
  438. this.currentPage = val
  439. this.getData()
  440. },
  441. baseRequestZt(opUrl, postData) {
  442. return this.$channel.globeRequest('', opUrl, postData, 'project')
  443. },
  444. consoleLog() {
  445. // console.log('asnvjofqpfwvfnpnwj')
  446. },
  447. selectClassRow1(row1) {
  448. if (row1 === '重大') {
  449. return 'assistdanger'
  450. } else if (row1 === '较大') {
  451. return 'warn'
  452. } else if (row1 === '一般') {
  453. return 'success'
  454. }
  455. },
  456. selectClassRow4(row1) {
  457. if (row1 === '未启动') {
  458. return 'statusbox'
  459. } else if (row1 === '处置中') {
  460. return 'statusbox-warn'
  461. }
  462. },
  463. selectClassRow5(row1) {
  464. // console.log('row1', row1)
  465. row1 = row1 / 1
  466. // console.log('row1', row1)
  467. if (row1 <= 3) {
  468. return 'green'
  469. } else if (row1 <= 12) {
  470. return 'yellow'
  471. } else {
  472. return 'red'
  473. }
  474. },
  475. isValidCoordinate(lng, lat) {
  476. if (lat === 0 || lng === 0) {
  477. return false
  478. }
  479. // 校验纬度是否在 -90 到 90 之间
  480. if (lat < -90 || lat > 90) {
  481. return false
  482. }
  483. // 校验经度是否在 -180 到 180 之间
  484. return !(lng < -180 || lng > 180)
  485. },
  486. selectArea(index) {
  487. this.areaList[index].isSelected = !this.areaList[index].isSelected
  488. this.getData()
  489. },
  490. selectType(index) {
  491. this.typeList[index].isSelected = !this.typeList[index].isSelected
  492. this.getData()
  493. },
  494. selectLv(index) {
  495. this.lvList[index].isSelected = !this.lvList[index].isSelected
  496. this.getData()
  497. }
  498. // dialogClose() {
  499. // this.dialogVisible = false
  500. // }
  501. }
  502. }
  503. </script>
  504. <style lang="scss">
  505. .dd_class_div3 {
  506. .dialog-body {
  507. .pagination-class {
  508. display: flex;
  509. justify-content: center;
  510. align-items: center;
  511. margin-top: 20px;
  512. line-height: 30px;
  513. .el-icon-arrow-lef {
  514. font-size: 45px;
  515. }
  516. button {
  517. background-color: rgba(0, 0, 0, 0);
  518. color: white;
  519. .el-icon {
  520. font-size: 45px;
  521. }
  522. .more::before {
  523. line-height: 90px;
  524. }
  525. height: 75px !important;
  526. width: 75px !important;
  527. line-height: 75px !important;
  528. }
  529. li {
  530. font-size: 45px;
  531. background-color: rgba(0, 0, 0, 0);
  532. color: white;
  533. }
  534. .btn-next .btn-prev {
  535. height: 75px;
  536. width: 75px;
  537. //font-size: 75px;
  538. line-height: 75px;
  539. color: white;
  540. background-color: rgba(0, 0, 0, 0);
  541. }
  542. .active {
  543. color: #409EFF;
  544. font-size: 45px;
  545. height: 75px !important;
  546. width: 75px !important;
  547. line-height: 75px !important;
  548. background: #2B78FF !important;
  549. border-radius: 4px 4px 4px 4px;
  550. }
  551. .el-pagination__total {
  552. font-size: 45px;
  553. color: white;
  554. }
  555. .number {
  556. margin-left: 10px;
  557. margin-right: 10px;
  558. font-size: 45px;
  559. height: 75px !important;
  560. width: 75px !important;
  561. line-height: 75px !important;
  562. color: #DDDDDD;
  563. background: rgba(155, 188, 255, 0.27);
  564. }
  565. }
  566. .jiaobiao {
  567. background: url(./image/jiaobiao.png);
  568. width: 64px;
  569. height: 46px;
  570. font-size: 20px;
  571. text-align: center;
  572. line-height: 46px;
  573. color: #ffffff;
  574. position: absolute;
  575. top: 0;
  576. right: 0;
  577. }
  578. .time-line {
  579. width: 80px;
  580. height: 16px;
  581. background: #f47526;
  582. border-radius: 0px 0px 0px 0px;
  583. opacity: 1;
  584. }
  585. .tiem-hour {
  586. width: 400px;
  587. color: #f47526;
  588. }
  589. .timebox {
  590. width: 320px;
  591. height: 16px;
  592. background: #ffffff;
  593. border-radius: 0px 0px 0px 0px;
  594. margin-right: 20px;
  595. }
  596. .statusbox {
  597. width: 240px;
  598. height: 100px;
  599. background: rgba(255, 78, 54, 0.3);
  600. border-radius: 50px 50px 50px 50px;
  601. opacity: 1;
  602. line-height: 100px;
  603. color: #ff4e36;
  604. border: 2px solid rgba(255, 78, 54, 0.5);
  605. }
  606. .statusbox-warn {
  607. width: 240px;
  608. height: 100px;
  609. line-height: 100px;
  610. background: rgba(255, 147, 54, 0.3);
  611. border-radius: 50px 50px 50px 50px;
  612. opacity: 1;
  613. border: 2px solid rgba(255, 147, 54, 0.5);
  614. color: #ff9336;
  615. }
  616. .row-center {
  617. width: 100%;
  618. height: 150px;
  619. display: flex;
  620. align-items: center;
  621. justify-content: center;
  622. }
  623. .success {
  624. color: #29bb38;
  625. font-size: 48px;
  626. line-height: 150px;
  627. }
  628. .warn {
  629. color: #ff9900;
  630. font-size: 48px;
  631. line-height: 150px;
  632. }
  633. .danger {
  634. color: #fb565e;
  635. font-size: 48px;
  636. line-height: 150px;
  637. }
  638. .area {
  639. height: 150px;
  640. line-height: 150px;
  641. }
  642. .title {
  643. text-align: center;
  644. font-size: 60px;
  645. margin-top: 50px;
  646. .title_first {
  647. color: #fec12d;
  648. }
  649. .secod_first {
  650. color: white;
  651. }
  652. }
  653. .search-box {
  654. background: rgba(16, 57, 143, 0.5);
  655. width: 3600px;
  656. display: block;
  657. margin: 0 auto;
  658. margin-top: 60px;
  659. padding: 60px;
  660. }
  661. .select-row {
  662. display: flex;
  663. margin-bottom: 40px;
  664. }
  665. .select-item {
  666. height: 82px;
  667. line-height: 82px;
  668. font-size: 52px;
  669. color: #cccccc;
  670. }
  671. .dialog-table-header {
  672. font-size: 52px;
  673. font-weight: 400;
  674. color: #ffffff;
  675. width: 3600px;
  676. display: block;
  677. margin: 0 auto;
  678. margin-top: 40px;
  679. text-align: center;
  680. }
  681. .dialog-table-body {
  682. font-size: 52px;
  683. font-weight: 400;
  684. color: #ffffff;
  685. width: 3600px;
  686. height: 150px;
  687. display: block;
  688. margin: 0 auto;
  689. margin-top: 40px;
  690. background: rgba(20, 61, 147, 0.4);
  691. text-align: center;
  692. }
  693. .select-box {
  694. padding: 0 52px;
  695. height: 82px;
  696. margin: 0 40px;
  697. font-weight: 300;
  698. line-height: 82px;
  699. font-size: 44px;
  700. text-align: center;
  701. border-radius: 4px 4px 4px 4px;
  702. background: rgba(255, 255, 255, 0.24);
  703. color: white;
  704. }
  705. .select-box-active {
  706. background: rgba(0, 242, 255, 0.24);
  707. color: #00f2ff;
  708. }
  709. .el-checkbox {
  710. margin: 0 30px;
  711. display: flex;
  712. align-items: center;
  713. }
  714. .el-checkbox-group {
  715. display: flex;
  716. }
  717. .el-checkbox__inner {
  718. display: inline-block;
  719. zoom: 3.7;
  720. background: rgba(0, 0, 0, 0);
  721. }
  722. .el-checkbox__label {
  723. font-weight: 600;
  724. color: #ffffff;
  725. font-size: 48px;
  726. height: 82px;
  727. line-height: 82px;
  728. }
  729. }
  730. }
  731. .el-dialog__body {
  732. padding: 0 !important;
  733. }
  734. .dd_class_div3 {
  735. width: 100%;
  736. height: 2120px;
  737. overflow: hidden;
  738. position: relative;
  739. }
  740. .el-dialog {
  741. pointer-events: auto;
  742. }
  743. .row-center-text {
  744. width: 100%;
  745. max-height: 60px;
  746. overflow: hidden;
  747. /* 三行显示省略号 */
  748. display: -webkit-box;
  749. -webkit-box-orient: vertical;
  750. -webkit-line-clamp: 2;
  751. }
  752. .dialogNew {
  753. height: 2160px !important;
  754. // background: #16213c;
  755. background: url("./image/dialogBg.jpg") no-repeat !important;
  756. background-size: 100% !important;
  757. }
  758. </style>
  759. <style lang="scss" scoped>
  760. /deep/ .el-dialog__header {
  761. height: 75px;
  762. width: 100%;
  763. position: absolute;
  764. }
  765. //这段样式务必加上,不然其他按钮无法点击
  766. .el-dialog__wrapper {
  767. pointer-events: none !important;
  768. .el-dialog {
  769. pointer-events: auto;
  770. margin: auto;
  771. top: calc(50% - 540px);
  772. margin-top: 0 !important;
  773. }
  774. }
  775. </style>