| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <!DOCTYPE HTML>
- <html xmlns:th="http://www.thymeleaf.org"
- xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
- layout:decorate="~{admin/common/common}">
- <head>
- <title>新增工业用地经办人</title>
- <style>
- label.error {
- left: 15px;
- top: 29px
- }
- .ke-container {
- width: 100% !important;
- }
- .ke-swfupload-body {
- height: 265px
- }
- .ke-dialog-body {
- height: 340px !important;
- }
- .ke-dialog-default {
- height: 410px !important;
- }
- </style>
- </head>
- <body layout:fragment="content">
- <article class="page-container">
- <form class="form form-horizontal" id="form-contact-add">
- <div class="row cl">
- <label class="form-label col-xs-4 col-sm-2"><span class="c-red"></span>所属部门:</label>
- <div class="formControls col-xs-8 col-sm-3">
- <span class="select-box">
- <select class="select" required th:name="did">
- <option value="">--请选择--</option>
- <option value="item" th:each="item : ${arrayList}" th:value="${item.id}" th:text="${item.name}">
- </option>
- </select>
- </span>
- </div>
- </div>
- <div class="row cl">
- <label class="form-label col-xs-4 col-sm-2"><span>联系人:</span></label>
- <div class="formControls col-xs-8 col-sm-3">
- <input type="text" required class="input-text" th:id="contact_name" th:name="contact_name"/>
- </div>
- </div>
-
- <div class="row cl">
- <label class="form-label col-xs-2 col-sm-2"><span class="c-red"></span>联系方式:</label>
- <div class="formControls col-xs-10 col-sm-3">
- <input type="text" required isTel="true" class="input-text" th:id="phone" th:name="phone"/>
- </div>
- </div>
-
- <div class="row cl">
- <div class="col-xs-8 col-sm-9 col-xs-offset-4 col-sm-offset-2">
- <button class="btn btn-primary radius" type="submit"> <i class="Hui-iconfont"></i>新增</button>
- <button onClick="removeIframe();" class="btn btn-default radius" type="button"> 取消 </button>
- </div>
- </div>
- </form>
- </article>
- <script type="text/javascript" th:src="@{/js/company/contactManagement/contactManagement_add.js}"></script>
- <script th:inline="javascript">
- /**
- * 取消
- */
- function removeIframe() {
- var index = parent.layer.getFrameIndex(window.name);
- parent.layer.close(index);
- }
-
-
-
- </script>
- </body>
- </html>
|