tel.html 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. <style>
  2. .modal-dialog {
  3. height: 100vh;
  4. }
  5. .modal-dialog .new_after {
  6. position: fixed;
  7. }
  8. .hj .body .rigt .div{
  9. height: 100px!important;
  10. }
  11. .hj {
  12. position: absolute;
  13. left: 50%;
  14. top: 50%;
  15. transform: translate(-50%,-50%);
  16. display: flex;
  17. flex-direction: column;
  18. width: 340px;
  19. z-index: 11;
  20. background-color: white;
  21. border-radius: 4px;
  22. transition-duration: 0.8s
  23. }
  24. /* 头部 */
  25. .hj .head {
  26. text-align: center;
  27. height: 40px;
  28. line-height: 40px;
  29. border-bottom: 1px #d1d1d1 solid
  30. }
  31. /* 交叉 */
  32. .hj .head .jiaocha {
  33. float: right;
  34. width: 14px;
  35. height: 14px;
  36. line-height: 12px;
  37. text-align: center;
  38. border: 1px #6e6e6e solid;
  39. border-radius: 50%;
  40. margin-right: 20px;
  41. margin-top: 15px;
  42. cursor: pointer;
  43. }
  44. /* 主体 */
  45. .hj .body {
  46. overflow: auto;
  47. width: 298px;
  48. max-height: 400px;
  49. background-color: #f5f5f5;
  50. border: 1px #d1d1d1 solid;
  51. margin: 0 auto;
  52. border-radius: 2px;
  53. margin-top: 10px;
  54. flex:1;
  55. }
  56. .hj .body::-webkit-scrollbar { /*滚动条整体样式*/
  57. width:3px;
  58. height:3px;
  59. }
  60. .hj .body::-webkit-scrollbar-thumb { /*滚动条里面小方块样式*/
  61. border-radius:100px;
  62. box-shadow:inset 0 0 5px rgba(0,0,0,0.2);
  63. background:rgba(0,0,0,0.1);;
  64. }
  65. .hj .body::-webkit-scrollbar-track { /*滚动条里面轨道样式*/
  66. box-shadow:inset 0 0 5px rgba(0,0,0,0.2);
  67. border-radius:0;
  68. background:rgba(0,0,0,0.1);
  69. }
  70. .hj .body .xing {
  71. color: red;
  72. float: left;
  73. width: 20px;
  74. text-align: center;
  75. margin-top: 12px
  76. }
  77. .hj .body .xing div {
  78. height: 70px;
  79. font-size: 16px
  80. }
  81. .hj .body .rigt {
  82. float: left;
  83. margin-top: 12px
  84. }
  85. .hj .body .rigt .div {
  86. height: 70px;
  87. }
  88. .hj .body .rigt span {
  89. font-size: 13px;
  90. font-weight: bold
  91. }
  92. .hj .body .rigt .xiala {
  93. margin-top: 4px;
  94. width: 258px !important;
  95. height: auto;
  96. background-color: #f5f5f5
  97. }
  98. .hj .body .rigt .xialaipt {
  99. margin-top: 4px;
  100. width: 258px !important;
  101. height: 32px;
  102. }
  103. .hj .body .rigt .price {
  104. margin-top: 4px;
  105. width: 100px !important;
  106. height: 32px;
  107. }
  108. .hj .submi {
  109. text-align: center;
  110. }
  111. .hj .submi input {
  112. margin-top: 10px;
  113. margin-bottom: 10px;
  114. width: 78px;
  115. height: 32px;
  116. border: none;
  117. }
  118. /* 保存 */
  119. .hj .submi .preservation {
  120. background-color: #123f8f !important;
  121. color: white;
  122. border: 1px #123f8f solid
  123. }
  124. /* 取消 */
  125. .hj .submi .cancel {
  126. background-color: #f2f2f2;
  127. color: #373737;
  128. border: 1px #d1d1d1 solid
  129. }
  130. </style>
  131. <div class="new new_after hj">
  132. <div class="head">
  133. <span>选择报修人</span>
  134. <span class="jiaocha" ng-click="close()">×</span>
  135. </div>
  136. <div class="body">
  137. <div class="xing">
  138. <div>*</div>
  139. </div>
  140. <form class="rigt">
  141. <div class="div">
  142. <div class="tab_bdItem_tab" ng-repeat="item in list">
  143. <input type="radio" ng-model="selectedItem" ng-change="changeBxr(item.id)" name="selectedItem" ng-value="item.id" id="{{item.id}}">
  144. <label for="{{item.id}}">{{item.name}}</label>
  145. </div>
  146. </div>
  147. </form>
  148. </div>
  149. <div class="submi ">
  150. <input type="button" value="保存" class="preservation btn" ng-click="save()">
  151. <input type="button" value="取消" class="cancel btn" ng-click="cancel()">
  152. </div>
  153. </div>