Açıklama Yok

Xga.html 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  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 href="../css/WorkOrder/Search.css" rel="stylesheet">
  10. <link rel="stylesheet" href="../css/WorkOrder/jquery.editable-select.css" />
  11. <link rel="stylesheet" href="../js/comboSelect/combo.select.css" />
  12. <link rel="stylesheet" href="../css/init.css" />
  13. <link rel="stylesheet" href="../css/WorkOrder/NewAddWorkOrder.css" />
  14. <title>手工制单</title>
  15. <style>
  16. ul li {
  17. float: initial;
  18. list-style: none;
  19. }
  20. .common {
  21. width: 100%;
  22. text-align: center;
  23. padding: 10px 15px;
  24. }
  25. .common table {
  26. width: 100%;
  27. }
  28. .common table th {
  29. padding: 5px 8px 5px 0;
  30. text-align: right;
  31. }
  32. .common table td {
  33. padding: 6px 0 5px 10px;
  34. text-align: left;
  35. color: #717171;
  36. line-height: 200%;
  37. }
  38. .common table td textarea {
  39. width: 100%;
  40. vertical-align: middle;
  41. resize: none;
  42. outline: none;
  43. }
  44. .time-box {
  45. display: inline-block;
  46. position: relative;
  47. width: 100%;
  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. .addTree1 {
  66. background: #fff;
  67. position: absolute;
  68. width: 100%;
  69. border: 1px solid darkgrey;
  70. right: 0;
  71. top: 26px;
  72. z-index: 10;
  73. display: none;
  74. height: 100px;
  75. overflow-y: auto;
  76. }
  77. .form-group {
  78. margin-bottom: 0;
  79. }
  80. .filter-option {
  81. color: #676b6d;
  82. }
  83. .testInput-list {
  84. position: absolute;
  85. z-index: 999;
  86. border: 1px solid rgb(204, 204, 204);
  87. background-color: rgb(255, 255, 255);
  88. z-index: 99999;
  89. padding-left: 0;
  90. width: 97.6%;
  91. display: none;
  92. height: 400px;
  93. overflow-y: auto;
  94. }
  95. .testInput-list li {
  96. padding: 5px;
  97. }
  98. .testInput-list li:hover {
  99. background-color: #E43926;
  100. color: #fff;
  101. }
  102. .ke-container {
  103. width: 100% !important;
  104. }
  105. button[disabled] {
  106. background-color: #999;
  107. }
  108. .complainDiv2{
  109. display: none;
  110. }
  111. .deal{
  112. display: none;
  113. }
  114. .r_order_type {
  115. text-align: left;
  116. }
  117. .radio-inline {
  118. padding-left: 2px;
  119. }
  120. .radio-input{
  121. vertical-align: -2px;
  122. }
  123. #order_isover{
  124. width: 100%;
  125. }
  126. #isAssign{
  127. width: 100%;
  128. }
  129. #duplicate{
  130. width: 100%;
  131. }
  132. </style>
  133. </head>
  134. <body class="gray-bg">
  135. <div class="clearfix wrapper wrapper-content animated fadeInRight">
  136. <div class="common">
  137. <table class="customerService">
  138. <tbody>
  139. <tr>
  140. <th>工单类型:</th>
  141. <td>
  142. <div id="order_isover" class="col-md-6 r_order_type">
  143. <input class="radio-input" id="workOrderRadioAdvisory" type="radio" name="type" value="1" checked="checked">
  144. <label class="radio-inline" for="workOrderRadioAdvisory">
  145. 咨询
  146. </label>
  147. <input class="radio-input" id="workOrderRadioComplaint" type="radio" name="type" value="2" >
  148. <label class="radio-inline" for="workOrderRadioComplaint">
  149. 投诉
  150. </label>
  151. <input class="radio-input" id="workOrderRadioRepeat" type="radio" name="type" value="3" />
  152. <label class="radio-inline" for="workOrderRadioRepeat">
  153. 重复
  154. </label>
  155. <input class="radio-input" id="workOrderSpotCheck" type="radio" name="type" value="4" />
  156. <label class="radio-inline" for="workOrderSpotCheck">
  157. 抽检
  158. </label>
  159. </div>
  160. </td>
  161. </tr>
  162. <tr class="workOrderTypeForm">
  163. <th>工单来源:</th>
  164. <td>
  165. <div class="form-group">
  166. <input type="text" class="form-control" id="workOrderSource" disabled="disabled"/>
  167. </div>
  168. </td>
  169. <th>工单编号:</th>
  170. <td>
  171. <div class="form-group">
  172. <input type="text" class="form-control" id="workOrderId" disabled="disabled"/>
  173. </div>
  174. </td>
  175. </tr>
  176. <tr class="workOrderTypeForm">
  177. <th><i style="color: #FF0000">*&nbsp;</i>姓名:</th>
  178. <td>
  179. <div class="form-group">
  180. <input type="text" class="form-control" id="name" maxlength="8" />
  181. </div>
  182. </td>
  183. <th><i style="color: #FF0000">*&nbsp;</i>电话:</th>
  184. <td>
  185. <div class="form-group">
  186. <input type="text" class="form-control" id="tel" />
  187. </div>
  188. </td>
  189. </tr>
  190. <tr class="workOrderTypeForm">
  191. <th><i class="complaintWorkOrderRequired" style="display: none; color: #FF0000;">*&nbsp;</i>省:</th>
  192. <td style="position: relative;">
  193. <div class="form-group">
  194. <select class="form-control" id="source">
  195. <option value ="">请选择</option>
  196. </select>
  197. </div>
  198. </td>
  199. <th>市:</th>
  200. <td style="position: relative;">
  201. <div class="form-group">
  202. <select class="form-control" id="type">
  203. <option value ="">请选择</option>
  204. </select>
  205. </div>
  206. </td>
  207. <th>区/县:</th>
  208. <td style="position: relative;">
  209. <div class="form-group">
  210. <input type="text" class="form-control" id="keyid" list="keyidDataList" placeholder="请输入"/>
  211. <datalist id="keyidDataList">
  212. </datalist>
  213. </div>
  214. </td>
  215. <th>详细地址:</th>
  216. <td>
  217. <div class="form-group">
  218. <input type="text" class="form-control" id="addressDescription" />
  219. </div>
  220. </td>
  221. </tr>
  222. <tr class="workOrderTypeForm">
  223. <th><i class="complaintWorkOrderRequired" style="display: none; color: #FF0000;">*&nbsp;</i>产品代码:</th>
  224. <td>
  225. <div class="form-group">
  226. <select class="form-control" id="productType">
  227. <option value ="">请选择</option>
  228. </select>
  229. </div>
  230. </td>
  231. <th><i class="complaintWorkOrderRequired" style="display: none; color: #FF0000;">*&nbsp;</i>产品名称:</th>
  232. <td>
  233. <div class="form-group">
  234. <input type="text" class="form-control" id="productName" />
  235. </div>
  236. </td>
  237. <th><i class="complaintWorkOrderRequired" style="display: none; color: #FF0000;">*&nbsp;</i>规格:</th>
  238. <td>
  239. <div class="form-group">
  240. <input type="text" class="form-control" id="specification" />
  241. </div>
  242. </td>
  243. <th><i class="complaintWorkOrderRequired" style="display: none; color: #FF0000;">*&nbsp;</i>生产日期:</th>
  244. <td>
  245. <div class="form-group">
  246. <input type="text" class="form-control" id="productDate" placeholder="时间格式YYYY.MM.DD"/>
  247. </div>
  248. </td>
  249. </tr>
  250. <tr class="workOrderTypeForm">
  251. <th>产品编码:</th>
  252. <td>
  253. <div class="form-group">
  254. <input type="text" class="form-control" id="productNumber" />
  255. </div>
  256. </td>
  257. <th><i class="complaintWorkOrderRequired" style="display: none; color: #FF0000;">*&nbsp;</i>生产厂家:</th>
  258. <td>
  259. <div class="form-group">
  260. <input type="text" class="form-control" id="productFactory" list="productFactoryDataList" placeholder="请输入"/>
  261. <datalist id="productFactoryDataList">
  262. </datalist>
  263. </div>
  264. </td>
  265. <th><i class="complaintWorkOrderRequired" style="display: none; color: #FF0000;">*&nbsp;</i>问题代码:</th>
  266. <td>
  267. <div class="form-group">
  268. <select class="form-control" id="problemCode">
  269. <option value ="">请选择</option>
  270. </select>
  271. </div>
  272. </td>
  273. <th><i style="color: #FF0000">*&nbsp;</i>质量问题:</th>
  274. <td>
  275. <div class="form-group">
  276. <input type="text" class="form-control" id="qualityProblem" />
  277. </div>
  278. </td>
  279. </tr>
  280. <tr class="workOrderTypeForm">
  281. <th>工单级别:</th>
  282. <td>
  283. <div class="form-group">
  284. <select class="form-control" id="dealTimely">
  285. <option value ="">请选择</option>
  286. </select>
  287. </div>
  288. </td>
  289. <th class="reasonTitle">原因:</th>
  290. <td class="reasonInput">
  291. <div class="form-group">
  292. <select class="form-control" id="reason">
  293. <option value ="">请选择</option>
  294. </select>
  295. </div>
  296. </td>
  297. </tr>
  298. <tr class="workOrderTypeForm">
  299. <th>备注:</th>
  300. <td colspan="7">
  301. <textarea name="" rows="5" cols="" placeholder="" id="remark" style="margin-top:10px;"></textarea>
  302. </td>
  303. </tr>
  304. <tr class="workOrderTypeSpotCheck">
  305. <th><i style="color: #FF0000;">*&nbsp;</i>抽检日期:</th>
  306. <td>
  307. <input type="text" class="form-control" id="spotCheckDate" />
  308. </td>
  309. <th><i style="color: #FF0000;">*&nbsp;</i>抽检单位:</th>
  310. <td>
  311. <input type="text" class="form-control" id="spotCheckCompany" />
  312. </td>
  313. <th><i style="color: #FF0000;">*&nbsp;</i>抽检类型:</th>
  314. <td>
  315. <input type="text" class="form-control" id="spotCheckSamplingtype" />
  316. </td>
  317. <th><i style="color: #FF0000;">*&nbsp;</i>抽样客户/门店:</th>
  318. <td>
  319. <input type="text" class="form-control" id="spotCheckSalesroom" />
  320. </td>
  321. </tr>
  322. <tr class="workOrderTypeSpotCheck">
  323. <th><i style="color: #FF0000;">*&nbsp;</i>抽检产品:</th>
  324. <td>
  325. <input type="text" class="form-control" id="spotCheckSamplingproducts" />
  326. </td>
  327. <th><i style="color: #FF0000;">*&nbsp;</i>生产日期:</th>
  328. <td>
  329. <input type="text" class="form-control" id="spotCheckProductDate" placeholder="时间格式YYYY.MM.DD" />
  330. </td>
  331. <th><i style="color: #FF0000;">*&nbsp;</i>涉及工厂:</th>
  332. <td>
  333. <div class="form-group">
  334. <input type="text" class="form-control" id="spotCheckFactories" list="spotCheckFactoriesDataList" placeholder="请输入"/>
  335. <datalist id="spotCheckFactoriesDataList">
  336. </datalist>
  337. </div>
  338. </td>
  339. <th><i style="color: #FF0000;">*&nbsp;</i>电话:</th>
  340. <td>
  341. <input type="text" class="form-control" id="spotCheckCusPhone" />
  342. </td>
  343. </tr>
  344. <tr class="workOrderTypeSpotCheck">
  345. <th><i style="color: #FF0000;">*&nbsp;</i>备注:</th>
  346. <td colspan="7">
  347. <textarea name="" rows="5" cols="" placeholder="" id="spotCheckRemark" style="margin-top:10px;"></textarea>
  348. </td>
  349. </tr>
  350. <tr>
  351. <td colspan="8" style="text-align: center;">
  352. <button class="btns customerSubmit">保&nbsp;存</button>
  353. </td>
  354. </tr>
  355. </tbody>
  356. </table>
  357. </div>
  358. </div>
  359. <script src="../js/zTree/jquery.ztree.core.js"></script>
  360. <script src="../js/bootstrap-select/js/bootstrap-select.js"></script>
  361. <script src="../js/WorkOrder/jquery.editable-select.js"></script>
  362. <script src="../js/comboSelect/jquery.combo.select.js"></script>
  363. <script src="../js/laydate/laydate.js"></script>
  364. <script src="../js/WorkOrder/XgWork.js"></script>
  365. </body>
  366. </html>