| | |
| | | <input name="code" th:field="*{code}" class="form-control" type="text" disabled="disabled"> |
| | | </div> |
| | | </div> |
| | | <div class="form-group"> |
| | | <label class="col-sm-3 control-label">钻孔类型:</label> |
| | | <div class="col-sm-8"> |
| | | <select name="type" class="form-control m-b" th:with="type=${@dict.getType('hole_type')}"> |
| | | <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{type}"></option> |
| | | </select> |
| | | </div> |
| | | </div> |
| | | |
| | | |
| | | <div class="form-group"> |
| | | <label class="col-sm-3 control-label">孔口高程(m):</label> |
| | | <div class="col-sm-8"> |
| | |
| | | <div class="form-group"> |
| | | <label class="col-sm-3 control-label">钻孔状态:</label> |
| | | <div class="col-sm-8"> |
| | | <div class="radio-box" th:each="dict : ${@dict.getType('hole_status')}"> |
| | | <input type="radio" th:id="${'status_' + dict.dictCode}" name="status" th:value="${dict.dictValue}" th:field="*{status}" > |
| | | <label th:for="${'status_' + dict.dictCode}" th:text="${dict.dictLabel}"></label> |
| | | </div> |
| | | <input name="status" th:field="*{status}" class="form-control" type="text" > |
| | | </div> |
| | | </div> |
| | | <div class="form-group"> |