From e98eeaaa5766511fdb8e6d5e412eb1c59d1f07ce Mon Sep 17 00:00:00 2001 From: heheng <475597332@qq.com> Date: 星期二, 24 六月 2025 10:24:43 +0800 Subject: [PATCH] 隐患来源功能外加仓吉基础数据定时上报 --- src/main/resources/templates/tr/hiddenDangerCheck/dangerRectify/editDangerRectify.html | 28 +++++++++++++++++++++++++--- 1 files changed, 25 insertions(+), 3 deletions(-) diff --git a/src/main/resources/templates/tr/hiddenDangerCheck/dangerRectify/editDangerRectify.html b/src/main/resources/templates/tr/hiddenDangerCheck/dangerRectify/editDangerRectify.html index bacfd08..5a80e2a 100644 --- a/src/main/resources/templates/tr/hiddenDangerCheck/dangerRectify/editDangerRectify.html +++ b/src/main/resources/templates/tr/hiddenDangerCheck/dangerRectify/editDangerRectify.html @@ -118,6 +118,17 @@ </div> </div> </div> + <div class="col-sm-6"> + <div class="form-group"> + <label class="col-sm-4 control-label">隐患来源:</label> + <div class="col-sm-8"> + <select th:field="*{dangerSrc}" class="form-control m-b" th:with="type=${@dict.getType('danger_source')}" readonly="readonly"> + <option value="" disabled>--请选择隐患来源--</option> + <option th:each="dict : ${type}" th:text="${dict.dictLabel}" th:value="${dict.dictValue}" disabled></option> + </select> + </div> + </div> + </div> </div> @@ -176,7 +187,16 @@ </div> </div> - + <div class="row"> + <div class="col-sm-6"> + <div class="form-group"> + <label class="col-sm-4 control-label ">隐患排查方法:</label> + <div class="col-sm-8"> + <input th:value="*{remark}" class="form-control" type="text" readonly="readonly"> + </div> + </div> + </div> + </div> <div class="row"> <div class="col-sm-6"> <div class="form-group"> @@ -371,8 +391,10 @@ <div class="form-group"> <label class="col-sm-3 control-label is-required">验收负责人:</label> <div class="col-sm-8"> - <input id="acceptUserName" name="acceptUserName" placeholder="选择验收负责人" class="form-control" type="text" onclick="selectAcceptUser()" maxlength="30" readonly="true" required> - <input id="acceptUserId" name="acceptUserId" type="hidden" > +<!-- <input id="acceptUserName" name="acceptUserName" placeholder="选择验收负责人" class="form-control" type="text" onclick="selectAcceptUser()" maxlength="30" readonly="true" required>--> +<!-- <input id="acceptUserId" name="acceptUserId" type="hidden" >--> + <input name="acceptUserName" th:value="*{registerUserName}" class="form-control" type="text" readonly="readonly"> + <input name="acceptUserId" th:value="*{registerUserId}" type="hidden"> </div> </div> -- Gitblit v1.9.2