index.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704
  1. <template>
  2. <div class="scene-box" v-if="routerParam !== 'home'">
  3. <!-- <div class="scene-box"> -->
  4. <div class="device-header">智能通风管控系统</div>
  5. <div class="select-node" :class="{ 'node-select-show': !treeShow, 'node-select-hide': treeShow, }">
  6. <SvgIcon class="is-expansion-icon put-away-icon" size="38" name="expansion" @click="showTree(true)" />
  7. <span class="title">{{ treeNodeTitle }}</span>
  8. </div>
  9. <div class="device-select" :class="{ 'device-select-show': treeShow, 'device-select-hide': !treeShow, }">
  10. <SvgIcon class="is-expansion-icon expansion-icon" size="28" name="put-away" @click="showTree(false)" />
  11. <div class="device-select-box">
  12. <a-tree :show-line="true" :tree-data="treeData" v-model:selectedKeys="selectedKeys"
  13. v-model:expandedKeys="expandedKeys" @select="onSelect">
  14. </a-tree>
  15. </div>
  16. </div>
  17. <div class="bottom-tabs-box" @mousedown="setDivHeight" id="monitorBox">
  18. <div class="to-small" @click="toHome"></div>
  19. <div class="device-button-group" v-if="deviceList.length > 0">
  20. <div class="device-button" :class="{ 'device-active': deviceActive == device.deviceType }"
  21. v-for="(device, index) in deviceList" :key="index" @click="monitorChange(index)">{{ device.deviceName }}</div>
  22. <div class="enter-detail" @click="goDetail()">
  23. <send-outlined />
  24. {{ treeNodeTitle }}详情
  25. </div>
  26. </div>
  27. <a-tabs class="tabs-box" v-model:activeKey="activeKey" @change="tabChange">
  28. <a-tab-pane key="1" tab="实时监测">
  29. <template v-if="deviceType == 'fan' && activeKey == '1'">
  30. <GroupMonitorTable :dataSource="dataSource" :columnsType="`${deviceType}_monitor`" />
  31. </template>
  32. <template v-else-if="activeKey == '1'">
  33. <MonitorTable ref="monitorTable" :columnsType="`${deviceType}_monitor`" :dataSource="dataSource"
  34. design-scope="device_monitor" :isShowPagination="false" :isShowActionColumn="true" title="设备监测">
  35. <template #action="{ record }">
  36. <TableAction :actions="[
  37. {
  38. label: '详情',
  39. onClick: goDetail.bind(null, record),
  40. },
  41. {
  42. label: '定位',
  43. onClick: goLocation.bind(null, record),
  44. },
  45. ]" />
  46. </template>
  47. </MonitorTable>
  48. </template>
  49. </a-tab-pane>
  50. <a-tab-pane key="2" tab="历史数据">
  51. <div class="tab-item">
  52. <HistoryTable ref="historyTable" v-if="activeKey == '2'" :sysId="systemID" :columns-type="`${deviceType}`"
  53. :device-type="deviceType"
  54. :device-list-api="getDeviceList.bind(null, { strtype: deviceType, sysId: systemID })"
  55. designScope="device-history" />
  56. </div>
  57. </a-tab-pane>
  58. <a-tab-pane key="3" tab="报警历史">
  59. <div class="tab-item">
  60. <AlarmHistoryTable ref="alarmHistoryTable" v-if="activeKey == '3'" :sysId="systemID" columns-type="alarm"
  61. :device-type="deviceType"
  62. :device-list-api="getDeviceList.bind(null, { strtype: deviceType, sysId: systemID })"
  63. designScope="alarm-history" />
  64. </div>
  65. </a-tab-pane>
  66. <a-tab-pane key="4" tab="操作历史">
  67. <div class="tab-item">
  68. <HandlerHistoryTable ref="handlerHistoryTable" v-if="activeKey == '4'" :sysId="systemID"
  69. columns-type="operatorhistory" :device-type="deviceType"
  70. :device-list-api="getDeviceList.bind(null, { strtype: deviceType, sysId: systemID })"
  71. designScope="operator-history" />
  72. </div>
  73. </a-tab-pane>
  74. </a-tabs>
  75. </div>
  76. <component v-if="modalVisible" :is="currentModal" v-model:visible="modalVisible" :dataSource="dataSource"
  77. :activeID="activeID" />
  78. </div>
  79. </template>
  80. <script setup lang="ts">
  81. import { ref, onMounted, onUnmounted, ComponentOptions, shallowRef, nextTick } from 'vue'
  82. import { SendOutlined } from '@ant-design/icons-vue';
  83. import { list, getDeviceList, getDeviceTypeList } from './device.api'
  84. import AlarmHistoryTable from '../comment/AlarmHistoryTable.vue';
  85. import HistoryTable from '../comment/HistoryTable.vue';
  86. import HandlerHistoryTable from '../comment/HandlerHistoryTable.vue';
  87. import MonitorTable from '../comment/MonitorTable.vue';
  88. import GroupMonitorTable from '../comment/GroupMonitorTable.vue';
  89. import { TreeProps, message } from 'ant-design-vue';
  90. import { TableAction } from '/@/components/Table';
  91. import FiberModal from './modal/fiber.modal.vue';
  92. import DustModal from './modal/dust.modal.vue'
  93. import { SvgIcon } from '/@/components/Icon';
  94. import { getActions } from '/@/qiankun/state';
  95. import { useRouter } from 'vue-router';
  96. type DeviceType = { deviceType: string, deviceName: string, datalist: any[] };
  97. const router = useRouter()
  98. const actions = getActions();
  99. actions.setGlobalState({ pageObj: { pageType: 'home' } });
  100. const monitorTable = ref()
  101. const historyTable = ref()
  102. const alarmHistoryTable = ref()
  103. const handlerHistoryTable = ref()
  104. const routerParam = ref('home') // 默认进来时首页
  105. // 模态框
  106. const currentModal = shallowRef<Nullable<ComponentOptions>>(null); //模态框
  107. const modalVisible = ref<Boolean>(false); // 模态框是否可见
  108. //
  109. const drawerHeight = ref(240) // 监测框最小高度
  110. const treeShow = ref(true) //是否显示树形菜单
  111. const treeNodeTitle = ref('') // 选中的树形标题
  112. const deviceList = ref<DeviceType[]>([])
  113. const deviceActive = ref('')
  114. const activeKey = ref('1'); // tab key
  115. const dataSource = shallowRef([]) // 实时监测数据
  116. const activeID = ref('') // 打开详情modal时监测的设备id
  117. const deviceType = ref('') // 监测设备类型
  118. const systemType = ref('')
  119. const systemID = ref('') // 系统监测时,系统id
  120. const selectedKeys = ref<string[]>([]);
  121. const expandedKeys = ref<string[]>([]);
  122. const scroll = ref({
  123. y: drawerHeight.value - 100
  124. })
  125. const treeData = ref<TreeProps['treeData']>([]);
  126. //树形菜单选择事件
  127. const onSelect: TreeProps['onSelect'] = (keys, e) => {
  128. deviceType.value = ''
  129. systemID.value = ''
  130. deviceList.value = []
  131. if (e.node.parent && (e.node.parent.node.type.toString()).startsWith('sys')) {
  132. systemType.value = e.node.parent.node.type
  133. deviceType.value = e.node.parent.node.type
  134. systemID.value = e.node.type
  135. // 传递工作面id信息,用于定位
  136. actions.setGlobalState({ locationObj: { pageType: deviceType.value, deviceid: systemID.value }, pageObj: null });
  137. } else {
  138. systemType.value = e.node.type
  139. deviceType.value = e.node.type
  140. }
  141. selectedKeys.values = keys
  142. treeNodeTitle.value = e.node.title
  143. debugger
  144. if(timer) clearTimeout(timer)
  145. timer = undefined
  146. if (monitorTable.value) monitorTable.value.setLoading(true)
  147. nextTick(() => {
  148. timer = null
  149. getMonitor()
  150. })
  151. };
  152. function tabChange(activeKeyVal) {
  153. activeKey.value = activeKeyVal;
  154. };
  155. function showTree(flag) {
  156. treeShow.value = flag
  157. }
  158. async function getDeviceType() {
  159. const result = await getDeviceTypeList({})
  160. if (result.length > 0) {
  161. const dataSource = <TreeProps['treeData']>[]
  162. let key = '0'
  163. const getData = (resultList, dataSourceList, keyVal) => {
  164. resultList.forEach((item, index) => {
  165. if (item.children && item.children.length > 0) {
  166. const children = getData(item.children, [], `${keyVal}-${index}`)
  167. dataSourceList.push({
  168. children: children,
  169. title: item.itemText,
  170. key: `${keyVal}-${index}`,
  171. type: item.itemValue,
  172. });
  173. } else {
  174. dataSourceList.push({
  175. children: [],
  176. title: item.itemText,
  177. key: `${keyVal}-${index}`,
  178. type: item.itemValue,
  179. });
  180. }
  181. });
  182. return dataSourceList
  183. }
  184. console.log('树形菜单-------------->', treeData.value)
  185. treeData.value = getData(result, dataSource, key)
  186. }
  187. }
  188. // https获取监测数据
  189. let timer: null | NodeJS.Timeout = undefined;
  190. function getMonitor() {
  191. if (timer) timer = null
  192. if (Object.prototype.toString.call(timer) === '[object Null]' && deviceType.value) {
  193. timer = setTimeout(async () => {
  194. await getDataSource()
  195. if (timer) {
  196. getMonitor();
  197. }
  198. }, 1000);
  199. }
  200. };
  201. async function getDataSource() {
  202. if (deviceType.value.startsWith('sys') && systemID.value) {
  203. const res = await list({ devicetype: 'sys', systemID: systemID.value });
  204. const result = res.msgTxt;
  205. const deviceArr = <DeviceType[]>[]
  206. result.forEach(item => {
  207. const data = item['datalist'].filter((data: any) => {
  208. const readData = data.readData;
  209. return Object.assign(data, readData);
  210. })
  211. if (item.type != 'sys') {
  212. deviceArr.unshift({ deviceType: item.type, deviceName: item['typeName'] ? item['typeName'] : item['datalist'][0]['typeName'], datalist: data })
  213. }
  214. })
  215. console.log('关联设备列表', deviceArr)
  216. deviceList.value = deviceArr
  217. deviceActive.value = deviceArr[1].deviceType
  218. monitorChange(1)
  219. } else {
  220. const res = await list({ devicetype: deviceType.value, pagetype: 'normal' })
  221. if (res.msgTxt[0]) {
  222. dataSource.value = res.msgTxt[0].datalist || [];
  223. dataSource.value.filter((data: any) => {
  224. const readData = data.readData;
  225. return Object.assign(data, readData);
  226. });
  227. }
  228. }
  229. }
  230. function setDivHeight(e: MouseEvent) {
  231. const divObject = document.getElementById('monitorBox') as HTMLElement
  232. const divHeight = divObject.offsetHeight
  233. drawerHeight.value = divHeight
  234. const startY = e.clientY
  235. document.onmousemove = function (res) {
  236. res.preventDefault()
  237. const distY = Math.abs(res.clientY - startY)
  238. if (res.clientY > startY) {
  239. if (divHeight - distY >= 240) {
  240. drawerHeight.value = divHeight - distY
  241. } else {
  242. drawerHeight.value = 240
  243. }
  244. }
  245. if (res.clientY < startY) {
  246. drawerHeight.value = divHeight + distY
  247. }
  248. divObject.style.height = drawerHeight.value + 'px'
  249. }
  250. document.onmouseup = function () {
  251. document.onmousemove = null
  252. if (scroll.value.y != drawerHeight.value - 100) {
  253. scroll.value = { y: drawerHeight.value - 100 }
  254. // const tableBody = document.getElementsByClassName('zxm-table-container')[0].children[1] as HTMLElement
  255. // debugger
  256. // tableBody.style.height = `${drawerHeight.value - 350}px`
  257. }
  258. }
  259. }
  260. function goLocation(record) {
  261. actions.setGlobalState({ locationId: record.deviceID, locationObj: null, pageObj: null });
  262. }
  263. function goDetail(record?) {
  264. if (record) {
  265. if (deviceType.value.startsWith('fiber')) {
  266. activeID.value = record.deviceID
  267. currentModal.value = FiberModal
  268. modalVisible.value = true;
  269. } else if (deviceType.value.startsWith('dusting')) {
  270. activeID.value = record.deviceID
  271. currentModal.value = DustModal
  272. modalVisible.value = true;
  273. } else if (deviceType.value.indexOf("gate") != -1) {
  274. const newPage = router.resolve({ path: '/monitorChannel/monitor-gate' })
  275. window.open(newPage.href, '_blank')
  276. } else if (deviceType.value.indexOf("window") != -1) {
  277. const newPage = router.resolve({ path: '/monitorChannel/monitor-window' })
  278. window.open(newPage.href, '_blank')
  279. } else if (deviceType.value.indexOf("windrect") != -1) {
  280. const newPage = router.resolve({ path: '/monitorChannel/monitor-windrect' })
  281. window.open(newPage.href, '_blank')
  282. } else if (deviceType.value.indexOf("fanmain") != -1) {
  283. const newPage = router.resolve({ path: '/monitorChannel/monitor-fan-main' })
  284. window.open(newPage.href, '_blank')
  285. } else if (deviceType.value.indexOf("fanlocal") != -1) {
  286. const newPage = router.resolve({ path: '/monitorChannel/monitor-fan-local' })
  287. window.open(newPage.href, '_blank')
  288. } else {
  289. message.info('待开发。。。')
  290. }
  291. } else {
  292. if (systemType.value.indexOf("sys_dongshi") != -1) {
  293. const newPage = router.resolve({ path: '/chamber-home', query: { id: systemID.value } })
  294. window.open(newPage.href, '_blank')
  295. } else {
  296. message.info('待开发。。。')
  297. }
  298. }
  299. }
  300. function toHome() {
  301. deviceList.value = []
  302. if(timer) clearTimeout(timer)
  303. timer = undefined
  304. actions.setGlobalState({ pageObj: { pageType: 'home' } });
  305. }
  306. async function findTreeDataValue(data: [], obj) {
  307. const findDeviceType = (data: [], obj) => {
  308. let type = ''
  309. if (obj.deviceid) {
  310. type = obj.deviceid
  311. } else {
  312. type = obj.deviceType
  313. }
  314. data.find((item: any) => {
  315. if (item.children.length > 0) {
  316. findDeviceType(item.children, obj)
  317. }
  318. if (item.type == type) {
  319. deviceType.value = obj.deviceid ? 'sys' : item.type
  320. if (obj.deviceid) systemID.value = obj.deviceid
  321. selectedKeys.value = [item.key]
  322. expandedKeys.value = [item.key]
  323. treeNodeTitle.value = item.title
  324. }
  325. })
  326. }
  327. findDeviceType(data, obj)
  328. debugger
  329. if (timer === undefined) {
  330. timer = null
  331. await getDataSource()
  332. getMonitor()
  333. }
  334. }
  335. function monitorChange(index) {
  336. dataSource.value = []
  337. deviceActive.value = deviceType.value = deviceList.value[index].deviceType
  338. if (activeKey.value == '1' && monitorTable.value) {
  339. monitorTable.value.setLoading(true)
  340. dataSource.value = deviceList.value[index].datalist
  341. }
  342. if (activeKey.value == '2' && historyTable.value) {
  343. historyTable.value.setLoading(true)
  344. }
  345. if (activeKey.value == '3' && alarmHistoryTable.value) {
  346. alarmHistoryTable.value.setLoading(true)
  347. }
  348. if (activeKey.value == '4' && handlerHistoryTable.value) {
  349. handlerHistoryTable.value.setLoading(true)
  350. }
  351. }
  352. onMounted(async () => {
  353. actions.onGlobalStateChange((newState, prev) => {
  354. for (const key in newState) {
  355. if (key === 'pageObj') {
  356. const pageObj = newState[key]
  357. if (pageObj) {
  358. routerParam.value = pageObj.pageType
  359. if(routerParam.value !== 'home'){
  360. if (pageObj.deviceid) {
  361. findTreeDataValue(treeData.value, { deviceid: pageObj.deviceid })
  362. } else {
  363. findTreeDataValue(treeData.value, { deviceType: pageObj.pageType })
  364. }
  365. }
  366. }
  367. }
  368. }
  369. })
  370. await getDeviceType()
  371. // getMonitor()
  372. })
  373. onUnmounted(() => {
  374. if (timer) {
  375. clearTimeout(timer);
  376. }
  377. timer = undefined;
  378. })
  379. </script>
  380. <style lang="less" scoped >
  381. @import '/@/design/vent/modal.less';
  382. @ventSpace: zxm;
  383. .device-header {
  384. position: fixed;
  385. width: 100%;
  386. height: 56px;
  387. background: url('/@/assets/images/vent/home/modal-top.png');
  388. text-align: center;
  389. line-height: 56px;
  390. font-size: 28px;
  391. color: #ffffffdd;
  392. font-weight: 600;
  393. z-index: -1;
  394. }
  395. .select-node {
  396. position: fixed;
  397. top: 60px;
  398. left: 10px;
  399. color: #fff;
  400. display: flex;
  401. justify-content: center;
  402. font-size: 24px;
  403. .title {
  404. margin-left: 10px;
  405. }
  406. }
  407. .device-select {
  408. width: 250px;
  409. height: 500px;
  410. background: url('/@/assets/images/vent/home/tree-bg.png') no-repeat;
  411. position: fixed;
  412. top: 60px;
  413. left: 10px;
  414. background-size: contain;
  415. pointer-events: auto;
  416. padding: 20px 10px 30px 10px;
  417. .expansion-icon {
  418. position: absolute;
  419. left: 190px;
  420. top: 25px;
  421. }
  422. }
  423. .is-expansion-icon {
  424. background: url('/@/assets/images/vent/home/tree-icon-bg.png') no-repeat;
  425. background-size: contain;
  426. padding: 5px;
  427. pointer-events: auto;
  428. z-index: 999;
  429. &:hover {
  430. background: url('/@/assets/images/vent/home/tree-icon-hover-bg.png') no-repeat;
  431. background-size: contain;
  432. }
  433. }
  434. .put-away-icon {
  435. display: inline-block;
  436. }
  437. .device-select-show {
  438. left: 10px;
  439. animation-name: treeShow;
  440. /* 持续时间 */
  441. animation-duration: 1s;
  442. transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1) .5s;
  443. }
  444. .device-select-hide {
  445. left: -250px;
  446. animation-name: treeHide;
  447. /* 持续时间 */
  448. animation-duration: 1s;
  449. transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1) .5s;
  450. }
  451. .node-select-show {
  452. left: 10px;
  453. animation-name: treeShow;
  454. /* 持续时间 */
  455. animation-duration: 1s;
  456. transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1) .5s;
  457. }
  458. .node-select-hide {
  459. left: -400px;
  460. animation-name: treeHide;
  461. /* 持续时间 */
  462. animation-duration: 1s;
  463. transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1) .5s;
  464. }
  465. .device-select-box {
  466. width: 208px;
  467. height: 450px;
  468. overflow-y: auto;
  469. color: #fff;
  470. :deep(.zxm-tree) {
  471. background: transparent !important;
  472. color: #fff !important;
  473. .zxm-tree-switcher {
  474. background: transparent !important;
  475. }
  476. .zxm-tree-node-content-wrapper.zxm-tree-node-selected {
  477. background-color: #00b1c8;
  478. }
  479. .zxm-tree-node-content-wrapper:hover {
  480. background-color: #00b1c855;
  481. }
  482. input {
  483. height: 0px !important;
  484. }
  485. }
  486. &::-webkit-scrollbar-track {
  487. -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  488. border-radius: 10px;
  489. background: #ededed22;
  490. height: 100px;
  491. }
  492. &::-webkit-scrollbar-thumb {
  493. -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  494. background: #4288A444;
  495. }
  496. }
  497. .bottom-tabs-box {
  498. position: relative;
  499. .to-small {
  500. width: 60px;
  501. height: 60px;
  502. background: url('/@/assets/images/vent/home/tosmall.png') no-repeat center;
  503. background-size: auto;
  504. position: absolute;
  505. top: -65px;
  506. right: 30px;
  507. border-radius: 10px;
  508. padding: 8px;
  509. backdrop-filter: blur(10px);
  510. background-color: rgba(0, 58, 128, 0.418);
  511. &:hover {
  512. background-color: rgba(42, 85, 138, 0.418);
  513. }
  514. }
  515. .device-button-group {
  516. position: absolute;
  517. top: -30px;
  518. left: 30px;
  519. display: flex;
  520. width: 100%;
  521. .device-button {
  522. padding: 4px 15px;
  523. position: relative;
  524. display: flex;
  525. justify-content: center;
  526. align-items: center;
  527. font-size: 14px;
  528. color: #fff;
  529. cursor: pointer;
  530. margin: 0 3px;
  531. &::before {
  532. content: '';
  533. position: absolute;
  534. top: 0;
  535. right: 0;
  536. bottom: 0;
  537. left: 0;
  538. border: 1px solid #6176AF;
  539. transform: skewX(-38deg);
  540. background-color: rgba(0, 77, 103, 85%);
  541. z-index: -1;
  542. }
  543. }
  544. .device-active {
  545. // color: #0efcff;
  546. &::before {
  547. border-color: #0efcff;
  548. box-shadow: 1px 1px 3px 1px #0efcff inset;
  549. }
  550. }
  551. }
  552. .enter-detail {
  553. color: #fff;
  554. cursor: pointer;
  555. position: absolute;
  556. right: 120px;
  557. top: -10px;
  558. padding: 5px;
  559. // border: 1px transparent solid;
  560. border-radius: 5px;
  561. margin-left: 8px;
  562. margin-right: 8px;
  563. width: auto;
  564. // height: 40px;
  565. // border: 1px solid #65dbea;
  566. height: 33px !important;
  567. display: flex;
  568. align-items: center;
  569. justify-content: center;
  570. color: #fff;
  571. padding: 5px 15px 5px 15px;
  572. cursor: pointer;
  573. &:hover {
  574. background: linear-gradient(#2cd1ff55, #1eb0ff55);
  575. }
  576. &::before {
  577. width: calc(100% - 6px);
  578. height: 27px;
  579. content: '';
  580. position: absolute;
  581. top: 3px;
  582. right: 0;
  583. left: 3px;
  584. bottom: 0;
  585. z-index: -1;
  586. border-radius: inherit;
  587. /*important*/
  588. background: linear-gradient(#1fa6cb, #127cb5);
  589. }
  590. &::after {
  591. width: calc(100% + 32px);
  592. height: 10px;
  593. content: '';
  594. position: absolute;
  595. top: 35px;
  596. right: 0;
  597. left: -16px;
  598. bottom: 0;
  599. z-index: -1;
  600. border-radius: inherit;
  601. /*important*/
  602. background: url('/@/assets/images/vent/short-light.png') no-repeat;
  603. background-position: center;
  604. background-size: 100%;
  605. z-index: 999;
  606. }
  607. }
  608. }
  609. @keyframes treeShow {
  610. 0% {
  611. left: -400px;
  612. opacity: 0;
  613. }
  614. 100% {
  615. left: 10px;
  616. opacity: 1;
  617. }
  618. }
  619. @keyframes treeHide {
  620. 0% {
  621. left: 10px;
  622. opacity: 1;
  623. }
  624. 100% {
  625. left: -400px;
  626. opacity: 0;
  627. }
  628. }
  629. :deep(.@{ventSpace}-tabs-tabpane-active) {
  630. overflow: auto;
  631. // height: 100%;
  632. }
  633. :deep(.zxm-select-dropdown) {
  634. left: 0 !important;
  635. }</style>