autodoor.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761
  1. <template>
  2. <view style="overflow: auto; height: 100%">
  3. <!-- 建议放在外层 -->
  4. <u-navbar
  5. :title="name"
  6. @leftClick="backPage"
  7. :bgImage="backPic"
  8. :bgStatusImage="backPic0"
  9. >
  10. <view class="u-nav-slot" slot="left">
  11. <u-icon name="arrow-left" size="20"> </u-icon>
  12. </view>
  13. </u-navbar>
  14. <view class="main">
  15. <view class="u-page container">
  16. <div class="button-grid flcard" v-if="this.TabCur == 'gate'">
  17. <u-button
  18. type="primary"
  19. text="打开前门"
  20. @click="showPasswordDialog('frontGateOpen_S')"
  21. ></u-button>
  22. <u-button
  23. type="primary"
  24. text="关闭前门"
  25. @click="showPasswordDialog('frontGateClose_S')"
  26. ></u-button>
  27. <u-button
  28. type="primary"
  29. text="打开后门"
  30. @click="showPasswordDialog('rearGateOpen_S')"
  31. ></u-button>
  32. <u-button
  33. type="primary"
  34. text="关闭后门"
  35. @click="showPasswordDialog('rearGateClose_S')"
  36. ></u-button>
  37. <u-button
  38. type="primary"
  39. text="打开前后门"
  40. @click="showPasswordDialog('sameTimeOpen')"
  41. ></u-button>
  42. <u-button
  43. type="primary"
  44. text="关闭前后门"
  45. @click="showPasswordDialog('sameTimeClose')"
  46. ></u-button>
  47. </div>
  48. <div
  49. class="button-grid flcard"
  50. v-if="this.TabCur == 'window' && this.nwindownum == 1"
  51. >
  52. <u-button
  53. type="primary"
  54. text="设定面积"
  55. @click="showPasswordDialog('frontSetValue')"
  56. ></u-button>
  57. </div>
  58. <div
  59. class="button-grid flcard"
  60. v-if="this.TabCur == 'window' && this.nwindownum == 2"
  61. >
  62. <u-button
  63. type="primary"
  64. text="设定前窗面积"
  65. @click="showPasswordDialog('frontSetValue')"
  66. ></u-button>
  67. <u-button
  68. type="primary"
  69. text="设定后窗面积"
  70. @click="showPasswordDialog('rearSetValue')"
  71. ></u-button>
  72. </div>
  73. <div class="flcard" v-if="this.TabCur == 'gate'">
  74. <doorAnimate
  75. :gatestate1="frontGateStatus"
  76. :gatestate2="midGateStatus"
  77. :gatestate3="rearGateStatus"
  78. :cameralist="cameralist"
  79. :height="height"
  80. :doorcount="ndoorcount"
  81. ></doorAnimate>
  82. </div>
  83. <div class="flcard" v-if="this.TabCur == 'windrect'">
  84. <windrectAnimate
  85. :state="state"
  86. :title="title"
  87. :videoURL="viedeoUrl"
  88. :height="height"
  89. :type="deviceType"
  90. ></windrectAnimate>
  91. </div>
  92. <div class="flcard" v-if="this.TabCur == 'fanlocal'">
  93. <fanlocalAnimate
  94. :fan1State="fan1State"
  95. :fan2State="fan2State"
  96. :title="title"
  97. :videoURL="viedeoUrl"
  98. :height="height"
  99. ></fanlocalAnimate>
  100. </div>
  101. <div class="flcard" v-if="this.TabCur == 'fanmain'">
  102. <fanmainAnimate
  103. ref="fanpage"
  104. style="width: 100%"
  105. :door1="door1"
  106. :topdoor1="topdoor1"
  107. :fundoor1="fundoor1"
  108. :door2="door2"
  109. :topdoor2="topdoor2"
  110. :fundoor2="fundoor2"
  111. :nowfengji="qidongfengji"
  112. ></fanmainAnimate>
  113. </div>
  114. <div
  115. class="flcard"
  116. v-if="this.TabCur == 'window' && this.nwindownum == 1"
  117. >
  118. <windowAnimate
  119. :windowAngle="windowAngle"
  120. :height="height"
  121. :windowcount="nwindownum"
  122. ></windowAnimate>
  123. </div>
  124. <div
  125. class="flcard"
  126. v-if="this.TabCur == 'window' && this.nwindownum == 2"
  127. >
  128. <windowAnimate
  129. :windowAngle="windowAngle"
  130. :windowAngle1="windowAngle1"
  131. :height="height"
  132. :windowcount="nwindownum"
  133. ></windowAnimate>
  134. </div>
  135. <div class="flcard">
  136. <div class="flex-container">
  137. <div
  138. class="itemback"
  139. v-for="(item, index) in typeList"
  140. :key="index"
  141. v-show="item.appShow == 1"
  142. >
  143. <div
  144. class="datacardtime"
  145. v-if="item.monitorcode == 'readTime' && item.datatype == 1"
  146. >
  147. <view
  148. class="demo-layout bg-purple-light"
  149. style="padding: 20rpx; color: #3787fe"
  150. >
  151. {{ readTime }}
  152. </view>
  153. </div>
  154. <div class="datacard" v-if="item.monitorcode !== 'readTime'">
  155. <div class="left-content">
  156. <view
  157. v-if="item.monitorcode == 'ndoortype' && item.datatype == 1"
  158. class="demo-layout bg-purple-light"
  159. style="margin-top: 60rpx; color: #3787fe"
  160. >
  161. {{
  162. tableData[item.monitorcode] == "1"
  163. ? "行人"
  164. : tableData[item.monitorcode] == "2"
  165. ? "行车"
  166. : "--"
  167. }}
  168. </view>
  169. <view
  170. v-else-if="
  171. item.monitorcode == 'netStatus' && item.datatype == 1
  172. "
  173. class="demo-layout bg-purple-light"
  174. style="margin-top: 60rpx; color: #3787fe"
  175. >
  176. {{ doorNetStatus == "1" ? "正常" : "异常" }}
  177. </view>
  178. <view
  179. v-else-if="
  180. item.monitorcode == 'warnFlag' && item.datatype == 1
  181. "
  182. class="demo-layout bg-purple-light"
  183. style="margin-top: 60rpx; color: #3787fe"
  184. >
  185. {{ warnFlag == "1" ? "正常" : "异常" }}
  186. </view>
  187. <view
  188. v-else-if="item.datatype == 1"
  189. class="demo-layout bg-purple-light"
  190. style="margin-top: 60rpx; color: #3787fe"
  191. >
  192. {{
  193. tableData[item.monitorcode] == null ||
  194. tableData[item.monitorcode] == ""
  195. ? "--"
  196. : tableData[item.monitorcode]
  197. }}
  198. </view>
  199. <view
  200. v-else-if="item.datatype == 2"
  201. class="demo-layout bg-purple-light"
  202. style="margin-top: 60rpx; color: #3787fe"
  203. >
  204. {{
  205. tableData.readData[item.monitorcode] == null ||
  206. tableData.readData[item.monitorcode] == ""
  207. ? "--"
  208. : tableData.readData[item.monitorcode]
  209. }}
  210. </view>
  211. <div class="spacer"></div>
  212. <!-- 间距 -->
  213. <view
  214. class="demo-layout bg-purple-light"
  215. style="color: #677799"
  216. >
  217. {{ item.des }}
  218. </view>
  219. </div>
  220. <!-- <div
  221. class="right-content"
  222. :style="{
  223. backgroundImage:
  224. item.monitorcode === 'frontRearDP' ||
  225. item.monitorcode === 'frontRearDifference'
  226. ? 'url(\'../../../../static/model/Pa.png\')'
  227. : item.monitorcode === 'sourcePressure'
  228. ? 'url(\'../../../../static/model/MPa.png\')'
  229. : item.monitorcode === 'frontGateOpen'
  230. ? 'url(\'../../../../static/model/doorNet.png\')'
  231. : item.monitorcode === 'rearGateOpen'
  232. ? 'url(\'../../../../static/model/doorNet.png\')'
  233. : item.monitorcode === 'midGateOpen'
  234. ? 'url(\'../../../../static/model/doorNet.png\')'
  235. : item.monitorcode === 'warnFlag'
  236. ? 'url(\'../../../../static/model/9432.png\')'
  237. : item.monitorcode === 'netStatus'
  238. ? 'url(\'../../../../static/model/9431.png\')'
  239. : item.monitorcode === 'm3'
  240. ? 'url(\'../../../../static/model/windM3.png\')'
  241. : item.monitorcode === 'fsectarea'
  242. ? 'url(\'../../../../static/model/duanArea.png\')'
  243. : item.monitorcode === 'incipientWindSpeed1' ||
  244. item.monitorcode === 'incipientWindSpeed2' ||
  245. item.monitorcode === 'incipientWindSpeed3' ||
  246. item.monitorcode === 'va'
  247. ? 'url(\'../../../../static/model/fengsu.png\')'
  248. : 'url(\'\')',
  249. backgroundSize: '100% 100%',
  250. }"
  251. ></div> -->
  252. </div>
  253. </div>
  254. </div>
  255. </div>
  256. </view>
  257. </view>
  258. <u-popup :show="show" mode="bottom" :safeAreaInsetBottom="false">
  259. <div class="containers">
  260. <view class="passWordName">
  261. <view
  262. class="title"
  263. style="margin-top: 15px"
  264. v-if="this.TabCur == 'window'"
  265. >风窗面积</view
  266. >
  267. <u-input
  268. class="passArea"
  269. style="margin-top: 15px; border-color: #2a94ff"
  270. v-model="windowArea"
  271. type="text"
  272. v-if="this.TabCur == 'window'"
  273. ></u-input>
  274. </view>
  275. <view class="passWordInput">
  276. <view style="margin-top: 15px" class="title">输入密码</view>
  277. <u-input
  278. style="margin-top: 15px; border-color: #2a94ff"
  279. v-model="password"
  280. type="password"
  281. ></u-input
  282. ></view>
  283. </div>
  284. <view class="btns">
  285. <u-button
  286. style="margin: 20px"
  287. type="primary"
  288. @click="confirmPassword()"
  289. color="linear-gradient(to right, rgb(53, 138, 254), rgb(38, 171, 244))"
  290. >确认</u-button
  291. >
  292. <u-button
  293. style="margin: 20px"
  294. type="primary"
  295. :plain="true"
  296. @click="cancelPassword()"
  297. >取消</u-button
  298. >
  299. </view>
  300. </u-popup>
  301. </view>
  302. </template>
  303. <script>
  304. import api from "@/api/api";
  305. import initDictOptions from "@/common/util/dictUtil.js";
  306. import doorAnimate from "../doorAnimate/doorAnimate.vue";
  307. import windowAnimate from "../windowAnimate/windowAnimate.vue";
  308. import windrectAnimate from "../windrectAnimate/windrectAnimate.vue";
  309. import fanlocalAnimate from "../fanlocalAnimate/fanlocalAnimate2.vue";
  310. import fanmainAnimate from "../fanmainAnimate/fanmainAnimate.vue";
  311. export default {
  312. data() {
  313. return {
  314. tableData: {}, //监测数据
  315. typeList: [], //展示字段
  316. itemId: "", // 初始化 itemId
  317. name: "", // 初始化 name
  318. deviceid: "", //初始化设备id
  319. TabCur: "",
  320. checked: [],
  321. backPic0: "url(/static/topnavbar0.png)",
  322. backPic: "url(/static/topnavbar.png)",
  323. frontAngle: "", //风窗打开角度
  324. nwindownum: "", //风窗道数
  325. ndoorcount: "", //风门道数
  326. deviceType: "", //设备类型
  327. show: false, //密码弹窗是否显示
  328. password: "", //控制设备密码
  329. paramcode: "", //控制字段
  330. height: "200px",
  331. popupStyle: {
  332. // 弹窗样式
  333. "background-color": "#fff",
  334. padding: "20px",
  335. "box-shadow": "0 2px 4px rgba(0, 0, 0, 0.1)",
  336. },
  337. frontGateStatus: "", //前门状态
  338. rearGateStatus: "", //后门状态
  339. midGateStatus: "", //状态
  340. doorNetStatus: "", //风门通信状态
  341. warnFlag: "", //风门报警
  342. readTime: "", //时间
  343. windowAngle: 0, //前窗打开角度
  344. windowAngle1: 0, //后窗打开角度
  345. windowArea: "", //风窗面积设定值
  346. viedeoUrl: "", //监控url
  347. sign: "",
  348. title: "测风设备",
  349. fan1State: "",
  350. fan2State: "",
  351. deviceid: "", //ID
  352. cameralist: [], //摄像数据
  353. };
  354. },
  355. onLoad(query) {
  356. //保存id到 data 中 可以在整个页面中使用
  357. this.itemId = query.id;
  358. this.name = query.name;
  359. this.TabCur = query.type;
  360. this.ndoorcount = 2;
  361. },
  362. components: {
  363. doorAnimate,
  364. windowAnimate,
  365. windrectAnimate,
  366. fanlocalAnimate,
  367. fanmainAnimate,
  368. },
  369. created() {
  370. this.getShowList(this.TabCur);
  371. this.getDeviceInfo(this.itemId);
  372. this.getVideoUrlById(this.itemId);
  373. },
  374. mounted() {
  375. this.startTimer();
  376. },
  377. methods: {
  378. startTimer() {
  379. this.timer = setInterval(() => {
  380. // 执行定时任务
  381. this.getDeviceInfo(this.itemId);
  382. }, 5000);
  383. },
  384. stopTimer() {
  385. // 停止定时器
  386. clearInterval(this.timer);
  387. },
  388. // 返回上一个页面
  389. backPage() {
  390. this.$destroy();
  391. uni.navigateBack({
  392. delta: 1,
  393. });
  394. },
  395. //获取app展示字段数据
  396. getShowList(type) {
  397. const params = {
  398. devicekind: type,
  399. pagetype: "detail",
  400. pageNo: 1,
  401. pageSize: 100,
  402. };
  403. new Promise((resolve, reject) => {
  404. api
  405. .getShowColumList(params)
  406. .then((response) => {
  407. if (response.data.code == 200) {
  408. this.typeList = response.data.result.records;
  409. } else {
  410. resolve(response);
  411. }
  412. })
  413. .catch((error) => {
  414. reject(error);
  415. });
  416. });
  417. },
  418. //获取详情数据
  419. getDeviceInfo(ID) {
  420. let IDString = String(ID); // 将 ID 转换为字符串
  421. new Promise((resolve, reject) => {
  422. api
  423. .getDeviceMonitor({ devicetype: this.TabCur, ids: IDString })
  424. .then((response) => {
  425. if (
  426. response.data.code == 200 &&
  427. response.data.result.msgTxt[0].datalist.length > 0
  428. ) {
  429. var result = response.data.result.msgTxt[0].datalist[0];
  430. this.tableData = result;
  431. if (this.tableData.frontGateOpen == "1") {
  432. this.tableData.frontGateOpen = "打开";
  433. } else {
  434. this.tableData.frontGateOpen = "关闭";
  435. }
  436. if (this.tableData.midGateOpen == "1") {
  437. this.tableData.midGateOpen = "打开";
  438. } else {
  439. this.tableData.midGateOpen = "关闭";
  440. }
  441. if (this.tableData.rearGateOpen == "1") {
  442. this.tableData.rearGateOpen = "打开";
  443. } else {
  444. this.tableData.rearGateOpen = "关闭";
  445. }
  446. this.fan1State = result.readData.Fan1StartStatus;
  447. this.fan2State = result.readData.Fan2StartStatus;
  448. this.nwindownum = result.nwindownum;
  449. this.ndoorcount = result.ndoorcount;
  450. this.deviceType = result.deviceType;
  451. this.state = result.readData.sign;
  452. this.frontGateStatus = this.tableData.frontGateOpen;
  453. this.midGateStatus = this.tableData.midGateOpen;
  454. this.rearGateStatus = this.tableData.rearGateOpen;
  455. this.doorNetStatus = result.netStatus;
  456. this.warnFlag = result.warnLevel_str;
  457. this.readTime = result.readTime;
  458. var maxarea = result.maxarea;
  459. this.windowAngle =
  460. (this.tableData.forntArea / maxarea) * 100 * 0.9;
  461. this.windowAngle1 =
  462. (this.tableData.rearArea / maxarea) * 100 * 0.9;
  463. this.deviceid = result.deviceID;
  464. this.$forceUpdate();
  465. } else {
  466. resolve(response);
  467. }
  468. })
  469. .catch((error) => {
  470. reject(error);
  471. });
  472. });
  473. },
  474. //获取监控URL 通过ID获取
  475. getVideoUrlById(ID) {
  476. let IDString = String(ID); // 将 ID 转换为字符串
  477. new Promise((resolve, reject) => {
  478. api
  479. .getCameraById({ deviceid: IDString })
  480. .then((response) => {
  481. if (response.data.code == 200) {
  482. if (response.data.result.records.length > 0) {
  483. this.cameralist = response.data.result.records[0];
  484. }
  485. } else {
  486. resolve(response);
  487. }
  488. })
  489. .catch((error) => {
  490. reject(error);
  491. });
  492. });
  493. },
  494. //设备控制
  495. ctrlDevice(pass) {
  496. let IDString = String(this.itemId); // 将 ID 转换为字符串
  497. const params = {
  498. deviceid: IDString,
  499. devicetype: this.deviceType,
  500. paramcode: this.paramcode,
  501. password: pass,
  502. value: this.windowArea,
  503. };
  504. new Promise((resolve, reject) => {
  505. api
  506. .controlDevice(params)
  507. .then((response) => {
  508. if (response.data.code == 200) {
  509. this.getDeviceInfo(IDString);
  510. // console.log("操作成功");
  511. } else {
  512. resolve(response);
  513. }
  514. })
  515. .catch((error) => {
  516. reject(error);
  517. });
  518. });
  519. },
  520. // 显示密码输入弹窗
  521. showPasswordDialog(controlCode) {
  522. this.paramcode = controlCode;
  523. this.show = true;
  524. },
  525. // 取消密码输入
  526. cancelPassword() {
  527. this.show = false;
  528. },
  529. confirmPassword() {
  530. this.ctrlDevice(this.password);
  531. // 发起请求后关闭密码输入弹窗
  532. this.show = false;
  533. },
  534. },
  535. destroyed() {
  536. // 停止定时器
  537. this.stopTimer();
  538. },
  539. };
  540. </script>
  541. <style lang="scss" scoped>
  542. .top-nav {
  543. background-image: url(../../../../static/topnavbar.png);
  544. background-size: cover; /* 背景图片大小适应 */
  545. height: 100%;
  546. }
  547. .top-nav2 {
  548. background-color: #ffffff;
  549. }
  550. .main {
  551. margin-top: 80px;
  552. }
  553. .container {
  554. display: flex;
  555. flex-direction: column;
  556. }
  557. .button-grid {
  558. display: grid;
  559. grid-template-columns: repeat(4, 1fr);
  560. gap: 5px; /* 可以根据需要调整行列之间的间距 */
  561. }
  562. .flcard {
  563. padding: 20rpx;
  564. background-color: #ffffff;
  565. margin-bottom: 5rpx;
  566. }
  567. .additional-div {
  568. grid-column: span 2; /* 让附加内容跨越三列 */
  569. display: flex;
  570. align-items: center;
  571. }
  572. .checkbox-group {
  573. margin-left: 10px; /* 可以根据需要调整间距 */
  574. }
  575. .card {
  576. background-color: #ffffff;
  577. margin: auto;
  578. margin-top: 20rpx;
  579. width: 90%;
  580. height: 280rpx;
  581. border: 1rpx solid #000000;
  582. border-radius: 20rpx;
  583. }
  584. .flex-containe {
  585. display: flex;
  586. flex-direction: row;
  587. flex-wrap: wrap;
  588. }
  589. .itemback {
  590. flex: 0 0 calc(33.33% - 10px); /* 使用calc函数计算每个项目的宽度,减去间距 */
  591. margin: 5px; /* 间距设置为5px */
  592. }
  593. .datacardtime {
  594. display: flex;
  595. width: 100%;
  596. flex: 1;
  597. margin: 1%;
  598. float: left;
  599. height: 50px;
  600. line-height: 29px;
  601. text-align: center;
  602. background: linear-gradient(
  603. to right,
  604. rgba(55, 135, 254, 0.08),
  605. rgba(4, 184, 255, 0.08),
  606. rgba(60, 161, 237, 0.08)
  607. );
  608. }
  609. .datacard {
  610. display: flex;
  611. width: 48%;
  612. flex: 1;
  613. margin: 1%;
  614. float: left;
  615. height: 180rpx;
  616. text-align: center;
  617. background: linear-gradient(
  618. to right,
  619. rgba(55, 135, 254, 0.08),
  620. rgba(4, 184, 255, 0.08),
  621. rgba(60, 161, 237, 0.08)
  622. );
  623. }
  624. .left-content {
  625. width: 100%;
  626. display: flex;
  627. flex-direction: column;
  628. }
  629. .spacer {
  630. height: 10rpx;
  631. }
  632. .right-content {
  633. width: 50%; /* 右侧内容占据50%宽度 */
  634. background-image: url(../../../../static/model/Pa.png);
  635. background-size: 100% 125%;
  636. }
  637. /*风窗样式*/
  638. div.autowindow_new {
  639. width: 200px;
  640. height: 200px;
  641. background-image: url(../../../../static/window/window-bk.png);
  642. background-size: 100% 100%;
  643. perspective: 800px;
  644. }
  645. /*风窗1 2 3 4*/
  646. div.window_new_1 {
  647. margin-top: 12px;
  648. margin-left: 15px;
  649. width: 170px;
  650. height: 30px;
  651. background-color: crimson;
  652. box-sizing: border-box;
  653. float: left;
  654. z-index: 1;
  655. /* transition: all 2s; */
  656. background-image: url(../../../../static/window/window_new1.png);
  657. background-size: 100% 100%;
  658. }
  659. div.window_new_2 {
  660. margin-top: 2px;
  661. margin-left: 15px;
  662. width: 170px;
  663. height: 29px;
  664. background-color: crimson;
  665. box-sizing: border-box;
  666. float: left;
  667. z-index: 1;
  668. /* transition: all 2s; */
  669. background-image: url(../../../../static/window/window_new1.png);
  670. background-size: 100% 100%;
  671. }
  672. div.window_new_3 {
  673. margin-top: 2px;
  674. margin-left: 15px;
  675. width: 170px;
  676. height: 29px;
  677. background-color: crimson;
  678. box-sizing: border-box;
  679. float: left;
  680. z-index: 1;
  681. /* transition: all 2s; */
  682. background-image: url(../../../../static/window/window_new1.png);
  683. background-size: 100% 100%;
  684. }
  685. div.window_new_4 {
  686. margin-top: 2px;
  687. margin-left: 15px;
  688. width: 170px;
  689. height: 29px;
  690. background-color: crimson;
  691. box-sizing: border-box;
  692. float: left;
  693. z-index: 1;
  694. /* transition: all 2s; */
  695. background-image: url(../../../../static/window/window_new1.png);
  696. background-size: 100% 100%;
  697. }
  698. div.window_new_5 {
  699. margin-top: 2px;
  700. margin-left: 15px;
  701. width: 170px;
  702. height: 29px;
  703. background-color: crimson;
  704. box-sizing: border-box;
  705. float: left;
  706. z-index: 1;
  707. /* transition: all 2s; */
  708. background-image: url(../../../../static/window/window_new1.png);
  709. background-size: 100% 100%;
  710. }
  711. div.window_new_1 {
  712. transition: all 2s ease;
  713. transform-origin: center center;
  714. }
  715. div.window_new_2 {
  716. transition: all 2s ease;
  717. transform-origin: center center;
  718. }
  719. div.window_new_3 {
  720. transition: all 2s ease;
  721. transform-origin: center center;
  722. }
  723. div.window_new_4 {
  724. transition: all 2s ease;
  725. transform-origin: center center;
  726. }
  727. div.window_new_5 {
  728. transition: all 2s ease;
  729. transform-origin: center center;
  730. }
  731. .btns {
  732. display: flex;
  733. }
  734. .containers {
  735. background-color: #fff;
  736. }
  737. .passWordName {
  738. margin: 20px;
  739. display: flex;
  740. flex-direction: row;
  741. justify-content: space-around;
  742. }
  743. .title {
  744. margin-right: 20px;
  745. line-height: 40px;
  746. }
  747. .passWordInput {
  748. margin: 20px;
  749. display: flex;
  750. flex-direction: row;
  751. justify-content: space-around;
  752. }
  753. .passArea {
  754. border-color: red;
  755. }
  756. </style>