地质所 沉降监测网建设项目
zmk
2024-05-22 28e168f05d3eb48223e69064188c6fce786442d4
javaweb-plus/javaweb-cms/src/main/resources/templates/geo/project/edit.html
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html lang="zh" xmlns:th="http://www.thymeleaf.org" >
<head>
    <th:block th:include="include :: header('修改项目')" />
    <th:block th:include="include :: header('修改场地')" />
    <th:block th:include="include :: select2-css" />
    <th:block th:include="include :: datetimepicker-css" />
</head>
@@ -10,15 +10,23 @@
        <form class="form-horizontal m" id="form-project-edit" th:object="${project}">
            <input name="ids" th:field="*{ids}" type="hidden">
            <div class="form-group">
                <label class="col-sm-3 control-label">项目编号:</label>
                <label class="col-sm-3 control-label">场地编号:</label>
                <div class="col-sm-8">
                    <input name="code" th:field="*{code}" class="form-control" type="text">
                </div>
            </div>
            <div class="form-group">    
                <label class="col-sm-3 control-label">项目名称:</label>
                <label class="col-sm-3 control-label">场地名称:</label>
                <div class="col-sm-8">
                    <input name="fullName" th:field="*{fullName}" class="form-control" type="text">
                </div>
            </div>
            <div class="form-group">
                <label class="col-sm-3 control-label">场地状态:</label>
                <div class="col-sm-8">
                    <select name="status" class="form-control m-b" th:with="type=${@dict.getType('project_status')}">
                        <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" th:field="*{status}"></option>
                    </select>
                </div>
            </div>
            <div class="form-group">
@@ -42,7 +50,7 @@
                </div>
            </div>
            <div class="form-group">
                <label class="col-sm-3 control-label">项目负责人:</label>
                <label class="col-sm-3 control-label">场地负责人:</label>
                <div class="col-sm-8">
                    <input name="leader" th:field="*{leader}" class="form-control" type="text">
                </div>
@@ -64,14 +72,14 @@
            <div class="form-group">
                <label class="col-sm-3 control-label">开始时间:</label>
                <div class="col-sm-8">
                    <input name="startTime"  th:field="*{startTime}" type="text" class="form-control" id="start-time" placeholder="选择项目起始时间">
                    <input name="startTime"  th:field="*{startTime}" type="text" class="form-control" id="start-time" placeholder="选择场地起始时间">
                </div>
            </div>
            <div class="form-group">
                <label class="col-sm-3 control-label">结束时间:</label>
                <div class="col-sm-8">
                    <input name="endTime"  th:field="*{endTime}" type="text" class="form-control" id="end-time" placeholder="选择项目结束时间">
                    <input name="endTime"  th:field="*{endTime}" type="text" class="form-control" id="end-time" placeholder="选择场地结束时间">
                </div>
            </div>