newOrderSupplement.html 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435
  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 class="c_item clearfix">
  42. <label><span class="colorRed">*</span>登记时间:</label>
  43. <span class="input-icon" style="float: left">
  44. <input
  45. type="text"
  46. class="c_item_value underline"
  47. style="width: 175px"
  48. ng-click="endOpen = !endOpen"
  49. datepicker-popup="yyyy-MM-dd HH:mm:ss"
  50. ng-model="incidentModel.acceptDate"
  51. is-open="endOpen"
  52. close-on-date-selection="false"
  53. ng-init="endOpen = false"
  54. close-text="关闭"
  55. current-text="今天"
  56. clear-text="清空"
  57. save-text="确定"
  58. show-weeks="false"
  59. />
  60. <i class="ti-calendar"></i>
  61. </span>
  62. </div>
  63. <div class="c_item clearfix">
  64. <label><span class="colorRed">*</span>接单时间:</label>
  65. <span class="input-icon" style="float: left">
  66. <input
  67. type="text"
  68. class="c_item_value underline"
  69. style="width: 175px"
  70. ng-click="endOpen1 = !endOpen1"
  71. datepicker-popup="yyyy-MM-dd HH:mm:ss"
  72. ng-model="incidentModel.responseHandleTime"
  73. is-open="endOpen1"
  74. close-on-date-selection="false"
  75. ng-init="endOpen1 = false"
  76. close-text="关闭"
  77. current-text="今天"
  78. clear-text="清空"
  79. save-text="确定"
  80. show-weeks="false"
  81. />
  82. <i class="ti-calendar"></i>
  83. </span>
  84. </div>
  85. <div class="c_item clearfix">
  86. <label><span class="colorRed">*</span>解决时间:</label>
  87. <span class="input-icon" style="float: left">
  88. <input
  89. type="text"
  90. class="c_item_value underline"
  91. style="width: 175px"
  92. ng-click="endOpen2 = !endOpen2"
  93. datepicker-popup="yyyy-MM-dd HH:mm:ss"
  94. ng-model="incidentModel.handleTime"
  95. is-open="endOpen2"
  96. close-on-date-selection="false"
  97. ng-init="endOpen2 = false"
  98. close-text="关闭"
  99. current-text="今天"
  100. clear-text="清空"
  101. save-text="确定"
  102. show-weeks="false"
  103. />
  104. <i class="ti-calendar"></i>
  105. </span>
  106. </div>
  107. <div class="c_item clearfix">
  108. <label><span class="colorRed">*</span>处理人:</label>
  109. <ui-select
  110. class="c_item_value"
  111. style="min-width: 300px"
  112. ng-model="incidentModel.handlingPersonnelUser"
  113. theme="bootstrap"
  114. ng-required="true"
  115. reset-search-input="false"
  116. >
  117. <ui-select-match placeholder="请选择处理人">
  118. <span ng-bind="$select.selected.name"></span>
  119. </ui-select-match>
  120. <ui-select-choices
  121. repeat="item in jry_userData| filter:{$:$select.search}"
  122. refresh="jry_userSearch($select.search)"
  123. >
  124. <div
  125. ng-bind-html="item.name | highlight: $select.search"
  126. ></div>
  127. </ui-select-choices>
  128. </ui-select>
  129. </div>
  130. </div>
  131. </div>
  132. </div>
  133. <div class="modal-footer">
  134. <button class="btn btn-primary" ng-click="ok()">确定</button>
  135. <button class="btn btn-primary btn-o" ng-click="cancel()">取消</button>
  136. </div>
  137. </div>
  138. <style>
  139. @media (min-width: 768px) {
  140. .modal-dialog {
  141. width: 1300px;
  142. margin: 30px auto;
  143. height: 100%;
  144. }
  145. }
  146. .newOrder_content input::-webkit-input-placeholder {
  147. /* Chrome/Opera/Safari */
  148. color: #c2c2c5;
  149. }
  150. .newOrder_content input:-ms-input-placeholder {
  151. /* IE 10+ */
  152. color: #c2c2c5;
  153. }
  154. .newOrder_content input:-moz-placeholder {
  155. /* Firefox 18- */
  156. color: #c2c2c5;
  157. opacity: 1;
  158. }
  159. .newOrder_content input::-moz-placeholder {
  160. /* Firefox 19+ */
  161. color: #c2c2c5;
  162. opacity: 1;
  163. }
  164. .newOrder_content textarea::-webkit-input-placeholder {
  165. /* Chrome/Opera/Safari */
  166. color: #c2c2c5;
  167. }
  168. .newOrder_content textarea:-ms-input-placeholder {
  169. /* IE 10+ */
  170. color: #c2c2c5;
  171. }
  172. .newOrder_content textarea:-moz-placeholder {
  173. /* Firefox 18- */
  174. color: #c2c2c5;
  175. opacity: 1;
  176. }
  177. .newOrder_content textarea::-moz-placeholder {
  178. /* Firefox 19+ */
  179. color: #c2c2c5;
  180. opacity: 1;
  181. }
  182. .newOrder_content .colorRed {
  183. color: red;
  184. }
  185. .newOrder_content .imgsBox {
  186. display: flex;
  187. justify-content: space-between;
  188. padding: 10px 10px;
  189. background: #f9f9f9;
  190. }
  191. .newOrder_content .fileupload {
  192. width: 64px;
  193. height: 64px;
  194. border: 1px dotted #ccc;
  195. display: inline-block;
  196. background: #fff;
  197. border-radius: 5px;
  198. color: #d8d8d8;
  199. }
  200. .newOrder_content .fileupload-icon {
  201. font-size: 32px;
  202. position: absolute;
  203. top: 50%;
  204. left: 50%;
  205. transform: translate(-50%, -50%);
  206. }
  207. .newOrder_content .close {
  208. position: absolute;
  209. top: -5px;
  210. right: -6px;
  211. font-size: 16px;
  212. display: inline-block;
  213. width: 14px;
  214. height: 14px;
  215. color: #fff;
  216. background: #bd2535;
  217. line-height: 8px;
  218. text-align: center;
  219. border-radius: 9px;
  220. border: 1px solid #bd2535;
  221. opacity: 1;
  222. overflow: hidden;
  223. }
  224. .newOrder_content .close:hover {
  225. opacity: 0.8;
  226. }
  227. .newOrder_content .category {
  228. margin-right: 8px;
  229. }
  230. .newOrder_content .newOrder_body {
  231. height: 652px;
  232. overflow-y: auto;
  233. }
  234. .newOrder_content .newOrder_category li {
  235. font-size: 14px;
  236. color: #606367;
  237. padding: 8px;
  238. border-bottom: 1px dashed #d3d3d3;
  239. }
  240. .newOrder_content .newOrder_l li {
  241. cursor: pointer;
  242. }
  243. .newOrder_content .newOrder_l li.active {
  244. background-color: #d3d3d3;
  245. }
  246. .newOrder_content .newOrder_l li:hover {
  247. background-color: #d3d3d3;
  248. }
  249. .newOrder_content .newOrder_r_item {
  250. display: flex;
  251. align-items: center;
  252. justify-content: space-between;
  253. padding: 4px 0;
  254. }
  255. .newOrder_content .newOrder_r_item .ll {
  256. flex: 1;
  257. text-align: left;
  258. }
  259. .newOrder_content .newOrder_r_item .rr {
  260. flex: 1;
  261. text-align: right;
  262. }
  263. .jry_positionFather .describe {
  264. width: 430px;
  265. }
  266. .jry_positionChild {
  267. position: absolute;
  268. height: 20px;
  269. margin-top: -10px;
  270. right: 14px;
  271. top: 50%;
  272. }
  273. .jry_positionFather {
  274. position: relative;
  275. width: 100%;
  276. }
  277. .jry_item {
  278. display: inline-block;
  279. margin-left: 5px;
  280. }
  281. .jry_icon {
  282. position: absolute;
  283. right: 0;
  284. top: 0;
  285. display: inline-block;
  286. width: 20px;
  287. height: 30px;
  288. text-align: center;
  289. line-height: 30px;
  290. border: 1px rgb(211, 211, 211) solid;
  291. background-color: white;
  292. border-radius: 0 4px 4px 0;
  293. }
  294. .DingW {
  295. position: relative;
  296. display: flex;
  297. justify-content: center;
  298. height: 36px;
  299. line-height: 36px;
  300. border-bottom: 1px solid #d3d3d3;
  301. }
  302. .DingW .ui-select-match {
  303. line-height: normal;
  304. }
  305. .DingW .tab_name {
  306. flex: 1;
  307. text-align: center;
  308. cursor: pointer;
  309. border-right: 1px solid #d3d3d3;
  310. }
  311. .DingW .tab_name:last-of-type {
  312. border-right: none;
  313. }
  314. .DingW .tab_name.active {
  315. color: #fff;
  316. background-color: #006bc0;
  317. }
  318. .SJFL_ipt {
  319. width: 100%;
  320. height: 30px;
  321. border-radius: 4px 0 0 4px !important;
  322. }
  323. .radio_left {
  324. width: 40px;
  325. display: flex;
  326. align-items: center;
  327. justify-content: center;
  328. }
  329. .list {
  330. padding: 10px 0;
  331. border-bottom: 1px rgb(211, 211, 211) solid;
  332. border-top: 1px rgb(211, 211, 211) solid;
  333. display: flex;
  334. }
  335. .noData {
  336. display: flex;
  337. width: 100%;
  338. height: 100%;
  339. justify-content: center;
  340. align-items: center;
  341. border-bottom: none !important;
  342. padding-top: 30px !important;
  343. }
  344. .noData img {
  345. width: 120px;
  346. }
  347. .newOrder_content {
  348. display: flex;
  349. }
  350. .leftList {
  351. width: 280px;
  352. background-color: rgb(245, 245, 245);
  353. height: 700px;
  354. margin: 4px;
  355. border: 1px rgb(211, 211, 211) solid;
  356. border-radius: 4px;
  357. padding: 5px;
  358. }
  359. .centerList {
  360. /* width: 778px; */
  361. flex: 1;
  362. background-color: rgb(245, 245, 245);
  363. height: 700px;
  364. margin: 4px;
  365. border: 1px rgb(211, 211, 211) solid;
  366. border-radius: 4px;
  367. padding: 5px;
  368. }
  369. .centerList .c_item {
  370. height: 30px;
  371. margin-top: 16px;
  372. margin-right: 8px;
  373. float: left;
  374. }
  375. .centerList .c_item .c_item_value {
  376. min-width: 165px;
  377. height: 30px;
  378. float: left;
  379. }
  380. .centerList .c_item input[type="text"].c_item_value {
  381. width: 165px;
  382. }
  383. .centerList .c_item_value_textarea {
  384. width: 100%;
  385. height: 100px;
  386. display: flex;
  387. }
  388. .centerList .c_item_value_textarea .c_item_value {
  389. flex: 1;
  390. height: 100px;
  391. resize: none;
  392. }
  393. .centerList .c_item label {
  394. float: left;
  395. line-height: 30px;
  396. margin: 0;
  397. }
  398. .rightList {
  399. width: 280px;
  400. background-color: rgb(245, 245, 245);
  401. height: 700px;
  402. margin: 4px;
  403. border: 1px rgb(211, 211, 211) solid;
  404. border-radius: 4px;
  405. padding: 5px;
  406. }
  407. .head {
  408. color: #005395;
  409. font-size: 12px;
  410. height: 30px;
  411. line-height: 30px;
  412. border-bottom: 1px rgb(211, 211, 211) solid;
  413. }
  414. </style>