| | |
| | | <label class="col-sm-4 control-label ">排查方式:</label> |
| | | <div class="col-sm-8" th:switch="*{checkType}"> |
| | | <input value="基础清单排查" class="form-control" type="text" readonly="readonly" th:case="1"> |
| | | <input value="选择风险单元清单排查" class="form-control" type="text" readonly="readonly" th:case="2"> |
| | | <input value="选择风险单元清单排查" class="form-control" type="text" readonly="readonly" th:case="*"> |
| | | <input value="选择风险单元清单排查" class="form-control" type="text" readonly="readonly" |
| | | th:case="2"> |
| | | <input value="选择风险单元清单排查" class="form-control" type="text" readonly="readonly" |
| | | th:case="*"> |
| | | </div> |
| | | </div> |
| | | </div> |
| | | <div class="col-sm-6"> |
| | | <div class="form-group"> |
| | | <label class="col-sm-3 control-label is-required">隐患来源:</label> |
| | | <div class="col-sm-8"> |
| | | <select name="dangerSrc" th:field="*{dangerSrc}" class="form-control m-b" |
| | | th:with="type=${@dict.getType('danger_source')}" |
| | | required readonly="readonly" disabled> |
| | | <option value="" disabled>--请选择隐患来源--</option> |
| | | <option th:each="dict : ${type}" th:text="${dict.dictLabel}" |
| | | th:value="${dict.dictValue}" disabled></option> |
| | | </select> |
| | | </div> |
| | | </div> |
| | | </div> |
| | |
| | | <div class="form-group"> |
| | | <label class="col-sm-4 control-label ">隐患名称:</label> |
| | | <div class="col-sm-8"> |
| | | <textarea th:field="*{dangerName}" class="form-control" type="text" rows="4" readonly="readonly"></textarea> |
| | | <textarea th:field="*{dangerName}" class="form-control" type="text" rows="4" |
| | | readonly="readonly"></textarea> |
| | | </div> |
| | | </div> |
| | | </div> |
| | |
| | | <div class="form-group"> |
| | | <label class="col-sm-4 control-label ">隐患描述:</label> |
| | | <div class="col-sm-8"> |
| | | <textarea th:field="*{dangerDescription}" class="form-control" type="text" rows="4" readonly="readonly"></textarea> |
| | | <textarea th:field="*{dangerDescription}" class="form-control" type="text" rows="4" |
| | | readonly="readonly"></textarea> |
| | | </div> |
| | | </div> |
| | | </div> |
| | |
| | | <div class="form-group showByDangerLevelChange"> |
| | | <label class="col-sm-3 control-label is-required">选择核查人:</label> |
| | | <div class="col-sm-8"> |
| | | <input id="examineUserName" name="examineUserName" placeholder="选择下一步隐患核查人" class="form-control" type="text" onclick="selectConfirmUser()" maxlength="30" readonly="true" required> |
| | | <input id="examineUserName" name="examineUserName" placeholder="选择下一步隐患核查人" |
| | | class="form-control" type="text" onclick="selectConfirmUser()" maxlength="30" readonly="true" |
| | | required> |
| | | <input id="examineUserId" name="examineUserId" type="hidden" > |
| | | </div> |
| | | </div> |