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.
67 lines
2.6 KiB
67 lines
2.6 KiB
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>添加--车辆管理</title>
|
|
<meta name="renderer" content="webkit">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="format-detection" content="telephone=no">
|
|
<link rel="stylesheet" href="../../layui/css/layui.css" media="all" />
|
|
<link href="../../css/newtheme/layerextend.css" rel="stylesheet" media="all" />
|
|
<link rel="stylesheet" href="../../css/public.css" media="all" />
|
|
<link rel="stylesheet" href="../../iconfont/iconfont.css" media="all" />
|
|
<style>
|
|
/*.newsinfo .newstitle {
|
|
font-size: 20px;
|
|
text-align: center;
|
|
padding: 20px 0px;
|
|
line-height: 30px;
|
|
color: #333;
|
|
}*/
|
|
/*.newsinfo .newsdate {
|
|
border-bottom: 1px dashed #CCCCCC;
|
|
padding-bottom: 20px;
|
|
font-size: 14px;
|
|
text-align: center;
|
|
color: #989898;
|
|
}
|
|
.summary {
|
|
padding: 20px 0;
|
|
line-height: 30px;
|
|
}*/
|
|
</style>
|
|
</head>
|
|
<body class="childrenBody">
|
|
<form class="layui-form" style="width: 90%;padding: 0 5%;">
|
|
<div class="grzx-wdks">
|
|
<div class="rcgl-con2">
|
|
<div class="newsinfo">
|
|
<div class="newstitle"></div>
|
|
<div class="newsdate"></div>
|
|
<div class="summary"></div>
|
|
<div id="newscont" class="newscont"> </div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
<script src="../../js/jquery-2.1.3.min.js" type="text/javascript"></script>
|
|
<script type="text/javascript" src="../../layui/layui.js"></script>
|
|
<script type="text/javascript" src="../../js/jq_extend.js"></script>
|
|
<script type="text/javascript">
|
|
var id = $.getUrlVar("id");
|
|
$.ajax({
|
|
type: "post",
|
|
url: "../../ashx/ZYOaKnolageHandler.ashx",
|
|
data: { Action: "getArtContById", id: id },
|
|
success: function (res) {
|
|
res = res.replaceAll("${shuangyinhao}", "\"");
|
|
res = res.replaceAll("${maohao}", ":");
|
|
$("#newscont").html(res);
|
|
}
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|