<!doctype html>
|
<html>
|
<head>
|
[#include "/business/wechat/include/title.html" /]
|
[#include "/business/wechat/include/wheader.html" /]
|
</head>
|
|
<body>
|
<header class="kltit">
|
<a href="javascript:history.go(-1);"><span></span></a>知识审核
|
|
</header>
|
<section class="wlresponse">
|
<p>
|
<span>审核结果</span>
|
<label><select class="select" id="state" name="state">
|
<option value="${Constants.KM_LIBRARY_TEMP_AUDIT_STATE_SHTG}">审核通过</option>
|
<option value="${Constants.KM_LIBRARY_TEMP_AUDIT_STATE_SHBTG}">审核不通过</option>
|
</select></label>
|
</p>
|
<p>
|
<span>备注</span>
|
<i><textarea name="note" id="note" cols="" rows="3" class="event-text" ></textarea></i>
|
</p>
|
<button class="bluebtn bluebtnsmal2" onclick="checkSubmit();">确定</button>
|
</section>
|
</body>
|
<script type="text/javascript">
|
|
function checkSubmit(){
|
var state = $("#state").val();
|
var note = $.trim($("#note").val());
|
$.post("${base}/ewyw/ewKnowledge/saveKnowledgeSh.html",{'id':'${id}','state':state,'note':note},function(data,textStatus) {
|
if(data == '1') {
|
window.location.href = "${base}/ewyw/ewKnowledge/ewoption.html?wt=3";
|
} else {
|
popupTips("操作失败", 2000);
|
}
|
});
|
}
|
</script>
|
</html>
|