You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
2.2 KiB
101 lines
2.2 KiB
<!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: "/dsBase/zbdc/CheckViewRefuseMessage",
|
|
success: function (res) {
|
|
$("#a1").html(" " + res.data.create_time);
|
|
$("#a2").html(" " + res.data.message);
|
|
}
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
});
|
|
</script>
|
|
</body>
|
|
|
|
</html> |