<!DOCTYPE html>
|
<html>
|
<head>
|
<div th:replace="common/header.html"></div>
|
|
</head>
|
<body th:class="${application.sidebarCollapse}">
|
<div th:replace="common/chart.html"></div>
|
|
<div class="wrapper">
|
|
<div th:replace="common/navbar.html"></div>
|
|
<div th:replace="common/aside.html"></div>
|
|
<!-- Content Wrapper. Contains page content -->
|
<div class="content-wrapper" style="font-size:0.90rem">
|
<!-- Content Header (Page header) -->
|
<section class="content-header">
|
<div class="container-fluid">
|
<div class="row mb-2">
|
<div class="col-sm-6">
|
<h1></h1>
|
</div>
|
<div class="col-sm-6">
|
<ol class="breadcrumb float-sm-right">
|
<li class="breadcrumb-item active"></li>
|
</ol>
|
</div>
|
</div>
|
</div><!-- /.container-fluid -->
|
</section>
|
|
<!-- Main content -->
|
<section class="content">
|
<div class="container-fluid">
|
<div class="row">
|
|
<div class="col-md-10">
|
<div class="card card-primary">
|
<div class="card-header">
|
<h3 class="card-title">查看备件更换</h3>
|
<div class=" float-sm-right">
|
<a href="javascript:history.back()">返回</a>
|
</div>
|
</div>
|
<!-- /.card-header -->
|
<!-- form start -->
|
<form role="form" id="form1" th:action="@{'/failurelogging/save'}">
|
<input type="hidden" name="id" th:value="${failurelogging.id}"/>
|
<div class="card-body">
|
<div class="row">
|
<div class="col-md-6">
|
<div class="form-group">
|
<label><font color="red">*</font>旧设备名称</label>
|
<div th:text="${failurelogging.oldDeviceName}" ></div>
|
</div>
|
<div class="form-group">
|
<label>旧设备ip</label>
|
<div th:text="${failurelogging.oldDeviceIp}" ></div>
|
</div>
|
<div class="form-group">
|
<label>旧设备型号</label>
|
<div th:text="${failurelogging.oldDeviceModel}" ></div>
|
</div>
|
<div class="form-group">
|
<label>新设备名称</label>
|
<div th:text="${failurelogging.newDeviceName}" ></div>
|
</div>
|
|
</div>
|
<div class="col-md-6">
|
<div class="form-group">
|
<label><font color="red">*</font>新设备ip</label>
|
<div th:text="${failurelogging.newDeviceIp}" ></div>
|
</div>
|
|
<div class="form-group">
|
<label>新设备型号</label>
|
<div th:text="${failurelogging.newDeviceModel}" ></div>
|
</div>
|
<div class="form-group">
|
<label>更换人</label>
|
<div th:text="${failurelogging.personName}" ></div>
|
</div>
|
<div class="form-group">
|
<label>更换时间</label>
|
<div th:text="${failurelogging.personDate}" ></div>
|
</div>
|
|
</div>
|
|
</div>
|
</div>
|
<!-- /.card-body -->
|
</form>
|
<!-- /.card-body -->
|
</div>
|
<!-- /.card -->
|
|
|
</div>
|
|
</div>
|
</div>
|
</section>
|
</div>
|
|
|
<div th:replace="common/footer.html"></div>
|
|
</div>
|
<!-- ./wrapper -->
|
<link rel="stylesheet" th:href="@{'/static/js/jQuery/validationEngine.jquery.css'}" type="text/css"/>
|
<script th:src="@{'/static/js/jQuery/jquery.validationEngine-zh_CN.js'}" type="text/javascript" charset="utf-8"></script>
|
<script th:src="@{'/static/js/jQuery/jquery.validationEngine.js'}" type="text/javascript" charset="utf-8"></script>
|
<script th:inline="javascript">
|
|
function goback() {
|
history.back();
|
}
|
</script>
|
</body>
|
</html>
|