detail.html
1.2 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
<title>提交工单</title>
</head>
<body>
<h2 class="head">维护工单</h2>
<form method="post">
<div class="putbox">
<p><b>*</b>处理情况</p>
<textarea name="message" rows="" cols=""></textarea>
<!--<p><b>*</b>实景图片</p>-->
<!--<input type="file" name="" id="" value="" class="img"/>-->
<button>提交</button>
</div>
</form>
</body>
</html>
<style type="text/css">
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
.head{
text-align: center;
background-color: #2196f3;
color: #fff;
padding: 12px;
font-size: 16px;
}
.putbox{
width: 90%;
margin: auto;
}
.putbox p b{
color: crimson;
}
.putbox p{
line-height: 35px;
color: #2196F3;
font-weight: 600;
margin: 8px 0;
}
.putbox textarea{
width: 100%;
min-height: 120px;
border-radius: 4px;
outline: none;
}
button{
width: 60%;
margin: auto;
background-color: #2196F3;
color: #fff;
border: #2196F3;
outline: #2196F3;
border-radius: 4px;
display: block;
padding: 8px;
margin-top: 2rem;
}
</style>