Нет описания

contacts_modify.html 4.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. <script src="../Script/Common/huayi.load.js"></script>
  7. <script src="../Script/Common/huayi.config.js"></script>
  8. <link rel="stylesheet" href="../js/zTree/zTreeStyle.css" />
  9. <link rel="stylesheet" href="../css/init.css" />
  10. <link rel="stylesheet" type="text/css" href="./css/contacts_add_modify.css">
  11. <title>设备管理添加</title>
  12. </head>
  13. <body class="gray-bg">
  14. <div class="clearfix wrapper wrapper-content animated fadeInRight">
  15. <div class="common">
  16. <table class="customerService">
  17. <tbody>
  18. <tr>
  19. <th>用户姓名:</th>
  20. <td>
  21. <div class="form-group">
  22. <input type="text" class="form-control" id="addUserName" />
  23. </div>
  24. </td>
  25. <th>性别:</th>
  26. <td>
  27. <div class="form-group">
  28. <input type="text" class="form-control" id="addSex" />
  29. </div>
  30. </td>
  31. </tr>
  32. <tr>
  33. <th>省:</th>
  34. <td style="position: relative;">
  35. <div class="form-group">
  36. <select class="form-control" id="source">
  37. <option value ="">请选择</option>
  38. </select>
  39. </div>
  40. </td>
  41. <th>市:</th>
  42. <td style="position: relative;">
  43. <div class="form-group">
  44. <select class="form-control" id="type">
  45. <option value ="">请选择</option>
  46. </select>
  47. </div>
  48. </td>
  49. <th>区/县:</th>
  50. <td style="position: relative;">
  51. <div class="form-group">
  52. <select class="form-control" id="keyid">
  53. <option value ="">请选择</option>
  54. </select>
  55. </div>
  56. </td>
  57. </tr>
  58. <tr>
  59. <th>内线电话:</th>
  60. <td>
  61. <div class="form-group">
  62. <input type="text" class="form-control" id="addTelephone" onkeyup="this.value=this.value.replace(/\D/g,'')" />
  63. </div>
  64. </td>
  65. <th>手机:</th>
  66. <td>
  67. <div class="form-group">
  68. <input type="text" class="form-control" id="addMobile" onkeyup="this.value=this.value.replace(/\D/g,'')"/>
  69. </div>
  70. </td>
  71. <th>其他号码:</th>
  72. <td>
  73. <div class="form-group">
  74. <input type="text" class="form-control" id="addElseMobile" onkeyup="this.value=this.value.replace(/\D/g,'')" />
  75. </div>
  76. </td>
  77. </tr>
  78. <tr>
  79. <th>部门:</th>
  80. <td>
  81. <div class="inpBox form-group">
  82. <input type="text" class="inps inps2" readonly="readonly"/>
  83. <i class="drop-down"></i>
  84. <div class="add-tree">
  85. <ul id="departmentTree" class="ztree">
  86. </ul>
  87. </div>
  88. </div>
  89. </td>
  90. <th>职位:</th>
  91. <td>
  92. <div class="form-group">
  93. <input type="text" class="form-control" id="addPosition" />
  94. </div>
  95. </td>
  96. </tr>
  97. <tr>
  98. <th>备注:</th>
  99. <td colspan="6">
  100. <textarea rows="4" cols="" id="addNote" style="margin-top:10px;"></textarea>
  101. </td>
  102. </tr>
  103. <tr>
  104. <td colspan="8" style="text-align: center;">
  105. <button class="btns customerSubmit">确&nbsp;定</button>
  106. </td>
  107. </tr>
  108. </tbody>
  109. </table>
  110. </div>
  111. </div>
  112. <script src="../js/zTree/jquery.ztree.core.js"></script>
  113. <script src="./js/contacts_modify.js"></script>
  114. </body>
  115. </html>