cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!doctype html>
<html>
<head>
    [#include "/business/wechat/include/title.html" /]
    [#include "/business/wechat/include/wheader.html" /]
    <script type="text/javascript" src="${common_static}/static/wechat/style/js/project.js"></script>
</head>
<body>
<header class="kltit tcenter"><label class="dropmenu"></label><a href="javascript:history.go(-1);"><span></span></a>知识库详情
 <div class="wlsdrop2">
        <a href="javascript:updstate();"><p class="qiyong">启用</p></a>
    </div>
</header>
<div class="nodate jy"><span>该知识已被禁用</span></div>
 
<script type="text/javascript">
var id = '${id}';
function updstate() {
        if(confirm('确定要启用吗?')){
            $.post("${base}/ewyw/ewKnowledge/updstate.html",{"id":id,"state":2},function(data,textStatus) {
                  if(data == 1){
                     popupTips("启用成功");
                     window.location.href="${base}/ewyw/ewKnowledge/ewKwinfo.html?ismanager=1&id="+id;
                  }else{
                     popupTips("启用失败");
                  }
            })
        }
    }
    
    
</script>
</body>
</html>