-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaddPaper.html
More file actions
102 lines (101 loc) · 6.34 KB
/
addPaper.html
File metadata and controls
102 lines (101 loc) · 6.34 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="renderer" content="webkit">
<meta name="viewport" content="width=device-width" />
<title>新建论文</title>
<link rel="stylesheet" href="font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="layui/css/layui.css" />
<link rel="stylesheet" href="css/master.css" />
<link rel="stylesheet" href="css/gloable.css" />
<link rel="stylesheet" href="css/nprogress.css" />
<link rel="stylesheet" href="css/blog.css" />
</head>
<body>
<div class="header">
</div>
<header class="gird-header">
<div class="header-fixed">
<div class="header-inner">
<a href="javascript:void(0)" class="header-logo" id="logo">Preing</a>
<nav class="nav" id="nav">
<ul>
<li><a href="index.html">首页</a></li>
<li><a href="PrgManage.html">上传资料信息管理</a></li>
<li><a href="PaperManage.html">资源互动平台</a></li>
<li><a href="account.html">个人中心</a></li>
<li><a href="message.html">消息中心</a></li>
</ul>
</nav>
<a class="phone-menu">
<i></i>
<i></i>
<i></i>
</a>
</div>
</div>
</header>
<div class="doc-container" id="doc-container">
<div class="container-fixed">
<div class="col-content" style="width:100%">
<div class="inner">
<article class="article-list">
<input type="hidden" value="@Model.BlogTypeID" id="blogtypeid" />
<section class="article-item">
<aside class="title" style="line-height:1.5;">
<span class="fc-blue"><h4 id="type1">新建论文</h4></span>
</aside>
<div class="content artiledetail" style="border-bottom: 1px solid #e1e2e0; padding-bottom: 20px;">
<div style="margin-top:10px;font-size:1.1rem;">论文名称:<input type="text" class="form-control" style="width:50%;" name="search" id="title" placeholder="请输入论文名称"></div>
<div style="margin-top:10px;font-size:1.1rem;">作者:<input type="text" class="form-control" style="width:50%;" name="search" id="author" placeholder="请输入作者"></div>
<div style="margin-top:10px;font-size:1.1rem;">论文来源:<input type="text" class="form-control" style="width:50%;" name="search" id="source" placeholder="请输入论文来源"></div>
<div style="margin-top:10px;font-size:1.1rem;">学科专业:<input type="text" class="form-control" style="width:50%;" name="search" id="major" placeholder="请输入学科专业"></div>
<div style="margin-top:10px;font-size:1.1rem;">
论文类型:
<select id="paperType">
<option value="1">证明型</option>
<option value="2">综述型</option>
<option value="3">实验型</option>
<option value="4">工具型</option>
<option value="5">数据集型</option>
</select>
</div>
<div style="margin-top:10px;font-size:1.1rem;">DOI:<input type="text" class="form-control" style="width:50%;" name="search" id="doi" placeholder="若无请不填"></div>
<div style="margin-top:10px;font-size:1.1rem;">论文发表时间:<input type="date" id="publishDate" style="width:50%;" class="information"><br></div>
<div style="margin-top:10px;font-size:1.1rem;">论文摘要:<div><textarea type="text" class="form-control" style="width:50%;" id="summary" name="search" placeholder="请填写论文摘要" style="border:1px black solid;width:50%;padding:5px;"></textarea></div></div>
<div style="margin-top:10px;font-size:1.1rem;">论文关键词:<input type="text" class="form-control" style="width:50%;" id="tag" name="search" placeholder="请输入论文关键词"></div>
<div style="margin-top:10px;font-size:1.1rem;">论文分数:<input type="text" class="form-control" style="width:50%;" name="search" id="score" value="此项由管理员填写" disabled="disabled"></div>
<div style="margin-top:10px;font-size:1.1rem;">附件上传:<input type="file" class="form-control" style="width:50%;" id="file" name="search" placeholder="输入项目成果"></div>
</div>
<button class="layui-btn" style="margin-top:10px;" onclick="uploadInfo()">新增论文</button>
</section>
</article>
</div>
</div>
</div>
</div>
<footer class="grid-footer">
<div class="footer-fixed">
<div class="copyright">
<div class="info">
<div class="contact">
<a href="javascript:void(0)" class="github" target="_blank"><i class="fa fa-github"></i></a>
<a href="#" class="qq" target="_blank" ><i class="fa fa-qq"></i></a>
<a href="#" class="email" target="_blank" ><i class="fa fa-envelope"></i></a>
<a href="javascript:void(0)" class="weixin"><i class="fa fa-weixin"></i></a>
</div>
</div>
</div>
</div>
</footer>
<script src="layui/layui.js"></script>
<script src="js/yss/gloable.js"></script>
<script src="js/plugins/nprogress.js"></script>
<script src="js/pagecomment.js"></script>
<script>NProgress.start();</script>
<script src="js/addPaper.js"> </script>
<script src="https://code.jquery.com/jquery-3.0.0.min.js"></script>
</body>
</html>