45 lines
1.0 KiB
HTML
45 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
|
|
<head>
|
|
<th:block th:include="include :: header('关联合同')" />
|
|
</head>
|
|
<body class="gray-bg">
|
|
<div class="col-sm-12 select-table table-striped" >
|
|
<h2>查询结果</h2>
|
|
<h4 style="margin-top: 40px;">产品信息</h4>
|
|
<table>
|
|
<tr>
|
|
<th>硬件序列号</th>
|
|
<th>产品号</th>
|
|
<th>产品描述</th>
|
|
<th>产品线描述</th>
|
|
<th>区域</th>
|
|
</tr>
|
|
<tr>
|
|
<td>2131340A.CZ02300002M</td>
|
|
<td>313048.C</td>
|
|
<td>H3C Workspace 云桌面许可证</td>
|
|
<td>云产品</td>
|
|
<td>CN</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<th:block th:include="include :: footer" />
|
|
|
|
|
|
<script>
|
|
$(function() {
|
|
getData()
|
|
});
|
|
function getData() {
|
|
|
|
$.operate.get("/system/product/query",{isTable:0}, function (res){
|
|
|
|
})
|
|
}
|
|
|
|
|
|
</script>
|
|
</body>
|
|
|
|
</html> |