app.scss 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766
  1. @import '~@/uni.scss';
  2. .nav-title {
  3. width: 100%;
  4. display: flex;
  5. flex-direction: row;
  6. justify-content: center;
  7. align-items: center;
  8. text {
  9. color: white;
  10. font-size: 1rem;
  11. }
  12. }
  13. .container {
  14. padding: 0 0 10rpx;
  15. }
  16. .items-line{
  17. display: flex;
  18. flex-direction: row;
  19. justify-content: flex-start;
  20. align-items: center;
  21. }
  22. .list-item-block{
  23. width: 100%;
  24. display: flex;
  25. flex-direction: column;
  26. justify-content: flex-start;
  27. .line{
  28. display: flex;
  29. flex-direction: row;
  30. justify-content: flex-start;
  31. align-items: center;
  32. flex-wrap: wrap;
  33. .block {
  34. display: flex;
  35. flex-direction: column;
  36. align-items: center;
  37. justify-content: center;
  38. }
  39. .title{
  40. padding-left: 2px;
  41. padding-right: 5px;
  42. font-size: 0.9rem;
  43. color: black;
  44. }
  45. .text{
  46. padding-left: 2px;
  47. padding-right: 5px;
  48. font-size: 0.8rem;
  49. color: black;
  50. }
  51. .lable {
  52. font-size: 0.8rem;
  53. min-width: 50px;
  54. color: black;
  55. }
  56. .content {
  57. margin-left: 5px;
  58. font-size: 0.8rem;
  59. color: gray;
  60. }
  61. .text-ellipsis {
  62. overflow: hidden;
  63. white-space: nowrap;
  64. text-overflow: ellipsis;
  65. }
  66. .text-underline {
  67. text-decoration-line: underline;
  68. }
  69. }
  70. }
  71. .item-title-run-status-icon {
  72. /* #ifndef APP-NVUE */
  73. display: block;
  74. /* #endif */
  75. // margin-right: 10px;
  76. width: 20px;
  77. height: 20px;
  78. border-radius: 50%;
  79. }
  80. .item-title-rtu-name {
  81. margin-left: 10rpx;
  82. font-size: 0.9rem;
  83. }
  84. .item-title-warn-name-ellipsis {
  85. overflow: hidden;
  86. margin-left: 10rpx;
  87. font-size: 0.8rem;
  88. white-space: nowrap;
  89. text-overflow: ellipsis;
  90. color: coral;
  91. text-decoration-line: underline;
  92. }
  93. .item-title-rtu-code {
  94. margin-left: 10rpx;
  95. font-size: 0.8rem;
  96. color: gray;
  97. }
  98. .item-adcd-adnm-text {
  99. overflow: hidden;
  100. margin-right: 5px;
  101. font-size: 0.7rem;
  102. white-space: nowrap;
  103. text-overflow: ellipsis;
  104. }
  105. .item-up-time-text {
  106. overflow: hidden;
  107. margin-right: 5px;
  108. font-size: 0.7rem;
  109. white-space: nowrap;
  110. text-overflow: ellipsis;
  111. }
  112. .item-text-lable {
  113. font-size: 0.7rem;
  114. min-width: 50px;
  115. }
  116. .item-text-content {
  117. margin-left: 5px;
  118. font-size: 0.7rem;
  119. color: gray;
  120. }
  121. .item-text-content-phone{
  122. margin-left: 5px;
  123. font-size: 0.7rem;
  124. color: skyblue;
  125. text-decoration-line: underline;
  126. }
  127. .text-under-line{
  128. text-decoration-line: underline;
  129. }
  130. .item-text-content-ellipsis {
  131. overflow: hidden;
  132. margin-left: 5px;
  133. font-size: 0.7rem;
  134. color: gray;
  135. white-space: nowrap;
  136. text-overflow: ellipsis;
  137. }
  138. .view-btn{
  139. display: flex;
  140. flex-direction: column;
  141. justify-content: center;
  142. align-items: center;
  143. border-radius: 7px;
  144. width: 100px;
  145. height: 30px;
  146. .view-btn-text {
  147. color: black;
  148. font-size: 0.7rem;
  149. }
  150. }
  151. .view-border{
  152. border-width: 1px;
  153. border-color: deepskyblue;
  154. border-style: solid;
  155. }
  156. .item-button-group {
  157. padding-top: 4px;
  158. display: flex;
  159. flex-direction: row;
  160. justify-content: flex-end;
  161. flex-flow: row wrap;
  162. .item-button {
  163. display: flex;
  164. flex-direction: row;
  165. justify-content: center;
  166. width: 90px;
  167. height: 28px;
  168. margin-left: 5px;
  169. margin-top: 3px;
  170. margin-bottom: 3px;
  171. border-radius: 7px;
  172. background-color: lightblue;
  173. .button-icon {
  174. display: flex;
  175. flex-direction: column;
  176. justify-content: center;
  177. }
  178. .button-text {
  179. display: flex;
  180. flex-direction: column;
  181. justify-content: center;
  182. padding-left: 5px;
  183. color: black;
  184. font-size: 0.6rem;
  185. }
  186. }
  187. .mid-size{
  188. width: 120px;
  189. }
  190. .item-button-disabled {
  191. display: flex;
  192. flex-direction: row;
  193. justify-content: center;
  194. width: 90px;
  195. height: 28px;
  196. margin-left: 5px;
  197. margin-top: 3px;
  198. margin-bottom: 3px;
  199. border-radius: 7px;
  200. background-color: lightgrey;
  201. .button-icon {
  202. display: flex;
  203. flex-direction: column;
  204. justify-content: center;
  205. }
  206. .button-text {
  207. display: flex;
  208. flex-direction: column;
  209. justify-content: center;
  210. padding-left: 5px;
  211. color: black;
  212. font-size: 0.6rem;
  213. }
  214. }
  215. }
  216. .pagination-block {
  217. width: 100%;
  218. }
  219. .search-block{
  220. width: 100%;
  221. display: flex;
  222. flex-direction: column;
  223. justify-content: flex-start;
  224. padding-bottom: 5px;
  225. }
  226. .search-block .name{
  227. margin-top: 5px;
  228. padding-left: 10px;
  229. padding-right: 10px;
  230. }
  231. .search-block .adcd-adnm{
  232. margin-top: 5px;
  233. padding-left: 10px;
  234. padding-right: 10px;
  235. }
  236. .search-block .rtu-name{
  237. margin-top: 5px;
  238. padding-left: 10px;
  239. padding-right: 10px;
  240. }
  241. .search-block .rtu-code{
  242. margin-top: 5px;
  243. padding-left: 10px;
  244. padding-right: 10px;
  245. }
  246. .search-block .submit-btn{
  247. margin-top: 5px;
  248. padding-left: 10px;
  249. padding-right: 10px;
  250. }
  251. .count-info-block{
  252. padding-top: 5px;
  253. padding-bottom: 5px;
  254. padding-left: 10px;
  255. padding-right: 10px;
  256. }
  257. .count-info-block .rtuCount{
  258. display: flex;
  259. flex-direction: row;
  260. align-items: center;
  261. .name{
  262. color: dimgray;
  263. font-size: 0.7rem;
  264. }
  265. .count{
  266. margin-left: 5px;
  267. color: dodgerblue;
  268. font-size: 0.7rem;
  269. }
  270. }
  271. .count-info-block .warnRtuCount {
  272. display: flex;
  273. flex-direction: row;
  274. align-items: center;
  275. .name{
  276. color: dimgray;
  277. font-size: 0.7rem;
  278. }
  279. .count{
  280. margin-left: 5px;
  281. color: red;
  282. font-size: 0.7rem;
  283. }
  284. }
  285. .count-info-block .orderCount {
  286. display: flex;
  287. flex-direction: row;
  288. align-items: center;
  289. .name{
  290. color: dimgray;
  291. font-size: 0.7rem;
  292. }
  293. .count{
  294. margin-left: 5px;
  295. color: dodgerblue;
  296. font-size: 0.7rem;
  297. }
  298. }
  299. .count-info-block .unconfirmOrderCount {
  300. display: flex;
  301. flex-direction: row;
  302. align-items: center;
  303. .name{
  304. color: dimgray;
  305. font-size: 0.7rem;
  306. }
  307. .count{
  308. margin-left: 5px;
  309. color: red;
  310. font-size: 0.7rem;
  311. }
  312. }
  313. .count-info-block .processOrderCount {
  314. display: flex;
  315. flex-direction: row;
  316. align-items: center;
  317. .name{
  318. color: dimgray;
  319. font-size: 0.7rem;
  320. }
  321. .count{
  322. margin-left: 5px;
  323. color: green;
  324. font-size: 0.7rem;
  325. }
  326. }
  327. .count-info-block .delayComfireOrders {
  328. display: flex;
  329. flex-direction: row;
  330. align-items: center;
  331. .name{
  332. color: dimgray;
  333. font-size: 0.7rem;
  334. }
  335. .count{
  336. margin-left: 5px;
  337. color: red;
  338. font-size: 0.7rem;
  339. }
  340. }
  341. .count-info-block .equipmentInspectionCount {
  342. display: flex;
  343. flex-direction: row;
  344. align-items: center;
  345. .name{
  346. color: dimgray;
  347. font-size: 0.7rem;
  348. }
  349. .count{
  350. margin-left: 5px;
  351. color: dodgerblue;
  352. font-size: 0.7rem;
  353. }
  354. }
  355. .count-info-block .equipmentInspectionBeforeRainCount {
  356. display: flex;
  357. flex-direction: row;
  358. align-items: center;
  359. .name{
  360. color: dimgray;
  361. font-size: 0.7rem;
  362. }
  363. .count{
  364. margin-left: 5px;
  365. color: dodgerblue;
  366. font-size: 0.7rem;
  367. }
  368. }
  369. .count-info-block .equipmentInspectionRainFirstCount {
  370. display: flex;
  371. flex-direction: row;
  372. align-items: center;
  373. .name{
  374. color: dimgray;
  375. font-size: 0.7rem;
  376. }
  377. .count{
  378. margin-left: 5px;
  379. color: dodgerblue;
  380. font-size: 0.7rem;
  381. }
  382. }
  383. .count-info-block .equipmentInspectionRainSecondCount {
  384. display: flex;
  385. flex-direction: row;
  386. align-items: center;
  387. .name{
  388. color: dimgray;
  389. font-size: 0.7rem;
  390. }
  391. .count{
  392. margin-left: 5px;
  393. color: dodgerblue;
  394. font-size: 0.7rem;
  395. }
  396. }
  397. /* start--演示页面使用的统一样式--start */
  398. .u-demo {
  399. padding: 25px 20px;
  400. }
  401. .u-demo-wrap {
  402. border-width: 1px;
  403. border-color: #ddd;
  404. border-style: dashed;
  405. background-color: rgb(250, 250, 250);
  406. padding: 20px 10px;
  407. border-radius: 3px;
  408. }
  409. .u-demo-area {
  410. text-align: center;
  411. }
  412. .u-no-demo-here {
  413. color: $u-tips-color;
  414. font-size: 13px;
  415. }
  416. .u-demo-result-line {
  417. border-width: 1px;
  418. border-color: #ddd;
  419. border-style: dashed;
  420. padding: 5px 20px;
  421. margin-top: 30px;
  422. border-radius: 5px;
  423. background-color: rgb(240, 240, 240);
  424. color: $u-content-color;
  425. font-size: 16px;
  426. /* #ifndef APP-NVUE */
  427. word-break: break-word;
  428. display: inline-block;
  429. /* #endif */
  430. text-align: left;
  431. }
  432. .u-demo-title,
  433. .u-config-title {
  434. text-align: center;
  435. font-size: 16px;
  436. font-weight: bold;
  437. margin-bottom: 20px;
  438. }
  439. .u-config-item {
  440. margin-top: 25px;
  441. }
  442. .u-config-title {
  443. margin-top: 20px;
  444. padding-bottom: 5px;
  445. }
  446. .u-item-title {
  447. position: relative;
  448. font-size: 15px;
  449. padding-left: 8px;
  450. line-height: 1;
  451. margin-bottom: 11px;
  452. }
  453. .u-item-title:after {
  454. position: absolute;
  455. width: 4px;
  456. top: -1px;
  457. height: 16px;
  458. /* #ifndef APP-NVUE */
  459. content: '';
  460. /* #endif */
  461. left: 0;
  462. border-radius: 10px;
  463. background-color: $u-content-color;
  464. }
  465. .view-flex-rs {
  466. display: flex;
  467. flex-direction: row;
  468. justify-content: flex-start;
  469. align-items: center;
  470. flex-wrap: wrap;
  471. }
  472. .view-flex-rc {
  473. display: flex;
  474. flex-direction: row;
  475. justify-content: center;
  476. align-items: center;
  477. }
  478. .view-flex-cc {
  479. display: flex;
  480. flex-direction: column;
  481. justify-content: center;
  482. align-items: center;
  483. }
  484. .view-flex-block {
  485. display: flex;
  486. flex-direction: column;
  487. justify-content: flex-start;
  488. align-items: center;
  489. }
  490. .view-flex-block-center {
  491. display: flex;
  492. flex-direction: column;
  493. justify-content: center;
  494. align-items: center;
  495. }
  496. .view-flex-inline {
  497. display: flex;
  498. flex-direction: row;
  499. justify-content: flex-start;
  500. align-items: center;
  501. flex-wrap: wrap;
  502. }
  503. .view-flex-inline-center {
  504. display: flex;
  505. flex-direction: row;
  506. justify-content: center;
  507. align-items: center;
  508. flex-wrap: wrap;
  509. }
  510. .view-flex-inline-end {
  511. display: flex;
  512. flex-direction: row;
  513. justify-content: flex-end;
  514. align-items: center;
  515. flex-wrap: wrap;
  516. }
  517. .list-item-title {
  518. margin-left: 5rpx;
  519. font-size: 0.7rem;
  520. font-weight: bold;
  521. }
  522. .list-item-sub-title {
  523. margin-left: 5rpx;
  524. font-size: 0.6rem;
  525. color: gray;
  526. }
  527. .list-item-text{
  528. padding-left: 2px;
  529. padding-right: 5px;
  530. font-size: 0.7rem;
  531. }
  532. .list-item-text-ellipsis {
  533. width: 100%;
  534. overflow: hidden;
  535. white-space: nowrap;
  536. text-overflow: ellipsis;
  537. }
  538. .footer {
  539. position: fixed;
  540. bottom: 0;
  541. left: 0;
  542. right: 0;
  543. z-index: 1;
  544. height: 100rpx;
  545. padding: 20rpx;
  546. box-sizing: border-box;
  547. display: flex;
  548. align-items: center;
  549. justify-content: flex-end;
  550. background-color: whitesmoke;
  551. .ipt {
  552. width: 380rpx;
  553. height: 77rpx;
  554. background: #f7f7f7;
  555. border-radius: 38px;
  556. padding: 0 37rpx;
  557. box-sizing: border-box;
  558. margin-right: 20rpx;
  559. }
  560. .control {
  561. flex: 1;
  562. display: flex;
  563. align-items: center;
  564. justify-content: flex-end;
  565. .block {
  566. display: flex;
  567. align-items: center;
  568. justify-content: center;
  569. flex: 1;
  570. }
  571. .icon {
  572. height: auto;
  573. }
  574. .c {
  575. width: 41rpx;
  576. margin-right: 10rpx;
  577. }
  578. .s {
  579. width: 36rpx;
  580. }
  581. .t {
  582. width: 31rpx;
  583. }
  584. }
  585. }
  586. .img-container {
  587. margin-bottom: 0px;
  588. width: 100px;
  589. height: 100px;
  590. .note-image-box {
  591. margin-top: 0px;
  592. display: flex;
  593. flex-wrap: wrap;
  594. padding: 10px;
  595. .note-image-item {
  596. position: relative;
  597. width: 100%;
  598. height: 0;
  599. padding-top: 100%;
  600. box-sizing: border-box;
  601. // background-color: #18B566;
  602. .close-icon {
  603. display: flex;
  604. justify-content: center;
  605. align-items: center;
  606. position: absolute;
  607. right: 0px;
  608. top: 0px;
  609. width: 22px;
  610. height: 22px;
  611. border-radius: 50%;
  612. background-color: #d5d5d5;
  613. z-index: 2;
  614. }
  615. .image-box {
  616. display: flex;
  617. justify-content: center;
  618. align-items: center;
  619. position: absolute;
  620. top: 0px;
  621. right: 0px;
  622. border: 0px;
  623. left: 0px;
  624. border: 1px #eee solid;
  625. border-radius: 5px;
  626. overflow: hidden;
  627. width: 99%;
  628. height: 99%;
  629. }
  630. }
  631. }
  632. }
  633. /* end--演示页面使用的统一样式--end */