-
Notifications
You must be signed in to change notification settings - Fork 0
/
taskDetail.html
110 lines (97 loc) · 2.86 KB
/
taskDetail.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
108
109
110
<!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 {
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="给我p一张图片" readonly="readonly" />
</div>
<div class="mui-input-row">
<label>赏 金: ¥</label>
<input type="number" id="outMoney" value="100" readonly="readonly" />
</div>
<div class="mui-input-row">
<label>任务说明:</label>
</div>
<div class="mui-input-row" style="margin: 10px;">
<textarea readonly="readonly" id="textarea" rows="5" placeholder="用户太懒,什么描述都未留下,如有疑问可以通过左下角联系发布者"></textarea>
</div>
<div class="mui-input-row">
<label>附加图片:</label>
</div>
<div class="mui-input-row" style="margin: 10px;">
<img src="images/renwu1.jpg" width="100%"/>
<img src="images/renwu2.jpg" width="100%"/>
</div>
<div class="mui-content-padded">
<button id='contact' class="mui-btn mui-btn-primary" style="background-color: #00BB9C;border: 0px;width: 49%;">联系发布者</button>
<button id='getTask' class="mui-btn mui-btn-primary" style="background-color: #00BB9C;border: 0px;width: 49%;">接受任务</button>
</div>
</div>
<script src="js/mui.min.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>