-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddReport.html
57 lines (52 loc) · 1.75 KB
/
addReport.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="css/amazeui.min.css">
<link rel="stylesheet" href="css/admin.css">
<link rel="stylesheet" href="css/app.css">
<style>
.admin-main{
padding-top: 0px;
}
</style>
</head>
<body>
<div class="am-cf admin-main">
<!-- content start -->
<div class="admin-content">
<div class="admin-content-body">
<div class="am-g">
<form class="am-form am-form-horizontal" action="addReport_ok.php" method="post" >
<input value="504" name="roleId" type="hidden">
<div class="am-form-group">
<label for="user-name" class="am-u-sm-3 am-form-label">
填写日期
</label>
<div class=" " style="position: absolute;right: 130px;top:7px;">
<input name="date" type="date" value="2018-06-02" style="height: 20px;width: 226px;"/>
</div>
</div>
<div class="am-form-group">
<label for="user-name" class="am-u-sm-3 am-form-label">
填写业绩报告
</label>
<div class=" " style="position: absolute;right: 80px;top:60px;">
<textarea name="content" cols="30" rows="8" required="" placeholder="填写业绩报告" value="" type="text" ></textarea>
</div>
</div>
<div class="am-form-group">
<div class="" style="position: absolute; left:130px;top:256px;">
<input type="hidden" name="action" value="insert">
<input id="addRole" class="am-btn am-btn-success" value="添加业绩报告" type="submit">
<input class="am-btn am-btn-success" type="reset" name="reset" value="重置">
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</body>
</html>