parent
eccf969c14
commit
a1c8e44b88
@ -0,0 +1,101 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title></title>
|
||||
<link rel="stylesheet" href="../../../../component/pear/css/pear.css" />
|
||||
<style>
|
||||
html,
|
||||
body,
|
||||
form {
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.layui-row {
|
||||
width: 800px;
|
||||
margin: 10px auto;
|
||||
}
|
||||
|
||||
.text {
|
||||
|
||||
display: block;
|
||||
padding: 9px 15px;
|
||||
width: 230px;
|
||||
font-weight: 400;
|
||||
line-height: 20px;
|
||||
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
|
||||
|
||||
<div class="layui-row" style="margin-top: 20px;">
|
||||
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label" style="width: 115px !important;">审核人:</label>
|
||||
<div class="layui-input-block">
|
||||
<span class="text">长春市教育技术装备管理员</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label" style="width: 115px !important;">退回时间:</label>
|
||||
<div class="layui-input-block">
|
||||
<span class="text" id="a1"></span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="layui-form-item">
|
||||
<label class="layui-form-label" style="width: 115px !important;">审核意见:</label>
|
||||
<div class="layui-input-block">
|
||||
<span class="text" id="a2"></span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<script src="../../../../component/layui/layui.js"></script>
|
||||
<script src="../../../../component/pear/pear.js"></script>
|
||||
|
||||
<script>
|
||||
layui.use(function () {
|
||||
var form = layui.form;
|
||||
var $ = layui.jquery;
|
||||
|
||||
|
||||
$.ajax({
|
||||
type: "GET",
|
||||
async: false,
|
||||
url: "/QingLong/zbdc/CheckViewByArea",
|
||||
success: function (res) {
|
||||
$("#a1").html(" " + res.data.create_time);
|
||||
$("#a2").html(" " + res.data.message);
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Reference in new issue