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
35
36
37
<!doctype html>
<html>
<head>
[#include "/business/wechat/include/title.html" /]
[#include "/business/wechat/include/wheader.html" /]
</head>
 
<body>
<header class="kltit clearfix">
 
<a [#if RequestParameters.sh??&&RequestParameters.sh == 1] href="${base}/ewyw/ewWorkplan/ewrcxjShList.html"[#else] href="${base}/ewyw/ewWorkplan/ewmyRcxjList.html"[/#if] >
 
<span></span></a>提示</header>
<section class="OpeTips">
    [#if result == 1]
    <div>
    <span class="ok" ></span>操作成功!
    </div>
    [#else]
    <div>
    <span class="no" ></span>操作失败!
    </div>
   [/#if]
</section>
<button class="bluebtn bluebtnsmal2" onclick="queding()">确定</button>
<script type="text/javascript">
var sh = '${RequestParameters.sh}';
function queding(){
    if(sh == 1){
       window.location.href = "${base}/ewyw/ewWorkplan/ewrcxjShList.html";
    }else{
       window.location.href = "${base}/ewyw/ewWorkplan/ewmyRcxjList.html";
    }
}
</script>
</body>
</html>