-
Notifications
You must be signed in to change notification settings - Fork 0
/
userInfo.html
107 lines (94 loc) · 2.46 KB
/
userInfo.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>猎赚</title>
<link rel="stylesheet" type="text/css" href="css/mui.min.css" />
<link rel="stylesheet" type="text/css" href="css/iconfont.css"/>
<style type="text/css">
.mui-input-row{
margin-top: 10px;
}
.mui-input-row label,
.mui-input-row label~input,
.mui-input-row label~select,
.mui-input-row label~textarea {
color: white;
/*border: 1px red solid;*/
}
.mui-input-row label{
margin-right: 10px;
/*overflow: hidden;*/
white-space: nowrap;
width: 50%;
/*border: 1px red solid;*/
}
.mui-input-row span{
font-size: 30px;
color: white;
overflow: hidden;
white-space: nowrap;
}
.mui-input-row label~input{
margin-top: 5px;
padding: 0px;
float: left;
background-color: white;
color: black;
width: 150px;
height: 30px;
}
.mui-checkbox input[type=checkbox],
.mui-radio input[type=radio] {
top: 6px;
}
.mui-content-padded {
background-color: #313F4D;
margin-top: 25px;
}
.mui-btn {
padding: 10px;
}
.mui-bar {
background-color: #576574;
}
.mui-bar h1 {
color: #9FA9B3;
}
.mui-content {
margin-top: 20px;
background-color: #313F4D;
}
</style>
</head>
<body style="background-color: #313F4D;">
<header class="mui-bar mui-bar-nav">
<a class="mui-action-back mui-icon mui-icon-left-nav mui-pull-left" style="color: #00BB9C;"></a>
<h1 class="mui-title">用户信息</h1>
</header>
<div class="mui-content">
<div class="mui-input-row">
<label>发布者姓名:</label>
<input type="text" id="outMoney" value="杨成" readonly="readonly"/>
</div>
<div class="mui-input-row">
<label>发布者电话:</label>
<input type="number" id="outMoney" value="15775691975" readonly="readonly"/>
</div>
<div class="mui-input-row">
<label>发布者等级:</label>
<input type="text" id="inMoney" value="100" readonly="readonly"/>
</div>
<div class="mui-input-row">
<label>发布者NR值:</label>
<input type="number" id="outMoney" value="100" readonly="readonly"/>
</div>
<div class="mui-content-padded">
<p>说明:</p>
<p> 等级一共分为9级。</p>
<p> NR值为用户信誉值。</p>
</div>
</div>
<script src="js/mui.min.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>