-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsearch_user.html
More file actions
112 lines (103 loc) · 3.27 KB
/
search_user.html
File metadata and controls
112 lines (103 loc) · 3.27 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
<!DOCTYPE html>
<!-- 原chain.html页 -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0,user-scalable=no">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>搜索用户</title>
<link rel="icon" href="img/huixing.png" type="image/x-icon"/>
<link rel="stylesheet" media="all" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/common.css">
<link rel="stylesheet" href="css/loading.css">
<link rel="stylesheet" type="text/css" href="css/header-tpl.css"/>
<link rel="stylesheet" href="css/search_user.css" />
<!-- 导航栏 -->
</head>
<body lang="zh-CN" class="reader-black-font">
<div class="comet-main block-comet-main-wrap">
<!-- 全局顶部导航栏 -->
<div class="navbar-fixed-container navbar-fixed-container-hook">
</div>
<div class="mian-container">
<div class="container" >
<!--个人简介-->
<div class="search_user">
<ul class="search_user_result">
</ul>
</div>
<div class="no-result" style="display:none">
找不到该用户
</div>
</div>
</div>
</div>
<div class="waiting-data">
<div class="loader9">
<div class="loader-nine">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</div>
</div>
<div class="load-more-container-wrap">
<div class="container">
<div class="load-more-wrap load-more-hook">
<div class="loader1 loader" style="display: none">
<div></div>
<div></div>
<div></div>
</div>
<div class="loading-more" style="display: none">
加载更多
</div>
</div>
<div class="load-more-wrap no-more-hook" style="display: none">
<div class="loading-more">
已无更多数据
</div>
</div>
</div>
</div>
<script type="text/html" id="user_search_tpl">
<%for(var i = 0; i < list.length; i++) {%>
<li>
<a href="personal-homepage.html?userId=<%:=list[i].id %>" >
<%if(list[i].userPic ){%>
<img src="<%:=list[i].userPic %>" class="user_icon">
<%}else{%>
<img src="img/normal-user.png" class="user_icon">
<%}%>
</a>
<div class="user_info">
<a href="personal-homepage.html?userId=<%:=list[i].id %>" class="user_name"><%:=list[i].realName %></a>
<p class="user_info_item">
<span>关注:0</span>
<span>粉丝:0</span>
</p>
<%if(list[i].personIntro ){%>
<p class="user_info_item">个人简介:<%:=list[i].personIntro %></p>
<%}else{%>
<p class="user_info_item">个人简介:他没有写下任何信息</p>
<%}%>
</div>
<br />
</li>
<%}%>
</script>
<script src="js/jquery-2.1.1.js"></script>
<script src="js/bootstrap.min.js"></script>
<!-- <script src="js/plugins/swiper/swiper-4.2.2.min.js"></script> -->
<script src="js/jquery.cookie.js"></script>
<script src="js/common.js"></script>
<script src="js/template.js"></script>
<script src='js/search_user.js'></script>
</body>
</html>