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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!doctype html>
<html>
<head>
<meta charset="utf-8">
[#include "/business/wechat/include/title.html" /]
[#include "/business/wechat/include/wheader.html" /]
</head>
 
<body class="user_center">
    <header>
        <input type="text" placeholder="请输入关键字" id="kw"/>
        <a style="display:block;" href="javascript:search();"></a>
    </header>
    <div class="banner">
        <a><img src="${common_static}/static/wechat/images/bannerleft.gif" alt="" /></a>
        <a><img src="${common_static}/static/wechat/images/baneright.gif" alt="" /></a>
    </div>
    <nav class="clearfix">
        <a href="${base}/uwyw/uworkplan.html"><span><img src="${common_static}/static/wechat/style/images/icon-12.png" alt=""/></span><font>预防性维护</font></a>
        <a href="${base}/uwyw/uzcyw.html"><span><img src="${common_static}/static/wechat/style/images/icon-3.png" alt=""/></span><font>驻场运维</font></a>
        <a href="${base}/uwyw/uknow.html"><span><img src="${common_static}/static/wechat/style/images/icon-5.png" alt=""/></span><font>${Constants.CUSTOMER_CONSTANTS}知识库</font></a>
        <a href="${base}/uwyw/uconfig.html"><span><img src="${common_static}/static/wechat/style/images/icon-9.png" alt=""/></span><font>配置管理</font></a>
        <a href="${base}/uwyw/uworkReport.html"><span><img src="${common_static}/static/wechat/style/images/icon-8.png" alt=""/></span><font>工作报告</font></a>
        <a href="${base}/uwyw/umsgQuery.html"><span><img src="${common_static}/static/wechat/style/images/icon-10.png" alt=""/></span><font>信息查询</font></a>
        <a href="${base}/uwyw/ustatis.html"><span><img src="${common_static}/static/wechat/style/images/icon-7.png" alt=""/></span><font>统计分析</font></a>
        <a href="${base}/uwyw/uywgl.html"><span><img src="${common_static}/static/wechat/style/images/icon-11.png" alt=""/></span><font>运维管理</font></a>
        <a href="${base}/uwyw/urepair.html"><span><img src="${common_static}/static/wechat/style/images/icon-13.png" alt=""/></span><font>一键报修</font></a>
    </nav>
    <div class="going_order">
        <h3><font>进行中的工单</font></h3>
           <div id="main"></div>
        <div id="page" class="loadmore"></div>
    </div>
    
    <script type="text/javascript">
    function query() {
        var $main = $("#main");
        var $page = $("#page");
         var param = {"flowstate":1};
         $page.pagination({
            durl:"${base}/uwyw/uorder/umyorderData.html",
            curl:"${base}/uwyw/uorder/umyorderCount.html",
            pdiv:"page",
            mdiv:"main",
            perPage : 5,
            param:param
        });
    }
    $(function() {
        query();
    })
    
    function search() {
        var kw = $.trim($("#kw").val());
        if($.util.isEmpty(kw) || kw.length == 1) {
            popupTips("关键词至少为2个字");
            return;
        }
        
        kw = $.util.encode($.util.encode(kw));
        window.location.href="${base}/uwyw/ufulltext/usearch.html?kw="+kw;
        
    }
    </script>
    
    [#include "/business/wechat/include/ufooter.html" /]
</body>
</html>