地质所 沉降监测网建设项目
chenhuan
2024-05-21 819c0b6478fb3385c8457cd03e04fdf0d3b90a70
javaweb-plus/javaweb-cms/src/main/resources/templates/geo/hole/edit.html
@@ -14,6 +14,16 @@
                    <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">
@@ -41,10 +51,7 @@
            <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">