| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <script src="../Script/Common/huayi.load.js"></script>
- <script src="../Script/Common/huayi.config.js"></script>
- <link rel="stylesheet" href="../js/zTree/zTreeStyle.css" />
- <link rel="stylesheet" href="../css/init.css" />
- <link rel="stylesheet" type="text/css" href="./css/contacts_add_modify.css">
- <title>设备管理添加</title>
- </head>
- <body class="gray-bg">
- <div class="clearfix wrapper wrapper-content animated fadeInRight">
- <div class="common">
- <table class="customerService">
- <tbody>
- <tr>
- <th>用户姓名:</th>
- <td>
- <div class="form-group">
- <input type="text" class="form-control" id="addUserName" />
- </div>
- </td>
- <th>性别:</th>
- <td>
- <div class="form-group">
- <input type="text" class="form-control" id="addSex" />
- </div>
- </td>
- </tr>
- <tr>
- <th>省:</th>
- <td style="position: relative;">
- <div class="form-group">
- <select class="form-control" id="source">
- <option value ="">请选择</option>
- </select>
- </div>
- </td>
- <th>市:</th>
- <td style="position: relative;">
- <div class="form-group">
- <select class="form-control" id="type">
- <option value ="">请选择</option>
- </select>
- </div>
- </td>
- <th>区/县:</th>
- <td style="position: relative;">
- <div class="form-group">
- <select class="form-control" id="keyid">
- <option value ="">请选择</option>
- </select>
- </div>
- </td>
- </tr>
- <tr>
- <th>内线电话:</th>
- <td>
- <div class="form-group">
- <input type="text" class="form-control" id="addTelephone" onkeyup="this.value=this.value.replace(/\D/g,'')" />
- </div>
- </td>
- <th>手机:</th>
- <td>
- <div class="form-group">
- <input type="text" class="form-control" id="addMobile" onkeyup="this.value=this.value.replace(/\D/g,'')"/>
- </div>
- </td>
- <th>其他号码:</th>
- <td>
- <div class="form-group">
- <input type="text" class="form-control" id="addElseMobile" onkeyup="this.value=this.value.replace(/\D/g,'')" />
- </div>
- </td>
- </tr>
- <tr>
- <th>部门:</th>
- <td>
- <div class="inpBox form-group">
- <input type="text" class="inps inps2" readonly="readonly"/>
- <i class="drop-down"></i>
- <div class="add-tree">
- <ul id="departmentTree" class="ztree">
- </ul>
- </div>
- </div>
- </td>
- <th>职位:</th>
- <td>
- <div class="form-group">
- <input type="text" class="form-control" id="addPosition" />
- </div>
- </td>
- </tr>
- <tr>
- <th>备注:</th>
- <td colspan="6">
- <textarea rows="4" cols="" id="addNote" style="margin-top:10px;"></textarea>
- </td>
- </tr>
- <tr>
- <td colspan="8" style="text-align: center;">
- <button class="btns customerSubmit">确 定</button>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
-
- <script src="../js/zTree/jquery.ztree.core.js"></script>
- <script src="./js/contacts_modify.js"></script>
- </body>
- </html>
|