| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <script src="../Script/Common/huayi.load.js"></script>
- <script src="../Script/Common/huayi.config.js"></script>
- <link href="../js/bootstrap-select/css/bootstrap-select.css" rel="stylesheet" />
- <link rel="stylesheet" href="../js/zTree/zTreeStyle.css" />
- <link rel="stylesheet" href="../css/init.css" />
- <link rel="stylesheet" href="css/kehuManger.css" />
- <title></title>
- </head>
- <body>
- <div class="container-fluid">
- <div class="boxCon">
- <table>
- <tbody>
-
- <tr>
- <th>客户类型: </th>
- <td>
- <div class="form-group addJsz_select_cus">
- <select class="form-control" id="customerType" data-live-search="true">
- <option value="1">客户</option>
- <option value="2">专员</option>
- </select>
- <span class="addJsz_kong addJsz_posi">*</span>
- </div>
- </td>
- </tr>
- <tr>
- <th>客户名称: </th>
- <td>
- <input type="text" class="Customer" style="padding-left: 10px;"/>
- <span class="addJsz_kong" style="color: red;">*</span>
- </td>
- </tr>
- <tr>
- <th>电话: </th>
- <td>
- <input type="text" class="mobile" style="padding-left: 10px;" />
- </td>
- </tr>
- <tr>
- <th>区域:</th>
- <td>
- <div class="form-inline addJsz_select_cus">
- <div class="form-group">
- <input type="text" class="inps inps1" style="width: 180px;"/>
- <input type="text" class="inps2">
- <input type="text" class="inps3">
- <input type="text" class="inps4">
- <i class="xl xl_one"></i>
- <div class="addTree xlAdd">
- <ul id="addTreeDemo" class="ztree">
- </ul>
- </div>
- </div>
- </div>
- </td>
- </tr>
- </tbody>
- </table>
- <div style="text-align: center;"><button class="btns addCun">保存</button></div>
- </div>
- </div>
-
- <script src="../js/bootstrap-select/js/bootstrap-select.js"></script>
- <script src="../js/zTree/jquery.ztree.core.js"></script>
- <script src="js/addCustomer.js"></script>
- </body>
- </html>
|