creditBuyList.html
46.8 KB
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- 启用360浏览器的极速模式(webkit) -->
<meta name="renderer" content="webkit">
<!-- 避免IE使用兼容模式 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>采购中心-已卖出的商品</title>
<link href="http://static.nong12.com/static/common/css0.5/core.css?v=1.4.0
" rel="stylesheet" type="text/css" />
<link href="http://static.nong12.com/static/common/css0.5/module.css?v=1.4.0
" rel="stylesheet" type="text/css" />
<link rel="stylesheet" type="text/css" href="http://static.nong12.com/static/newStatic/pnr/css/dist/pnr1-2.css">
<link rel="stylesheet" type="text/css" href="../css/dist/memberSellList.css"/>
<script type="text/javascript" src="../../common/js/base/jquery-1.8.2.min.js"></script>
<script type="text/javascript" src="http://static.nong12.com/static/newStatic/common/js/base/sea.js"></script>
<script type="text/javascript"
src="http://static.nong12.com/static/newStatic/pnr/js/javascript/common/config.js"></script>
<!--[if (gte IE 5)&(lt IE 7)]>
<script type="text/javascript" src="http://static.nong12.com/static/common/js/dd-png.js?v=1.4.0
"></script>
<script>
DD_belatedPNG.fix('');
</script>
<![endif]-->
<!--[if lt IE 9]>
<script src="../../common/js/plugin/respond.src.js"></script>
<link href="../../common/js/plugin/respond-proxy.html" id="respond-proxy" rel="respond-proxy" />
<link href="../respond.proxy.gif" id="respond-redirect" rel="respond-redirect" />
<script src="../../common/js/plugin/respond.proxy.js"></script>
<![endif]-->
</head>
<body class="user-bg">
<div class="pnr-top auto-990">
<div class="nav"><div class="responsive clearfix"><div class="left"><a href="http://user.nong12.com/account/security.html" target="_blank"><span id="uname">Hoyer</span></a> 欢迎来到地利批发! <a href="https://passport.nong12.com/uc/loginService?ltype=logout">退出</a><a class="h-user-msg" href="javascript:void(0)" id="notify"><div class="text" onclick="javascript:IM.openWindow('地利客服', '0', '', '' , '1');$('#total').text(0);"><em class="u-mail"></em>消息<b style="display:none"></b><span id="total">0</span></div></a></div><ul class="right"><li><a href="http://user.nong12.com/account/security.html"><span>账户设置</span></a></li><li class="more"><a href="http://user.nong12.com/"><span>采购中心 </span></a><span class="icon-more"></span><div class="mroe-list"><div class="list-a"><a href="http://user.nong12.com/purchase/order.html">已买到的商品</a><a href="http://user.nong12.com/purchase/favorite/product.html">我的收藏</a><a href="http://user.nong12.com/purchase/history.html">我的浏览</a></div></div></li><li class="more"><a href="http://user.nong12.com/seller/shop/setting_shop.html"><span>销售中心 </span></a><span class="icon-more"></span><div class="mroe-list"><div class="list-a"><a href="http://user.nong12.com/seller/shop/setting_shop.html">我的店铺</a><a href="http://user.nong12.com/seller/order/get_order_list.do">已卖出的商品</a><a href="http://user.nong12.com/seller/product/onsale.html">出售中的商品</a><a href="http://user.nong12.com/seller/product/publish.html">免费发布商品</a></div></div></li><li><a href="http://www.nong12.com/purchase_list.html"><span>进货单</span><span class="num">(<span class="cart-num">3</span>)</span></a></li><li><a href="javascript:void(0)" onclick="IM.openWindow('地利客服', '', '', '' , '1');"><span>客服服务</span></a></li><li><a href="http://www.nong12.com/helpcenter.html"><span>帮助中心</span></a></li></ul></div></div>
</div>
<div class="us-header">
<!--最顶部-->
<div class="us-tr2">
<div class="g-head-user">
<div class="mo-fn2 g-pad10 right">
<span class="sp2">
<div class="sea-tab">
<ul class="sea-tab-ul">
<li class="select-ts1"><a href="javascript:void(0);" class="sear-d" data-searchtype="goods">产品</a></li>
</ul>
<ul class="sea-tab-ul2" style="display: none;">
<li class="bottom-bg1"></li>
<li class="select-ts2"><a href="javascript:void(0);" class="sear-li" data-searchtype="store">店铺</a></li>
<li class="bottom-bg2"></li>
</ul>
<b class=""></b> </div>
</span>
<div class="inputbox"> <span class="sp5">
<input id="autocomplete" type="text" x-webkit-speech="" value="" placeholder="搜“黄瓜”试试,大黄瓜小黄瓜应有尽有" autocomplete="off">
<div class="autocomplete-suggestions" style="position: absolute; display: none; max-height: 300px; z-index: 9999;"></div></span>
</div>
<span class="sp3">
<input id="search" type="button">
</span>
<div class="clear"></div>
</div>
<a href="http://www.nong12.com" class="g-user-logo"></a>
<a href="http://www.nong12.com" class="g-u-dir un-h5">首页</a>
<a href="http://user.nong12.com/purchase/order.html" class="g-u-dir un-h5">采购中心</a>
<a href="http://user.nong12.com/seller/shop/sale.html" class="g-u-dir un-h5 on">采购中心</a>
<a href="http://user.nong12.com/account/security.html" class="g-u-dir un-h5">账号管理</a>
</div>
</div>
<!--logo、搜索区、公告区-->
</div>
<link rel="stylesheet" type="text/css" href="../css/style/credit_manage.css">
<div class="g-user-main clear">
<div class="m-user-loca"> <a href="//user.nong12.com/account/security.html">我的地利</a> 〉采购中心</a> 〉<span>赊销管理</span>
</div>
<div class="g-umain-left">
<div class="g-um-h2 un-h2">采购中心</div>
<ul>
<li><a href="http://user.nong12.com/seller/order/get_order_list.do" class="list">我的采购单</a></li>
<!--
<li><a href="http://user.nong12.com/supply.html"
class="list">供应信息管理</a></li>
-->
<li><a href="#" class="list on">已卖出的商品</a></li>
<li><a href="#" class="list">赊销管理</a></li>
<li><a href="javascript:void(0)" class="list u-op">店铺管理</a><span class="u-sp1"></span>
<div class="g-manage-list" style="display: none;">
<dl>
<dd><a href="http://user.nong12.com/seller/shop/checkAuthen.html">我要开店</a></dd>
<dd><a href="http://user.nong12.com/seller/shop/setting_shop.html">店铺设置</a></dd>
<!--<dd><a href="http://user.nong12.com/seller/shop/template.html">店铺模板</a></dd> -->
<dd><a href="http://user.nong12.com/seller/shop/renovation.html">店铺装修</a></dd>
</dl>
</div>
</li>
<li><a href="javascript:void(0)" class="list u-op">商品管理</a><span class="u-sp1"></span>
<div class="g-manage-list" style="display: none;">
<dl>
<dd><a href="http://user.nong12.com/seller/product/publish.html">发布商品</a></dd>
<dd><a href="http://user.nong12.com/seller/product/onsale.html">出售中的商品</a></dd>
<dd><a href="http://user.nong12.com/seller/product/onwarehouse.html">待上架的商品</a></dd>
<dd><a href="http://user.nong12.com/seller/product/recommend_list.html">橱窗推荐商品</a></dd>
<dd><a href="http://user.nong12.com/seller/product/shop_product_category.html">店铺商品分类</a></dd>
<dd><a href="http://user.nong12.com/seller/product/shortcut.html">商品快捷描述</a></dd>
</dl>
</div>
</li>
<!--
<li><a href="javascript:void(0)" class="list u-op">销售服务管理</a><span class="u-sp1"></span>
<div class="g-manage-list">
<dl>
<dd><a href="http://user.nong12.com/seller/sale/write.html">申请代销服务</a></dd>
<dd><a href="http://user.nong12.com/seller/sale/list.html">代销服务管理</a></dd>
<dd><a href="http://user.nong12.com/seller/CombineSale/list.html">联营联销服务管理</a></dd>
</dl>
</div>
</li>
-->
<li><a href="javascript:void(0)" class="list u-op">客户服务</a><span class="u-sp1"></span>
<div class="g-manage-list" style="display: none;">
<dl>
<dd><a href="http://user.nong12.com/salesCenter/list.do">销售退款管理</a></dd>
</dl>
</div>
</li>
</ul>
</div>
<div class="credit-manage right-place mt20">
<ul class="s-tab clearfix">
<li><a href="#tab1" class="current">我的订单</a></li>
<li><a href="#tab2" class="">我的赊账订单</a></li>
</ul>
<div class="mbox-bd" id="tab1">
<div class="mbox-filter">
<form>
<div class="filter-cell">
<span>订单状态:</span>
<a href="#" class="statu-links statu-current">全部</a>
<a href="#" class="statu-links">待付款<i>[10]</i></a>
<a href="#" class="statu-links">备货中</a>
<a href="#" class="statu-links">待提货</a>
<a href="#" class="statu-links">待收货</a>
<a href="#" class="statu-links">退款申请中</a>
<a href="#" class="statu-links">交易完成</a>
</div>
<div class="filter-cell">
<span>支付方式:</span>
<span class="like-select">
<select class="s-select" rel="width:100">
<option>在线支付</option>
<option>现金支付</option>
</select>
</span>
<span>成交时间:</span>
<span class="like-select" rel="width:100">
<select class="s-select">
<option>最近3天</option>
<option>最近5天</option>
</select>
</span>
<span class="s-direct">
<input type="text" class="iptText" placeholder="订单编号,商品名称" />
</span>
<input type="submit" value="查询" class="submitBtn"/>
</div>
</form>
</div>
<div class="mbox-table">
<!-- 销售列表开始 -->
<div class="order-table">
<!-- 无订单 开始 -->
<div class="otab-head otab-nothing">
<div class="hcell buy-order-info">
商品信息</div><div class="hcell buy-money">
订单金额</div><div class="hcell buy-statu">
<span class="status-span">
<select class="s-select">
<option value="-1">全部状态</option>
<option>待付款</option>
<option>备货中</option>
</select>
</span>
</div><div class="hcell buy-opera">
操作</div>
</div>
<div class="nothing-bd">
<span>暂无订单</span>
</div>
<!-- 无订单 结束 -->
<!-- 此处在每个div.hcell标签后没有任何符号 -->
<div class="otab-head">
<div class="hcell buy-order-info">
商品信息</div><div class="hcell buy-money">
订单金额</div><div class="hcell buy-statu">
<span class="status-span">
<select class="s-select">
<option value="-1">全部状态</option>
<option>待付款</option>
<option>备货中</option>
</select>
</span>
</div><div class="hcell buy-opera">
操作</div>
</div>
<!--订单列表开始-->
<div class="otab-store">
<div class="otab-number">
<div class="nhead">
<div class="hcell order-face">订单编号:900890709</div>
<div class="hcell time-face">成交时间:2014-01-04 12:34:12</div>
<div class="hcell im-face">卖家:Miracle <span class="mini-im"></span></div>
</div>
<div class="nbody">
<div class="nb-cell buy-single-info">
<div class="single-info-limit">
<div class="single-table">
<div class="single-inner">
<a href="#">
<img src="../upload/img-1-3.png" alt="" />
</a>
<a href="#">
<p class="showall">生姜丝哦房间哦啊是的发生姜丝哦房间哦啊是的发</p>
</a>
</div>
</div>
<div class="single-table">
<div class="single-inner">
<a href="#">
<img src="../upload/img-1-3.png" alt="" />
</a>
<a href="#">
<p>生姜丝哦房间哦啊是的发</p>
<span>品种:黄酱</span>
<span>规格:90</span>
</a>
</div>
</div>
<div class="single-table">
<div class="single-inner">
<a href="#">
<img src="../upload/img-1-3.png" alt="" />
</a>
<a href="#">
<p>生姜丝哦房间哦啊是的发</p>
<span>品种:黄酱</span>
<span>规格:90</span>
</a>
</div>
</div>
</div>
<a href="#" class="a-link check-more">共 3 件 (<span>展开查看</span>)</a>
</div><div class="nb-cell">
<b class="phone2order"></b>
<b class="color-total">213123.00元</b>
<p class="freight-price">含运费 200.00元</p>
<p class="freight-word">线下付款</p>
</div><div class="nb-cell">
待付款
</div><div class="nb-cell">
<a href="#" class="submitBtn s-pophint">确认收货</a>
<p class="order-link"><a href="#" class="a-link">查看</a></p>
<p class="order-link"><a href="#" class="a-link">延期收货</a></p>
</div>
</div>
</div>
<div class="otab-number">
<div class="nhead">
<div class="hcell order-face">订单编号:900890709</div>
<div class="hcell time-face">成交时间:2014-01-04 12:34:12</div>
<div class="hcell im-face">卖家:Miracle <span class="mini-im"></span></div>
</div>
<div class="nbody">
<div class="nb-cell buy-single-info">
<div class="single-info-limit">
<div class="single-table">
<div class="single-inner">
<a href="#">
<img src="../upload/img-1-3.png" alt="" />
</a>
<a href="#">
<p>生姜丝哦房间哦啊是的发</p>
<span>品种:黄酱</span>
<span>规格:90</span>
</a>
</div>
</div>
<div class="single-table">
<div class="single-inner">
<a href="#">
<img src="../upload/img-1-3.png" alt="" />
</a>
<a href="#">
<p>生姜丝哦房间哦啊是的发</p>
<span>品种:黄酱</span>
<span>规格:90</span>
</a>
</div>
</div>
<div class="single-table">
<div class="single-inner">
<a href="#">
<img src="../upload/img-1-3.png" alt="" />
</a>
<a href="#">
<p>生姜丝哦房间哦啊是的发</p>
<span>品种:黄酱</span>
<span>规格:90</span>
</a>
</div>
</div>
</div>
<a href="#" class="a-link check-more">共 3 件 (<span>展开查看</span>)</a>
</div><div class="nb-cell">
<b class="color-total">213123.00元</b>
<p class="freight-price">含运费 200.00元</p>
<p class="freight-word">线下付款</p>
</div><div class="nb-cell">
待提货
</div><div class="nb-cell">
<a href="#" class="submitBtn s-pophint">确认提货</a>
<p class="order-link"><a href="#" class="a-link">查看</a></p>
<p class="order-link"><a href="#" class="a-link">申请退款</a></p>
<p class="order-link"><a href="#" class="a-link">延期收货</a></p>
</div>
</div>
</div>
<div class="otab-number">
<div class="nhead">
<div class="hcell order-face">订单编号:900890709</div>
<div class="hcell time-face">成交时间:2014-01-04 12:34:12</div>
<div class="hcell im-face">卖家:Nikoaa <span class="mini-im"></span></div>
</div>
<div class="nbody">
<div class="nb-cell buy-single-info">
<div class="single-info-limit">
<div class="single-table">
<div class="single-inner">
<a href="#">
<img src="../upload/img-1-3.png" alt="" />
</a>
<a href="#">
<p>生姜丝哦房间哦啊是的发</p>
<span>品种:黄酱</span>
<span>规格:90</span>
</a>
</div>
</div>
</div>
</div><div class="nb-cell">
<b class="color-total">213123.00元</b>
</div><div class="nb-cell">
已关闭
</div><div class="nb-cell">
<a href="#" class="a-link">查看</a>
</div>
</div>
</div>
<div class="otab-number">
<div class="nhead">
<div class="hcell order-face">订单编号:900890709</div>
<div class="hcell time-face">成交时间:2014-01-04 12:34:12</div>
<div class="hcell im-face">卖家:Nikoaa <span class="mini-im"></span></div>
</div>
<div class="nbody">
<div class="nb-cell buy-single-info">
<div class="single-info-limit">
<div class="single-table">
<div class="single-inner">
<a href="#">
<img src="../upload/img-1-3.png" alt="" />
</a>
<a href="#">
<p>生姜丝哦房间哦啊是的发</p>
<span>品种:黄酱</span>
<span>规格:90</span>
</a>
</div>
</div>
</div>
</div><div class="nb-cell">
<b class="color-total">213123.00元</b>
<p class="freight-word">线下付款</p>
</div><div class="nb-cell">
备货中
</div><div class="nb-cell">
<p class="order-link"><a href="#" class="a-link">查看</a></p>
<p class="order-link"><a href="#" class="a-link">申请退款</a></p>
</div>
</div>
</div>
<div class="otab-number">
<div class="nhead">
<div class="hcell order-face">订单编号:900890709</div>
<div class="hcell time-face">成交时间:2014-01-04 12:34:12</div>
<div class="hcell im-face">卖家:Nikoaa <span class="mini-im"></span></div>
</div>
<div class="nbody">
<div class="nb-cell buy-single-info">
<div class="single-info-limit">
<div class="single-table">
<div class="single-inner">
<a href="#">
<img src="../upload/img-1-3.png" alt="" />
</a>
<a href="#">
<p>生姜丝哦房间哦啊是的发</p>
<span>品种:黄酱</span>
<span>规格:90</span>
</a>
</div>
</div>
</div>
</div><div class="nb-cell">
<b class="color-total">213123.00元</b>
<p class="freight-price">含运费 200.00元</p>
<p class="freight-word">线下付款</p>
</div><div class="nb-cell">
备货中
</div><div class="nb-cell">
<p class="order-link"><a href="#" class="a-link">查看</a></p>
<p class="order-link"><a href="#" class="a-link">取消订单</a></p>
</div>
</div>
</div>
</div>
<!--订单列表结束-->
</div>
<!-- 销售列表结束 -->
</div>
<div class="page">
<a href="#">首页</a>
<a href="#" class="prev"><</a>
<a href="#">1</a>
<b>2</b>
<a href="#">3</a>
<a href="#" class="next">></a>
<a href="#">尾页</a>
第2页/共20页
</div>
</div>
<div class="mbox-bd" id="tab2">
<div class="mbox-filter">
<form>
<div class="filter-cell">
<span>订单状态:</span>
<a href="#" class="statu-links statu-current">全部</a>
<a href="#" class="statu-links">待付款<i>[10]</i></a>
<a href="#" class="statu-links">备货中</a>
<a href="#" class="statu-links">待提货</a>
<a href="#" class="statu-links">待收货</a>
<a href="#" class="statu-links">退款申请中</a>
<a href="#" class="statu-links">交易完成</a>
</div>
<div class="filter-cell">
<span>成交时间:</span>
<span class="like-select">
<select class="s-select">
<option>最近3天</option>
<option>最近5天</option>
</select>
</span>
<span class="s-direct">
<input type="text" class="iptText" placeholder="订单编号,商品名称" />
</span>
<input type="submit" value="查询" class="submitBtn"/>
</div>
</form>
</div>
<div class="mbox-table">
<!-- 销售列表开始 -->
<div class="order-table">
<!-- 无订单 开始 -->
<div class="otab-head otab-nothing">
<div class="hcell buy-order-info">
商品信息</div><div class="hcell buy-money">
订单金额</div><div class="hcell buy-statu">
<span class="status-span">
<select class="s-select">
<option value="-1">全部状态</option>
<option>待付款</option>
<option>备货中</option>
</select>
</span>
</div><div class="hcell buy-opera">
操作</div>
</div>
<div class="nothing-bd">
<span>暂无订单</span>
</div>
<!-- 无订单 结束 -->
<!-- 此处在每个div.hcell标签后没有任何符号 -->
<div class="otab-head">
<div class="hcell buy-order-info">
商品信息</div><div class="hcell buy-money">
订单金额</div><div class="hcell buy-statu">
<span class="status-span">
<select class="s-select">
<option value="-1">全部状态</option>
<option>待付款</option>
<option>备货中</option>
</select>
</span>
</div><div class="hcell buy-opera">
操作</div>
</div>
<!--订单列表开始-->
<div class="otab-store">
<div class="otab-number">
<div class="nhead">
<div class="hcell order-face">订单编号:900890709</div>
<div class="hcell time-face">成交时间:2014-01-04 12:34:12</div>
<div class="hcell im-face">卖家:Miracle <span class="mini-im"></span></div>
</div>
<div class="nbody">
<div class="nb-cell buy-single-info">
<div class="single-info-limit">
<div class="single-table">
<div class="single-inner">
<a href="#">
<img src="../upload/img-1-3.png" alt="" />
</a>
<a href="#">
<p>生姜丝哦房间哦啊是的发</p>
<span>品种:黄酱</span>
<span>规格:90</span>
</a>
</div>
</div>
</div>
</div><div class="nb-cell">
<b class="color-total">213123.00元</b>
<p class="freight-price">含运费 200.00元</p>
</div><div class="nb-cell">
待审核
</div><div class="nb-cell">
<p class="order-link"><a href="#" class="a-link">查看</a></p>
<p class="order-link"><a href="#" class="a-link">取消订单</a></p>
</div>
</div>
</div>
<div class="otab-number">
<div class="nhead">
<div class="hcell order-face">订单编号:900890709</div>
<div class="hcell time-face">成交时间:2014-01-04 12:34:12</div>
<div class="hcell im-face">卖家:Miracle <span class="mini-im"></span></div>
</div>
<div class="nbody">
<div class="nb-cell buy-single-info">
<div class="single-info-limit">
<div class="single-table">
<div class="single-inner">
<a href="#">
<img src="../upload/img-1-3.png" alt="" />
</a>
<a href="#">
<p>生姜丝哦房间哦啊是的发</p>
<span>品种:黄酱</span>
<span>规格:90</span>
</a>
</div>
</div>
</div>
</div><div class="nb-cell">
<b class="color-total">213123.00元</b>
</div><div class="nb-cell">
审核失败
</div><div class="nb-cell">
<p class="order-link"><a href="#" class="a-link">查看</a></p>
<p class="order-link"><a href="#" class="a-link">重新购买</a></p>
</div>
</div>
</div>
<div class="otab-number">
<div class="nhead">
<div class="hcell order-face">订单编号:900890709</div>
<div class="hcell time-face">成交时间:2014-01-04 12:34:12</div>
<div class="hcell im-face">卖家:Nikoaa <span class="mini-im"></span></div>
</div>
<div class="nbody">
<div class="nb-cell buy-single-info">
<div class="single-info-limit">
<div class="single-table">
<div class="single-inner">
<a href="#">
<img src="../upload/img-1-3.png" alt="" />
</a>
<a href="#">
<p>生姜丝哦房间哦啊是的发</p>
<span>品种:黄酱</span>
<span>规格:90</span>
</a>
</div>
</div>
</div>
</div><div class="nb-cell">
<b class="color-total">213123.00元</b>
</div><div class="nb-cell">
待提货
</div><div class="nb-cell">
<a href="#" class="submitBtn s-pophint">确认提货</a>
<p class="order-link"><a href="#" class="a-link">查看</a></p>
</div>
</div>
</div>
<div class="otab-number">
<div class="nhead">
<div class="hcell order-face">订单编号:900890709</div>
<div class="hcell time-face">成交时间:2014-01-04 12:34:12</div>
<div class="hcell im-face">卖家:Nikoaa <span class="mini-im"></span></div>
</div>
<div class="nbody">
<div class="nb-cell buy-single-info">
<div class="single-info-limit">
<div class="single-table">
<div class="single-inner">
<a href="#">
<img src="../upload/img-1-3.png" alt="" />
</a>
<a href="#">
<p>生姜丝哦房间哦啊是的发</p>
<span>品种:黄酱</span>
<span>规格:90</span>
</a>
</div>
</div>
</div>
</div><div class="nb-cell">
<b class="color-total">213123.00元</b>
</div><div class="nb-cell">
备货中
</div><div class="nb-cell">
<p class="order-link"><a href="#" class="a-link">查看</a></p>
</div>
</div>
</div>
<div class="otab-number">
<div class="nhead">
<div class="hcell order-face">订单编号:900890709</div>
<div class="hcell time-face">成交时间:2014-01-04 12:34:12</div>
<div class="hcell im-face">卖家:Nikoaa <span class="mini-im"></span></div>
</div>
<div class="nbody">
<div class="nb-cell buy-single-info">
<div class="single-info-limit">
<div class="single-table">
<div class="single-inner">
<a href="#">
<img src="../upload/img-1-3.png" alt="" />
</a>
<a href="#">
<p>生姜丝哦房间哦啊是的发</p>
<span>品种:黄酱</span>
<span>规格:90</span>
</a>
</div>
</div>
</div>
</div><div class="nb-cell">
<b class="color-total">213123.00元</b>
</div><div class="nb-cell">
待收货
</div><div class="nb-cell">
<a href="#" class="submitBtn s-pophint">确认收货</a>
<p class="order-link"><a href="#" class="a-link">查看</a></p>
</div>
</div>
</div>
</div>
<!--订单列表结束-->
</div>
<!-- 销售列表结束 -->
</div>
<div class="page">
<a href="#">首页</a>
<a href="#" class="prev"><</a>
<a href="#">1</a>
<b>2</b>
<a href="#">3</a>
<a href="#" class="next">></a>
<a href="#">尾页</a>
第2页/共20页
</div>
</div>
</div>
</div>
<script type="text/javascript">
seajs.use([ '../js/javascript/common/common.js',
'../js/javascript/order/creditBuyList.js']);
seajs.use(['pophint'],function( pophint ) {
//确认收货
$( '.s-pophint' ).click(function(){
new pophint( this , {
head:"<span class='warningTips'>提示</span>" ,
content:'为了避免交易纠纷,请确认收到商品再确认提货!',
operation : function( target ){
//点击确定按钮执行的回调
},
onName:"确认收货"
});
});
//备货完成
$( '.b-pophint' ).click(function(){
new pophint( this , {
head:"<span class='warningTips'>提示</span>" ,
content:'备货完成后,我们会短信通知买家尽快来提货!',
operation : function( target ){
//点击确定按钮执行的回调
},
onName:"备货完成"
});
});
});
</script>
<!-- footer-->
<div class="footer">
<div class="bg-F9">
<div class="footer-view clearfix">
<div class="left">
<ul>
<li>
<span class="icon-we"></span>
<p>关于我们</p>
<div class="f-list">
<a href="#">关于地利</a>
<a href="#">诚聘英才</a>
<a href="#">联系我们</a>
<a href="#">地利服务</a>
</div>
</li>
<li>
<span class="icon-aftersales"></span>
<p>售后服务</p>
<div class="f-list">
<a href="#">纠纷处理</a>
<a href="#">退款流程</a>
<a href="#">退款政策</a>
</div>
</li>
<li>
<span class="icon-shopping"></span>
<p>购物指南</p>
<div class="f-list">
<a href="#">交易规则</a>
<a href="#">购物流程</a>
<a href="#">订单结算</a>
<a href="#">支付方式</a>
</div>
</li>
<li>
<span class="icon-identity"></span>
<p>身份认证</p>
<div class="f-list">
<a href="#">邮箱验证</a>
<a href="#">企业验证</a>
<a href="#">实名认证</a>
<a href="#">密码找回</a>
</div>
</li>
<li>
<span class="icon-novice"></span>
<p>新手指南</p>
<div class="f-list">
<a href="#">个人注册</a>
<a href="#">企业注册</a>
<a href="#">会员须知</a>
<a href="#">会员登陆</a>
</div>
</li>
</ul>
</div>
<div class="right">
<span class="icon-shield"></span>
<ul class="clearfix">
<li><p>服务热线:<span class="text-phone">400-888-6666</span></p></li>
<li><p>服务时间:<span class="text-time">上午9:00 - 晚上21:00</span></p></li>
<li><p class="dili-im" href="#"><i></i>联系我们</p></li>
</ul>
</div>
</div>
</div>
<div class="footer-end">
<p>
<a href="#">关于我们</a> |
<a href="#">联系我们</a> |
<a href="#">人才招聘</a> |
<a href="#">地利服务</a> |
<a href="#">帮助中心</a>
</p>
<p class="col-999"> Copyright © 2013-2014 nong12.com,All Rights Reserved 陕ICP备14002958号</p>
<p class="col-999">版权所有 地利网络农业有限公司</p>
</div>
</div>
<!-- footer end -->
<!-- 弹框开始 -->
<div class="fancy-alert" id="fancy-alert">
<div class="fancy-head">
修改价格
</div>
<form class="s-validate">
<div class="fancy-content">
<table border="0" cellpadding="0" cellspacing="0" class="credit-tab">
<tbody>
<tr>
<td class="align-right pl30">
<span>商品总金额:</span>
</td>
<td>
<span>120000000.00元</span>
</td>
<td class="align-right">
<span>修改为:</span>
</td>
<td>
<input type="text" class="iptText iptmini required" isIdCardNo="true" name="ss" />
元
</td>
</tr>
<tr class="freight-tr">
<td class="align-right">
<span>运费:</span>
</td>
<td>
<span>12000.00元</span>
</td>
<td class="align-right">
<span>修改为:</span>
</td>
<td>
<input type="text" class="iptText iptmini required" name="sss" />
元
</td>
</tr>
<tr class="freight-value">
<td class="align-right pl30">
<span>实付金额:</span>
</td>
<td colspan="3">
120000.00元 + 12000.00元 = <b class="color-totally">132000.00元</b>
</td>
</tr>
</tbody>
</table>
</div>
<div class="fancy-foot credit-ft">
<button class="submitBtn fancy-ensure">确定修改</button>
<a href="javascript:;" class="submitBtn grayBtn fancy-cancel">取消</a>
</div>
</form>
</div>
<!-- 弹框结束 -->
<!--发货弹层-->
<div id="send-pop">
<form class="s-validate">
<table class="table-from">
<tr>
<td class="align-right">司机姓名:</td>
<td><input type="text" class="iptText required" isrealname="true" name="ss"></td>
</tr>
<tr>
<td class="align-right">联系电话:</td>
<td><input type="text" class="iptText required" ismultiphone="true"></td>
</tr>
<tr>
<td class="align-right">车牌号码:</td>
<td><input type="text" class="iptText required"></td>
</tr>
<tr>
<td class="align-right"> </td>
<td>
<label><input type="checkbox">不填写</label>
</td>
</tr>
<tr>
<td class="align-right"> </td>
<td>
<button class="submitBtn">确认已发货</button>
<span class="submitBtn grayBtn" onclick="$.fancybox.close();">取消</span>
</td>
</tr>
</table>
</form>
</div>
<!--发货弹层 end-->
</body>
</html>