inuser.html
5.01 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
{template 'public/header'}
{template 'public/comhead'}
<link rel="stylesheet" type="text/css" href="../addons/zh_cjdianc/template/public/ygcsslist.css">
<style type="text/css">
.yg5_key>div{float: left;line-height: 34px;}
.store_td1{height: 45px;}
.store_list_img{width: 40px;height: 40px;}
.yg5_tabel{border-color: #e5e5e5;outline: 1px solid #e5e5e5;font-size: 12px;}
.yg5_tr2>td{padding: 10px 15px;border: 1px solid #e5e5e5;text-align: center;}
.yg5_tr1>th{
border: 1px solid #e5e5e5;
padding-left: 15px;
background-color: #FAFAFA;
font-weight: bold;
text-align: center;
}
.yg5_btn{background-color: #EEEEEE;color: #333;border: 1px solid #E4E4E4;border-radius: 6px;width: 100px;height: 34px;}
.store_inp{margin-left: 5px;}
.ygshanchu{color: white;background-color: #44ABF7;}
.accout_inp{width: 100%;height: 35px;border: 1px solid #cccccc;font-size: 14px;color: #333;}
.navback{display: none;}
.yg_back{margin-left: 170px;}
.scour{
position: relative;
width: 100%;
display: block;
}
.scour:hover .scour_tip{
display: block;
}
.scour_tip{
display: none;
position: absolute;
left: 50%;
bottom: 27px;
background-color: #333;
color: white;
padding: 2px 7px;
border-radius: 2px;
font-size: 10px;
margin-left: -20px
}
.scour_tip:after{
content: "";
display:block;
width: 0;
height: 0;
border-bottom: 10px solid #333;
border-left: 10px solid transparent;
transform: rotate(45deg);
position: absolute;
left: 40%;
top: 78%;
}
.footer{
background:none !important;
color:#666;
/*position: fixed;*/
/* bottom: 0;*/
/*z-index: -100;*/
opacity: 1;
width: 85%;
}
</style>
<ul class="nav nav-tabs">
<span class="ygxian"></span>
<div class="ygdangq">当前位置:</div>
<li class="active"><a href="javascript:void(0);">会员列表</a></li>
</ul>
<div class="main">
<div class="panel panel-default">
<div class="panel-body">
<form action="" method="get" class="col-md-4">
<input type="hidden" name="c" value="site" />
<input type="hidden" name="a" value="entry" />
<input type="hidden" name="m" value="zh_cjdianc" />
<input type="hidden" name="do" value="inuser" />
<div class="input-group" style="width: 300px">
<input type="text" name="keywords" class="form-control" placeholder="请输入昵称">
<span class="input-group-btn">
<input type="submit" class="btn btn-default" name="submit" value="查找"/>
</span>
</div>
<input type="hidden" name="token" value="{$_W['token']}"/>
</form>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">
会员列表
</div>
<div class="panel-body" style="padding: 0px 15px;">
<div class="row">
<table class="yg5_tabel col-md-12" id="test_table">
<tr class="yg5_tr1">
<th class="store_td1 col-md-1" >id</th>
<th class="col-md-1">会员昵称</th>
<th class="store_td1 col-md-1">会员头像</th>
<th class="col-md-2">最后下单时间</th>
<th class="col-md-1">订单量</th>
</tr>
{loop $list $row}
<tr class="yg5_tr2">
<td >{$row['id']}</td>
<td>{$row['name']}</td>
<td><img class="store_list_img" src="{$row['img']}"/></td>
<td>{$row['ordertime']}</td>
<td>
<a href="{php echo $this->createWebUrl('inuserorder', array('user_id' => $row['id']))}" class="scour">{$row['ordernum']}
<span class="scour_tip">查看明细
<span class="arrowdown"></span>
</span>
</a></td>
</tr>
{/loop}
{if empty($list)}
<tr class="yg5_tr2">
<td colspan="9">
暂无会员信息
</td>
</tr>
{/if}
</table>
</div>
</div>
</div>
</div>
<div class="text-right we7-margin-top">
{$pager}
</div>
<!-- {template 'common/footer'} -->
<script type="text/javascript">
$(function(){
// $("#frame-12").addClass("in");
// $("#frame-12").show();
$("#yframe-5").addClass("wyactive");
})
</script>
{template 'common/footer'}