| | |
| | | <meta charset="utf-8"/> |
| | | <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
| | | <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> |
| | | <title>欢迎使用!</title> |
| | | <title>BlueDeer</title> |
| | | <link rel="stylesheet" href="assets/layui/css/layui.css"> |
| | | <link rel="stylesheet" href="assets/common.css"> |
| | | <link rel="shorcut icon" href="assets/images/logo.png"> |
| | |
| | | <div class="header"> |
| | | <div class="layui-container"> |
| | | <div class="layui-logo"> |
| | | <img src="assets/images/logo.png"/><cite><span><a href="/">File Management System</a></span></cite> |
| | | <img src="https://static.tohours.com/jren/images/bluedeer.jpg"/><cite><span><a href="./">File Management System</a></span></cite> |
| | | </div> |
| | | </div> |
| | | </div> |
| | |
| | | // 查看 |
| | | $('#open').click(function () { |
| | | var fullName = mUrl.substr(7); |
| | | window.open("/file?p=" + fullName + "&d=0", '_blank'); |
| | | window.open("file?p=" + fullName + "&d=0", '_blank'); |
| | | }); |
| | | |
| | | // 下载 |
| | | $('#down').click(function () { |
| | | var fullName = mUrl.substr(7); |
| | | window.open("/file?p=" + fullName + "&d=1", '_blank'); |
| | | window.open("file?p=" + fullName + "&d=1", '_blank'); |
| | | }); |
| | | |
| | | // 删除 |