admin
2019-07-11 3824cbcaec6e6c67418d5280a53e9c2fedeef6f9
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
<!DOCTYPE html>
<html lang="zh-cn">
 
    <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title>订单管理</title>
        <link href="css/bootstrap.min.css" rel="stylesheet">
        <link href="css/maincontent.css" rel="stylesheet">
        <!--[if lt IE 9]>
      <script src="js/html5shiv.js"></script>
      <script src="js/respond.min.js"></script>
    <![endif]-->
        <style>
            .img {
                width: 120px;
                height: 120px;
            }
        </style>
    </head>
 
    <body>
        <nav class="navbar navbar-default navbar-fixed-top" role="navigation">
        </nav>
        <div id="mainbody">
            <div id="sidebar">
                <dl>
                </dl>
            </div>
            <div id="neirong">
                <div class="erjidh">
                    <table class="table">
                        <tbody>
                            <tr>
                                <td>
                                    <form class="form-inline" role="form">
                                        <div class="form-group" role="search">
                                            <input type="text" class="form-control searchText" style="width:200px;" placeholder="按用户昵称/ID/订单号搜索">
                                        </div>
                                        <button type="button" class="btn btn-default searchBtn">搜索</button>
                                    </form>
                                </td>
                            </tr>
                        </tbody>
                    </table>
                </div>
                <div class="zhuti">
                    <div class="zhutisousuo">
                        <table class="table">
                            <thead>
                                <tr>
                                    <th width="10%">订单编号</th>
                                    <th width="9%">订单号</th>
                                    <th width="14%">下单时间</th>
                                    <th width="15%">用户头像</th>
                                    <th width="14%">昵称</th>
                                    <th width="11%">ID</th>
                                    <th width="9%">订单金额(不含红包)</th>
                                    <th width="11%">返利金额</th>
                                    <th width="7">订单状态</th>
                                </tr>
                            </thead>
                        </table>
                    </div>
                    <div class="liebiao">
                        <table class="table">
                            <tbody>
                                <tr>
                                    <td  width="10%" style="text-align:center;line-height:102px;">
                                        <div class="id">
                                        </div>
                                    </td>
                                    <td  width="9%" style="text-align:center;line-height:102px;">
                                        <div class="orderId">
                                        </div>
                                    </td>
                                    <td  width="14%" style="text-align:center;line-height:102px;">
                                        <div class="createtime">
                                        </div>
                                    </td>    
                                    <td width="15%">
                                        <div class="imgDiv">
                                            <img class="img"/>
                                        </div>
                                    </td>    
                                    <td width="14%"  style="text-align:center;line-height:102px;">
                                        <div class="uname">
                                        </div>
                                    </td>
                                    <td width="11%" style="text-align:center;line-height:102px;">
                                        <div class="uid"></div>
                                    </td>
                                    <td width="9%" style="text-align:center;line-height:102px;">
                                        <div class="dingdanjine">
                                        </div>
                                    </td>
                                    <td width="11%" style="text-align:center;line-height:102px;">
                                        <div class="hbje">
                                        </div>
                                    </td>
                                    <td width="7%" style="text-align:center;line-height:102px;">
                                        <div class="zt">
                                        </div>
                                    </td>
                                </tr>
                            </tbody>
                        </table>
                    </div>
                </div>
                <div class="bottom">
                    <div class="page">
                        <ul class="pagination">
                            <li class="disabled pre">
                                <a href="#">&laquo;</a>
                            </li>
                            <li>
                                <a href="#" class="next">&raquo;</a>
                            </li>
                        </ul>
                        <div class="form-group">
                            <div class="tzan">
                                <button type="button" class="btn btn-primary">跳转</button>
                            </div>
                            <div class="tz">
                                <input class="form-control" type="text" id="customPage" placeholder="页数">
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </div>
        <script src="js/jquery.min.js"></script>
        <script src="js/bootstrap.min.js"></script>
        <script src="js/page.js"></script>
        <script src="js/nav.js"></script>
        <script src="layer/layer.js"></script>
        
        <script>
            var trHTML;
            $(function(){
                var $tbody = $(".liebiao > .table > tbody");
                trHTML = $tbody.html();
                getOrderData(1);
            
            $(".searchBtn").bind("click",function(){
                getOrderData(1);
            });
 
            });
            
        </script>
        <script>
            function getOrderData(pageIndex) {
                var key = $(".searchText").val();
                $.post("api/v1/order/getOrderList", { "key":key,"pageIndex": pageIndex}, function(data) {
                    if(data.code == 0) {
                        setOrderData(data,pageIndex);
                        fillPage(data.data.pe, function(page) {
                            getOrderData(page);
                        });
                    }
                }, 'json');    
            } 
            
            function setOrderData(data,pageIndex){
                pageIndex = pageIndex - 1;
                var $tbody = $(".liebiao > .table > tbody");
                $(".liebiao tbody").empty();
                var pageSize = data.data.pe.pageSize;
                var totalCount =  data.data.pe.totalCount;
                var len = (pageSize < totalCount - (pageIndex * pageSize)) ? pageSize : totalCount - (pageIndex * pageSize);
                len = (pageIndex * pageSize) + len;
                var ii = pageIndex * pageSize;
                for(var mm = 0; ii < len && ii <  totalCount; ii++,mm++) {
                    var id = data.data.orderList[mm].order.id;
                    var oid = data.data.orderList[mm].order.orderId;
                    var createtime = data.data.orderList[mm].order.thirdCreateTime;
                    console.log(createtime);
                    var portrait = data.data.orderList[mm].order.userInfo.portrait;
                    var uid = data.data.orderList[mm].order.userInfo.id;
                    var nickName = data.data.orderList[mm].order.userInfo.nickName;
                    var money = data.data.orderList[mm].order.money;
                    
                    var hb = data.data.orderList[mm].shb;
                    if(hb==undefined){
                        hb=0;
                    }
                    var state = data.data.orderList[mm].order.thirdState;
                    
                    if(state==1){
                        state="已支付";
                    }else if(state == 0){
                        state="未支付";
                    }else if(state == -1){
                        state="已失效";
                    }
                    $tbody.append(trHTML);
                    var $curTr=$tbody.find("tr").eq(mm);
                    $curTr.find(".id").text(id);
                    $curTr.find(".orderId").text(oid);
                    if(createtime != undefined) {
                        $curTr.find(".createtime").text(getCommonTime(createtime));    
                    }
                    
                    $curTr.find(".imgDiv img").attr("src",portrait);
                    $curTr.find(".uid").text(uid);
                    $curTr.find(".uname").text(nickName);
                    $curTr.find(".dingdanjine").text("¥ "+money);
                    $curTr.find(".hbje").text("¥ "+hb);
                    $curTr.find(".zt").text(state);
                }
            }
            
            function getCommonTime(timestamp) {
                var newDate = new Date();
                newDate.setTime(timestamp);
                return newDate.getFullYear() + "-" + (newDate.getMonth() + 1) + "-" + (newDate.getDate()) + " " + newDate.getHours() + ":" + newDate.getMinutes();
            }
        </script>
    </body>
 
</html>