allotCheckTask.less 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533
  1. @import "./reset.less";
  2. .container{
  3. width: 100%;
  4. height: 100%;
  5. overflow-x: auto;
  6. overflow-y: hidden;
  7. background: #fff;
  8. border-bottom: 10px @disColor solid;
  9. box-sizing: border-box;
  10. }
  11. ul,li{
  12. list-style: none;
  13. }
  14. h2{
  15. .h2;
  16. border-bottom: 10px @disColor solid;
  17. position: fixed;
  18. top: 0;
  19. }
  20. .main-body{
  21. .main-body-com;
  22. padding:0;
  23. border: none;
  24. border-left:10px @disColor solid;
  25. margin: 54px 0 0;
  26. min-width: 1320px;
  27. min-height: calc(100% - 54px);
  28. // overflow: auto;
  29. }
  30. .borderRight{
  31. position: absolute;
  32. height: 100%;
  33. }
  34. .qctable{
  35. .table;
  36. th,td{
  37. padding:5px 10px;
  38. }
  39. th{
  40. white-space: nowrap;
  41. }
  42. th[code]{
  43. cursor: pointer;
  44. &:after{
  45. content:"";
  46. display:inline-block;
  47. width: 11px;
  48. height: 14px;
  49. margin-left: 4px;
  50. vertical-align: middle;
  51. background-size: 100%;
  52. background-image: url("../images/grey.png");
  53. }
  54. &.asc:after{
  55. background: url("../images/up_blue.png");
  56. background-size: 100%;
  57. }
  58. &.desc:after{
  59. background: url("../images/down_blue.png");
  60. background-size: 100%;
  61. }
  62. }
  63. td{
  64. white-space: nowrap;
  65. }
  66. .moduleNumber{
  67. text-align: center;
  68. }
  69. .operaItem{
  70. width: 50px;
  71. position: relative;
  72. img{
  73. width: 15px;
  74. height: 15px;
  75. }
  76. }
  77. .tabTitle {
  78. background: #EFF0F9 !important;
  79. .allCheck{
  80. img{
  81. width: 15px;
  82. height: 15px;
  83. cursor: pointer;
  84. vertical-align: middle;
  85. }
  86. }
  87. }
  88. }
  89. .table-cont,.patient-table-cont{
  90. overflow-y: auto;
  91. }
  92. .checkerTable .dot-over{
  93. display: inline-block;
  94. max-width: 90px;
  95. overflow: hidden;
  96. text-overflow: ellipsis;
  97. white-space: nowrap;
  98. }
  99. .taskTable {
  100. .dot-hide,.dot-long-hide{
  101. display: inline-block;
  102. width: 65px;
  103. overflow: hidden;
  104. text-overflow: ellipsis;
  105. white-space: nowrap;
  106. }
  107. .dot-long-hide{
  108. width: 100px;
  109. }
  110. }
  111. tbody{
  112. .job-num,.delete{
  113. color: #00A1FF;
  114. cursor: pointer;
  115. &.disable{
  116. color: #ccc;
  117. cursor: unset;
  118. }
  119. }
  120. }
  121. .tabFoot{
  122. height: 40px;
  123. background: none;
  124. /*border: 1px solid #E2E5EF;
  125. border-top: none;
  126. box-sizing: border-box;*/
  127. }
  128. .scoreOpera{
  129. height: 50px;
  130. line-height: 50px;
  131. margin: 0 20px 0 0;
  132. cursor: pointer;
  133. img{
  134. margin: 0 10px 0 0;
  135. vertical-align: middle;
  136. }
  137. }
  138. .recordScoreOperaBtn{
  139. cursor: pointer;
  140. color: @activeColor;
  141. }
  142. .recordScoreBtn{
  143. cursor: pointer;
  144. display: inline-block;
  145. width:68px;
  146. height:30px;
  147. line-height: 30px;
  148. text-align: center;
  149. border-radius:4px;
  150. box-sizing: border-box;
  151. border: 1px solid @activeColor;
  152. color: #fff;
  153. background: @activeColor;
  154. }
  155. .filterBox{
  156. position: relative;
  157. }
  158. .overAuto{
  159. padding: 20px;
  160. &.fl{
  161. width: 460px;
  162. }
  163. &.fr{
  164. width: calc(100% - 550px);
  165. border-left: 10px #EFF1F6 solid;
  166. /*.filter{
  167. margin-left: 20px;
  168. }*/
  169. }
  170. }
  171. .toggle-item{
  172. display: none;
  173. }
  174. .filter-toggler{
  175. position: absolute;
  176. left: 601px;
  177. top: 8px;
  178. color: #777;
  179. white-space: nowrap;
  180. font-size: 14px;
  181. background: url("../images/arrow_up.png") 60px center no-repeat;
  182. padding-right: 15px;
  183. background-size: 10px 6px;
  184. &.up{
  185. background: url("../images/arrow_down.png") 60px center no-repeat;
  186. background-size: 10px 6px;
  187. }
  188. }
  189. .filterItem{
  190. position: relative;
  191. display: inline-block;
  192. float: left;
  193. height: 40px;
  194. line-height: 40px;
  195. margin-bottom:10px;
  196. /*margin-left: 20px;*/
  197. margin-right: 20px!important;
  198. &:first-child{
  199. margin-left: 0;
  200. }
  201. span{
  202. display: inline-block;
  203. line-height: 32px;
  204. position: relative;
  205. }
  206. input{
  207. width:120px;
  208. height:32px;
  209. border-radius:4px;
  210. border: 1px solid #E2E5EF;
  211. outline: none;
  212. margin-right: 10px;
  213. padding: 0 10px;
  214. box-sizing: border-box;
  215. }
  216. input:focus{
  217. border: 1px solid @activeColor ;
  218. outline: 0;
  219. -webkit-box-shadow:@activeColor 0px 0px 2px;
  220. -moz-box-shadow: @activeColor 0px 0px 2px;
  221. box-shadow: @activeColor 0px 0px 2px;
  222. }
  223. }
  224. .filterDropList{
  225. position: absolute;
  226. right: 0;
  227. top: 34px !important;
  228. max-height: 200px;
  229. overflow-y: auto;
  230. background: #fff;
  231. display: none;
  232. border: 1px solid #e4e7ed;
  233. box-shadow: 0 2px 12px 0 #e4e7ed;
  234. z-index: 2;
  235. li{
  236. padding: 0 10px;
  237. }
  238. }
  239. .deptList{
  240. width: 160px;
  241. max-height: 400px;
  242. }
  243. .checkerList,.scoreList{
  244. width: 120px;
  245. // height: 200px;
  246. li:hover{
  247. background-color: #EEF4FF;
  248. cursor: pointer;
  249. }
  250. }
  251. .selectLevel,.selectDept,.selectAllDept,.selectChecker,.selectScore{
  252. display: inline-block;
  253. position: relative;
  254. width:120px;
  255. padding: 0 10px;
  256. overflow: hidden;
  257. text-overflow: ellipsis;
  258. white-space: nowrap;
  259. height:32px;
  260. border-radius:4px;
  261. border: 1px solid #E2E5EF;
  262. box-sizing: border-box;
  263. cursor: pointer;
  264. }
  265. .selectDept{
  266. width: 160px;
  267. }
  268. .filter,.reset,.export,.save-btn,.del-confirm,.cancel{
  269. display: inline-block;
  270. width:60px;
  271. height:32px;
  272. background:@activeColor;
  273. border-radius:4px;
  274. color: #fff;
  275. text-align: center;
  276. line-height: 32px;
  277. position: relative;
  278. top: 2px;
  279. cursor: pointer;
  280. float: left;
  281. margin: 0 0px 10px 0;
  282. }
  283. .oper{
  284. text-align: center;
  285. margin:0 auto 0;
  286. border-top: 10px #EFF1F6 solid;
  287. border-bottom: 10px #EFF1F6 solid;
  288. padding: 10px 20px;
  289. .save-btn{
  290. width: 139px;
  291. float: none;
  292. margin-bottom: 4px;
  293. }
  294. background: #fff;
  295. }
  296. .del-confirm,.cancel{
  297. width: 68px;
  298. height: 28px;
  299. line-height: 28px;
  300. }
  301. .del-confirm{
  302. background: #FF4D4F;
  303. }
  304. .cancel{
  305. background: #E4E3E3;
  306. margin-left: 20px;
  307. }
  308. .export{
  309. height:34px;
  310. background: #fff;
  311. border-radius: 4px;
  312. color: #777;
  313. border: 1px solid #777;
  314. box-sizing: border-box;
  315. cursor: pointer;
  316. margin-left: 10px;
  317. float: left;
  318. top: 0px;
  319. }
  320. .arrow{
  321. position: absolute;
  322. width: 10px;
  323. top: 12px;
  324. right: 10px;
  325. }
  326. .iconCheck{
  327. width: 14px;
  328. }
  329. .fl{
  330. float: left;
  331. }
  332. .clearfix:after {
  333. content: '';
  334. height: 0;
  335. line-height: 0;
  336. display: block;
  337. visibility: hidden;
  338. clear: both;
  339. }
  340. .clearfix{
  341. zoom:1
  342. }
  343. .divide{
  344. margin: 0 10px;
  345. }
  346. .datapickerBox{
  347. position: relative;
  348. display: inline-block;
  349. width: 120px;
  350. height: 32px;
  351. input{
  352. position: absolute;
  353. }
  354. }
  355. .setCol{
  356. color: #777;
  357. cursor: pointer;
  358. margin: 0 0 0 50px;
  359. }
  360. .iconSetting{
  361. width: 18px;
  362. position: relative;
  363. top: 3px;
  364. margin: 0 3px 0 0;
  365. }
  366. .iconCalen{
  367. position: absolute;
  368. width: 15px;
  369. top: 10px;
  370. right: 10px;
  371. }
  372. .textCenter{
  373. text-align: center;
  374. }
  375. .patientNameSpan{
  376. color: @activeColor;
  377. cursor: pointer;
  378. }
  379. .deptItem:hover,.deptAllItem:hover,.checkerItem:hover{
  380. background-color: #EEF4FF;
  381. cursor: pointer;
  382. }
  383. .ellipsis{
  384. overflow: hidden;
  385. text-overflow:ellipsis;
  386. white-space: nowrap;
  387. }
  388. .unSelect{
  389. color: #cfccd6
  390. }
  391. .pagination{
  392. margin: 15px 0 10px 0 ;
  393. text-align: right;
  394. }
  395. .totalSum{
  396. font-size:12px;
  397. line-height:17px;
  398. color: #777777;
  399. margin-right: 20px;
  400. }
  401. .pageNum,.prePage,.nextPage, .more{
  402. display: inline-block;
  403. width: 20px;
  404. cursor: pointer;
  405. margin: 0 20px 0 0;
  406. text-align: center;
  407. color: #777;
  408. }
  409. .prePage,.nextPage{
  410. img{
  411. position: relative;
  412. top: 0px ;
  413. }
  414. }
  415. .more{
  416. cursor: not-allowed;
  417. }
  418. .arrowPage{
  419. width: 6px;
  420. }
  421. .activePage{
  422. color: @activeColor;
  423. }
  424. .tipIcon{
  425. color: #777;
  426. cursor: pointer;
  427. display: inline-block;
  428. margin-left: 6px;
  429. margin-right: 2px;
  430. }
  431. .toolTipIcon{
  432. width: 18px;
  433. position: relative;
  434. top: 3px;
  435. }
  436. .tooltip{
  437. visibility: hidden;
  438. position: relative;
  439. padding: 7px 10px;
  440. border-radius: 4px;
  441. margin: 100px auto;
  442. background-color: #4D4D4D;
  443. text-align: center;
  444. color: #fff;
  445. font-size: 14px;
  446. }
  447. .tooltip:before{
  448. content: '';
  449. display: block;
  450. position: absolute;
  451. bottom: 9px;
  452. left: -12px;
  453. border-bottom: 6px solid transparent;
  454. border-top: 6px solid transparent;
  455. border-left: 6px solid transparent;
  456. border-right: 6px solid #4D4D4D;
  457. }
  458. .tabBox {
  459. .tabs{
  460. display: none;
  461. padding: 22px 0 4px 20px;
  462. border-bottom: 10px #EFF1F6 solid;
  463. }
  464. .tab{
  465. display: inline-block;
  466. button{
  467. cursor: pointer;
  468. width: 138px;
  469. height: 34px;
  470. text-align: center;
  471. border-radius: 4px;
  472. }
  473. .active{
  474. color: #00A1FF;
  475. background: #E7F1FB;
  476. font-weight: bold;
  477. }
  478. }
  479. }
  480. .del-pop{
  481. display: none;
  482. position: absolute;
  483. right: 4px;
  484. top: 27px;
  485. z-index: 1;
  486. background: url("../images/Triangle.png") 170px 0 no-repeat;
  487. padding-top: 12px;
  488. .pop-body{
  489. width: 182px;
  490. height: 76px;
  491. background: #fff;
  492. box-shadow: 2px 2px 16px 0px #B7B7B7;
  493. border-radius: 22px;
  494. padding:10px 20px 20px;
  495. .pop-title{
  496. margin: 15px 0 10px;
  497. }
  498. .pop-btns{
  499. margin-left: 16px;
  500. }
  501. }
  502. }
  503. .modal-container .modal-box{
  504. width: 800px;
  505. left: 50%;
  506. margin-left: -400px;
  507. top:50%;
  508. margin-top: -216px;
  509. .modal-body{
  510. padding: 32px 16px;
  511. .task-table-cont{
  512. height: 326px;
  513. overflow-y: auto;
  514. padding-bottom: 2px;
  515. }
  516. }
  517. }