63 lines
1.7 KiB
HTML
63 lines
1.7 KiB
HTML
|
|
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Title</title>
|
|
|
|
<link rel="stylesheet" href="/public/bootstrap/css/bootstrap.min.css" >
|
|
<script>var siteUrl = '';</script>
|
|
<script src="/public/js/jquery.min.js" type="text/javascript"></script>
|
|
<script src="/public/bootstrap/js/bootstrap.min.js"></script>
|
|
<link href="/public/fontawesome/css/fontawesome-all.css" rel="stylesheet">
|
|
|
|
|
|
|
|
<link href="/public/js/dropzone/dropzone.css" type="text/css" rel="stylesheet" />
|
|
<script src="/public/js/dropzone/dropzone.js"></script>
|
|
|
|
<style>
|
|
.fs12{font-size: 12px;}
|
|
</style>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container">
|
|
|
|
|
|
<div class="alert alert-info fs12">上传文件只支持:zip,rar,doc,txt,ppt,pdf,docx格式 <span class="c9 fs12">(上传格式请在后台配置)</span></div>
|
|
|
|
<form id ="myAwesomeDropzone" style="width:100%;border:dashed" action="/index.php?app=attach&ac=upload&ts=do" class="dropzone">
|
|
<input type="hidden" name="albumid" value="{$albumid}">
|
|
</form>
|
|
|
|
|
|
<div class="text-center mt-3">
|
|
<a class="btn btn-sm btn-outline-info" href="{tsUrl('attach','editor',array('ts'=>'list'))}">取消上传</a>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
<script>
|
|
|
|
var locationurl = "{tsUrl('attach','editor',array('ts'=>'list'))}"
|
|
|
|
Dropzone.options.myAwesomeDropzone = {
|
|
paramName: "file", // The name that will be used to transfer the file
|
|
maxFilesize: 5000, // MB
|
|
acceptedFiles:".zip,.rar,.doc,.txt,.ppt,.pdf,.docx,.mp4",
|
|
accept: function(file, done) {
|
|
done();
|
|
|
|
},
|
|
queuecomplete:function (file) {
|
|
window.location = locationurl;
|
|
}
|
|
|
|
};
|
|
</script>
|
|
|
|
</body>
|
|
</html> |