安图前端代码

AddWorkOrder.html 7.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <link href="../css/init.css" rel="stylesheet" />
  7. <script src="../Script/Common/huayi.load.js"></script>
  8. <script src="../Script/Common/huayi.config.js"></script>
  9. <link rel="stylesheet" href="../js/zTree/zTreeStyle.css" />
  10. <link href="../css/WorkOrder/Search.css" rel="stylesheet">
  11. <link href="../js/bootstrap-select/css/bootstrap-select.css" rel="stylesheet" />
  12. <link href="../css/init.css" rel="stylesheet" />
  13. <title>手工制单</title>
  14. <style>
  15. ul li{
  16. float: initial;
  17. list-style: none;
  18. }
  19. .common{
  20. width: 100%;
  21. text-align: center;
  22. padding: 10px 15px;
  23. }
  24. .common table{
  25. width: 100%;
  26. display: none;
  27. }
  28. .common table th {
  29. padding: 5px 8px 5px 0;
  30. text-align: right;
  31. width: 20%;
  32. }
  33. .common table td {
  34. padding: 6px 0 5px 10px;
  35. text-align: left;
  36. color: #717171;
  37. line-height: 200%;
  38. }
  39. .common table td textarea {
  40. width: 100%;
  41. vertical-align: middle;
  42. resize: none;
  43. outline: none;
  44. }
  45. .time-box {
  46. display: inline-block;
  47. position: relative;
  48. }
  49. i.tub {
  50. position: absolute;
  51. right: 8px;
  52. top: 8px;
  53. font-size: 18px;
  54. color: #00a0ca;
  55. }
  56. .treeList{
  57. top: 34px!important;
  58. border: 1px solid #e5e6e7!important;
  59. border-top: 0;
  60. height: auto!important;
  61. }
  62. #TreeDemo li{
  63. float: initial;
  64. }
  65. #typeclass{
  66. background: #fff;
  67. }
  68. .form-group{
  69. margin-bottom: 0;
  70. }
  71. .bootstrap-select > .dropdown-toggle.bs-placeholder {
  72. background-color: #ffffff!important;
  73. border-color: #e5e6e7!important;
  74. }
  75. .filter-option{
  76. color: #676b6d;
  77. }
  78. .bootstrap-select > .dropdown-toggle.btn-default{
  79. background-color: #ffffff!important;
  80. border-color: #e5e6e7!important;
  81. color: #555;
  82. }
  83. </style>
  84. </head>
  85. <body class="gray-bg">
  86. <div class="daoHang clearfix"style="margin-bottom: 20px;">
  87. <div class="dhLeft">
  88. <sapn><i class="syIcon"></i>位置:<a href="javaScript:;" id="ReIndex">首页</a>&gt;<a href="javaScript:;">工单管理</a>&gt;<a href="" class="nowPosition">手工制单</a></sapn>
  89. </div>
  90. <div class="dhRight">
  91. <a href="#" title="刷新"><i class="fa fa-refresh"></i></a>
  92. </div>
  93. </div>
  94. <div class="clearfix wrapper wrapper-content animated fadeInRight">
  95. <div class="common">
  96. <!--客服部-->
  97. <table class="customerService">
  98. <tbody>
  99. <tr>
  100. <th>姓名:</th>
  101. <td>
  102. <div class="form-group">
  103. <input type="text" class="form-control" id="name" />
  104. </div>
  105. </td>
  106. <th>电话:</th>
  107. <td>
  108. <div class="form-group">
  109. <input type="text" class="form-control" id="tel"/>
  110. </div>
  111. </td>
  112. <th>来电单位:</th>
  113. <td>
  114. <select class="form-control selectpicker" id="comeCall_dep" data-live-search="true">
  115. <option value="">请选择来电单位</option>
  116. </select>
  117. </td>
  118. </tr>
  119. <tr>
  120. <th>反馈单位:</th>
  121. <td>
  122. <select class="form-control selectpicker" id="feedbackDep" data-live-search="true">
  123. <option value="">请选择反馈单位</option>
  124. </select>
  125. </td>
  126. <th>工单来源:</th>
  127. <td>
  128. <div class="form-group">
  129. <select class="form-control selectpicker" id="orderSource" data-live-search="true">
  130. <option value="">请选择工单来源</option>
  131. </select>
  132. </div>
  133. </td>
  134. <th>工单状态:</th>
  135. <td>
  136. <div class="form-group">
  137. <select name="" class="form-control" id="State"> </select>
  138. </div>
  139. </td>
  140. </tr>
  141. <tr>
  142. <th>工单类型:</th>
  143. <td>
  144. <div class="time-box">
  145. <i class="tub fa fa-caret-down down" style="color: #676b6d;"></i>
  146. <input class="form-control" type="text" id="typeclass" readonly="readonly">
  147. <input type="hidden" id="typeclassId"/>
  148. <div class="addTree treeList">
  149. <ul id="TreeDemo" class="ztree">
  150. </ul>
  151. </div>
  152. </div>
  153. </td>
  154. </tr>
  155. <tr>
  156. <th>反馈内容:</th>
  157. <td colspan="5">
  158. <textarea name="" rows="5" cols="" placeholder="请输入反馈内容..." id="feedBackCon"></textarea>
  159. </td>
  160. </tr>
  161. <tr>
  162. <th>快递信息:</th>
  163. <td colspan="5">
  164. <textarea name="" rows="" cols="" id="express" ></textarea>
  165. </td>
  166. </tr>
  167. <tr>
  168. <th>备注一:</th>
  169. <td colspan="5">
  170. <textarea name="" rows="" cols="" id="remark1" ></textarea>
  171. </td>
  172. </tr>
  173. <tr>
  174. <th>备注二:</th>
  175. <td colspan="5">
  176. <textarea name="" rows="" cols="" id="remark2" ></textarea>
  177. </td>
  178. </tr>
  179. <tr>
  180. <th>备注三:</th>
  181. <td colspan="5">
  182. <textarea name="" rows="" cols="" id="remark3" ></textarea>
  183. </td>
  184. </tr>
  185. <tr>
  186. <td colspan="6" style="text-align: center;">
  187. <button class="btns customerSubmit">保&nbsp;存</button>
  188. </td>
  189. </tr>
  190. </tbody>
  191. </table>
  192. <!--市场部-->
  193. <table class="market">
  194. <tbody>
  195. <tr>
  196. <th>姓名:</th>
  197. <td>
  198. <div class="form-group">
  199. <input type="text" class="form-control" id="name_market" />
  200. </div>
  201. </td>
  202. <th>电话:</th>
  203. <td>
  204. <div class="form-group">
  205. <input type="text" class="form-control" id="tel_market"/>
  206. </div>
  207. </td>
  208. <th>来电单位:</th>
  209. <td>
  210. <select class="form-control selectpicker" id="comeCall_dep_market" data-live-search="true">
  211. <option value="">请选择来电单位</option>
  212. </select>
  213. </td>
  214. </tr>
  215. <tr>
  216. <th>反馈单位:</th>
  217. <td>
  218. <select class="form-control selectpicker" id="feedbackDep_market" data-live-search="true">
  219. <option value="">请选择反馈单位</option>
  220. </select>
  221. </td>
  222. </tr>
  223. <tr>
  224. <th>备注内容:</th>
  225. <td colspan="5">
  226. <textarea name="" rows="" cols="" id="remark_market"></textarea>
  227. </td>
  228. </tr>
  229. <tr>
  230. <td colspan="6" style="text-align: center;">
  231. <button class="btns marketSubmit">保&nbsp;存</button>
  232. </td>
  233. </tr>
  234. </tbody>
  235. </table>
  236. </div>
  237. </div>
  238. <script src="../js/zTree/jquery.ztree.core.js"></script>
  239. <script src="../My97DatePicker/WdatePicker.js"></script>
  240. <script src="../js/bootstrap-select/js/bootstrap-select.js"></script>
  241. <script src="../js/WorkOrder/AddWorkOrder.js"></script>
  242. </body>
  243. </html>