newOrderDirectly.html 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  1. <div>
  2. <div class="modal-header" draggable class="modal-dialog">
  3. <div class="modal-title fontcolor-two fontsizes-14">
  4. 直接解决<button
  5. type="button"
  6. class="close pull-right"
  7. ng-click="cancel()"
  8. >
  9. ×
  10. </button>
  11. </div>
  12. </div>
  13. <div class="newOrder_content" style="width: 100%">
  14. <div class="centerList" style="height: 250px;">
  15. <div class="body clearfix">
  16. <div class="c_item c_item_value_textarea clearfix" ng-if="categorySelect.hasSimple != 1">
  17. <label><span class="colorRed">*</span>处理方案:</label>
  18. <textarea
  19. class="c_item_value"
  20. ng-model="incidentModel.handlerMsg"
  21. placeholder="请填写处理方案"
  22. ></textarea>
  23. </div>
  24. <div class="c_item clearfix">
  25. <label><span class="colorRed">*</span>处理结果:</label>
  26. <ui-select
  27. class="c_item_value"
  28. ng-model="incidentModel.closecode"
  29. theme="bootstrap"
  30. >
  31. <ui-select-match placeholder="请选择处理结果">
  32. <span ng-bind="$select.selected.name"> </span>
  33. </ui-select-match>
  34. <ui-select-choices
  35. repeat="item in (closecodeArray | filter:$select.search) track by item.id"
  36. >
  37. <span ng-bind="item.name"></span>
  38. </ui-select-choices>
  39. </ui-select>
  40. </div>
  41. </div>
  42. </div>
  43. </div>
  44. <div class="modal-footer">
  45. <button class="btn btn-primary" ng-click="ok()">确定</button>
  46. <button class="btn btn-primary btn-o" ng-click="cancel()">取消</button>
  47. </div>
  48. </div>
  49. <style>
  50. @media (min-width: 768px) {
  51. .modal-dialog {
  52. width: 1300px;
  53. margin: 30px auto;
  54. height: 100%;
  55. }
  56. }
  57. .newOrder_content input::-webkit-input-placeholder {
  58. /* Chrome/Opera/Safari */
  59. color: #c2c2c5;
  60. }
  61. .newOrder_content input:-ms-input-placeholder {
  62. /* IE 10+ */
  63. color: #c2c2c5;
  64. }
  65. .newOrder_content input:-moz-placeholder {
  66. /* Firefox 18- */
  67. color: #c2c2c5;
  68. opacity: 1;
  69. }
  70. .newOrder_content input::-moz-placeholder {
  71. /* Firefox 19+ */
  72. color: #c2c2c5;
  73. opacity: 1;
  74. }
  75. .newOrder_content textarea::-webkit-input-placeholder {
  76. /* Chrome/Opera/Safari */
  77. color: #c2c2c5;
  78. }
  79. .newOrder_content textarea:-ms-input-placeholder {
  80. /* IE 10+ */
  81. color: #c2c2c5;
  82. }
  83. .newOrder_content textarea:-moz-placeholder {
  84. /* Firefox 18- */
  85. color: #c2c2c5;
  86. opacity: 1;
  87. }
  88. .newOrder_content textarea::-moz-placeholder {
  89. /* Firefox 19+ */
  90. color: #c2c2c5;
  91. opacity: 1;
  92. }
  93. .newOrder_content .colorRed {
  94. color: red;
  95. }
  96. .newOrder_content .imgsBox {
  97. display: flex;
  98. justify-content: space-between;
  99. padding: 10px 10px;
  100. background: #f9f9f9;
  101. }
  102. .newOrder_content .fileupload {
  103. width: 64px;
  104. height: 64px;
  105. border: 1px dotted #ccc;
  106. display: inline-block;
  107. background: #fff;
  108. border-radius: 5px;
  109. color: #d8d8d8;
  110. }
  111. .newOrder_content .fileupload-icon {
  112. font-size: 32px;
  113. position: absolute;
  114. top: 50%;
  115. left: 50%;
  116. transform: translate(-50%, -50%);
  117. }
  118. .newOrder_content .close {
  119. position: absolute;
  120. top: -5px;
  121. right: -6px;
  122. font-size: 16px;
  123. display: inline-block;
  124. width: 14px;
  125. height: 14px;
  126. color: #fff;
  127. background: #bd2535;
  128. line-height: 8px;
  129. text-align: center;
  130. border-radius: 9px;
  131. border: 1px solid #bd2535;
  132. opacity: 1;
  133. overflow: hidden;
  134. }
  135. .newOrder_content .close:hover {
  136. opacity: 0.8;
  137. }
  138. .newOrder_content .category {
  139. margin-right: 8px;
  140. }
  141. .newOrder_content .newOrder_body {
  142. height: 652px;
  143. overflow-y: auto;
  144. }
  145. .newOrder_content .newOrder_category li {
  146. font-size: 14px;
  147. color: #606367;
  148. padding: 8px;
  149. border-bottom: 1px dashed #d3d3d3;
  150. }
  151. .newOrder_content .newOrder_l li {
  152. cursor: pointer;
  153. }
  154. .newOrder_content .newOrder_l li.active {
  155. background-color: #d3d3d3;
  156. }
  157. .newOrder_content .newOrder_l li:hover {
  158. background-color: #d3d3d3;
  159. }
  160. .newOrder_content .newOrder_r_item {
  161. display: flex;
  162. align-items: center;
  163. justify-content: space-between;
  164. padding: 4px 0;
  165. }
  166. .newOrder_content .newOrder_r_item .ll {
  167. flex: 1;
  168. text-align: left;
  169. }
  170. .newOrder_content .newOrder_r_item .rr {
  171. flex: 1;
  172. text-align: right;
  173. }
  174. .jry_positionFather .describe {
  175. width: 430px;
  176. }
  177. .jry_positionChild {
  178. position: absolute;
  179. height: 20px;
  180. margin-top: -10px;
  181. right: 14px;
  182. top: 50%;
  183. }
  184. .jry_positionFather {
  185. position: relative;
  186. width: 100%;
  187. }
  188. .jry_item {
  189. display: inline-block;
  190. margin-left: 5px;
  191. }
  192. .jry_icon {
  193. position: absolute;
  194. right: 0;
  195. top: 0;
  196. display: inline-block;
  197. width: 20px;
  198. height: 30px;
  199. text-align: center;
  200. line-height: 30px;
  201. border: 1px rgb(211, 211, 211) solid;
  202. background-color: white;
  203. border-radius: 0 4px 4px 0;
  204. }
  205. .DingW {
  206. position: relative;
  207. display: flex;
  208. justify-content: center;
  209. height: 36px;
  210. line-height: 36px;
  211. border-bottom: 1px solid #d3d3d3;
  212. }
  213. .DingW .ui-select-match {
  214. line-height: normal;
  215. }
  216. .DingW .tab_name {
  217. flex: 1;
  218. text-align: center;
  219. cursor: pointer;
  220. border-right: 1px solid #d3d3d3;
  221. }
  222. .DingW .tab_name:last-of-type {
  223. border-right: none;
  224. }
  225. .DingW .tab_name.active {
  226. color: #fff;
  227. background-color: #006bc0;
  228. }
  229. .SJFL_ipt {
  230. width: 100%;
  231. height: 30px;
  232. border-radius: 4px 0 0 4px !important;
  233. }
  234. .radio_left {
  235. width: 40px;
  236. display: flex;
  237. align-items: center;
  238. justify-content: center;
  239. }
  240. .list {
  241. padding: 10px 0;
  242. border-bottom: 1px rgb(211, 211, 211) solid;
  243. border-top: 1px rgb(211, 211, 211) solid;
  244. display: flex;
  245. }
  246. .noData {
  247. display: flex;
  248. width: 100%;
  249. height: 100%;
  250. justify-content: center;
  251. align-items: center;
  252. border-bottom: none !important;
  253. padding-top: 30px !important;
  254. }
  255. .noData img {
  256. width: 120px;
  257. }
  258. .newOrder_content {
  259. display: flex;
  260. }
  261. .leftList {
  262. width: 280px;
  263. background-color: rgb(245, 245, 245);
  264. height: 700px;
  265. margin: 4px;
  266. border: 1px rgb(211, 211, 211) solid;
  267. border-radius: 4px;
  268. padding: 5px;
  269. }
  270. .centerList {
  271. /* width: 778px; */
  272. flex: 1;
  273. background-color: rgb(245, 245, 245);
  274. height: 700px;
  275. margin: 4px;
  276. border: 1px rgb(211, 211, 211) solid;
  277. border-radius: 4px;
  278. padding: 5px;
  279. }
  280. .centerList .c_item {
  281. height: 30px;
  282. margin-top: 16px;
  283. margin-right: 8px;
  284. float: left;
  285. }
  286. .centerList .c_item .c_item_value {
  287. min-width: 165px;
  288. height: 30px;
  289. float: left;
  290. }
  291. .centerList .c_item input[type="text"].c_item_value {
  292. width: 165px;
  293. }
  294. .centerList .c_item_value_textarea {
  295. width: 100%;
  296. height: 100px;
  297. display: flex;
  298. }
  299. .centerList .c_item_value_textarea .c_item_value {
  300. flex: 1;
  301. height: 100px;
  302. resize: none;
  303. }
  304. .centerList .c_item label {
  305. float: left;
  306. line-height: 30px;
  307. margin: 0;
  308. }
  309. .rightList {
  310. width: 280px;
  311. background-color: rgb(245, 245, 245);
  312. height: 700px;
  313. margin: 4px;
  314. border: 1px rgb(211, 211, 211) solid;
  315. border-radius: 4px;
  316. padding: 5px;
  317. }
  318. .head {
  319. color: #005395;
  320. font-size: 12px;
  321. height: 30px;
  322. line-height: 30px;
  323. border-bottom: 1px rgb(211, 211, 211) solid;
  324. }
  325. </style>