ADD file via upload

master
pqu3f57g4 2 years ago
parent b6a75cce22
commit 83a13e9054

@ -0,0 +1,223 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="pragma" content="no-cache"/>
<meta http-equiv="content-type" content="no-cache, must-revalidate"/>
<meta http-equiv="expires" content="Wed, 26 Feb 1997 08:21:57 GMT"/>
<title>食材</title>
<link href="/front/css/bootstrap.min.css" rel="stylesheet">
<link href="/front/css/my.css" rel="stylesheet">
<link href="/front/css/nav.css" rel="stylesheet">
<style>
[v-cloak] {
display: none;
}
</style>
</head>
<body>
<div id="wrapper" v-cloak>
<div class="container">
<!-- 头部开始 -->
<div class="nx-header">
<div style="display: flex;width: 100%; height: 30px; line-height: 30px; background-color: #eee;">
<div style="flex: 5; text-align: right">
<span v-if="user.name">
欢迎您,{{user.name}}
<a style="margin-right: 50px; color: blue" href="javascript:void(0)" @click="logout">退出</a>
</span>
<a v-if="!(user.name)" href="/end/page/login.html" target="_blank" style="margin-right: 10px; color: #666666">登录</a>
<a href="/end/page/register.html" target="_blank" style="margin-right: 30px; color: #666666">注册</a>
</div>
</div>
<div>
<ul style="display: flex; background-color: orange; height: 30px">
<li class="nav-item"><a href="index.html">首页</a></li>
<li class="nav-item"><a href="advertiserInfo.html">系统公告</a></li>
<li class="nav-item"><a href="foodsMenuInfo.html">菜谱</a></li>
<!-- <li class="nav-item"><a class="active" href="foodsMaterialInfo.html">食材</a></li>-->
<li class="nav-item"><a href="collectInfo.html">收藏</a></li>
<li class="nav-item"><a href="notesInfo.html">笔记</a></li>
<li class="nav-item"><a href="newsInfo.html">饮食资讯</a></li>
<li class="nav-item"><a href="messageInfo.html">趣味答题</a></li>
<li v-if="isShow" class="nav-item"><a href="/end/page/index.html" target="_blank">进入后台系统</a></li>
</ul>
</div>
</div>
<!-- 头部结束 -->
</div>
<div class="container" style="margin-top: 20px">
<div class="col-md-12" style="margin-bottom: 20px">
<input type="text" v-model="name" class="form-control" style="width: 30%" placeholder="搜索食材" @keyup.enter="loadTable(1)">
</div>
<div class="col-md-12">
<!--食材-->
<div>
<div style="width: 20%; display: inline-block; padding: 10px; text-align: center" v-for="item in tableData" :key="item.id">
<a :href="'foodsMaterialInfoDetail.html?id='+item.id">
<img style="width: 100%; height: 180px; border-radius: 10px" :src='"/files/download/" + item.fileId' alt="">
</a>
<div style="padding-top: 10px"><b>{{item.name}}</b></div>
</div>
</div>
<div style="text-align: center;">
<nav aria-label="Page navigation example">
<ul class="pagination">
<li class="page-item" :class="{ disabled: preActive }">
<a class="page-link" href="javascript:void(0)"
@click="loadTable(pageInfo.pageNum - 1)">上一页</a>
</li>
<li class="page-item">
<a class="page-link" href="javascript:void(0)" v-if="pageInfo.pageNum > 1" @click="loadTable(pageInfo.pageNum - 1)">{{pageInfo.pageNum - 1}}</a>
</li>
<li class="page-item disabled">
<a class="page-link" aria-disabled="true" href="javascript:void(0)">{{pageInfo.pageNum}}</a>
</li>
<li class="page-item">
<a class="page-link" href="javascript:void(0)" v-if="pageInfo.hasNextPage" @click="loadTable(pageInfo.pageNum + 1)">{{pageInfo.pageNum + 1}}</a>
</li>
<li class="page-item" :class="{ disabled: nextActive }">
<a class="page-link" href="javascript:void(0)" @click="loadTable(pageInfo.hasNextPage? (pageInfo.pageNum + 1) : pageInfo.pageNum)">下一页</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
<div id="myModal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
文件预览
<button type="button" class="close" data-dismiss="modal" aria-label="Close" @click="cancel">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body" style="height: 300px; text-align: center">
<img id="view-img" v-if="imgShow" :src="url" alt="" style="width: 400px;">
<video v-if="videoShow" id="video-control" :src="url" controls="controls" style="width: 80%">
您的浏览器不支持 video 标签。
</video>
</div>
</div>
</div>
</div>
</div>
<script src="js/jquery-1.10.2.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.metisMenu.js"></script>
<script src="js/vue2.6.11/axios.js"></script>
<script src="js/vue2.6.11/vue.min.js"></script>
<script>
new Vue({
el: '#wrapper',
data: {
imgShow: false,
videoShow: true,
url: '',
tableData: [],
pageInfo: {},
preActive: true,
nextActive: true,
user: {},
isShow: false,
name: ''
},
created: function() {
axios.get('/auth').then(res => {
if (res.data.code === '0') {
this.user = res.data.data;
if (this.user.level !== 3) {
this.isShow = true;
}
}
});
this.loadTable(1);
},
methods: {
loadTable(pageNum) {
let name = this.name ? this.name: 'all';
axios.get("/foodsMaterialInfo/page/" + name + "?pageNum=" + pageNum + "&pageSize=10").then(res => {
if (res.data.code === '0') {
this.tableData = res.data.data.list;
this.pageInfo = res.data.data;
this.preActive = !(this.pageInfo.hasPreviousPage);
this.nextActive = !(this.pageInfo.hasNextPage);
} else {
alert(res.data.msg);
}
});
},
viewModal: function (data) {
axios.get("/foodsMaterialInfo/" + data.id).then(res => {
if (res.data.code === '0') {
let info = res.data.data;
this.url = '/files/download/' + info.fileId;
if (/\.(png|jpg|gif|jpeg|webp)$/.test(info.fileName)) {
this.imgShow = true;
this.videoShow = false;
let img = new Image();
img.src = this.url;
// 加载完成执行
img.onload = function(){
let scale = img.width / img.height; // 图片的宽高比
let width = 270 * scale; // 先按照高度等比缩小
if(width > 570) { // 如果缩小后的宽度超出模态框模态框宽598px则再次按照宽度等比缩小
let height = 570 / scale;
$('#view-img').css('width', '570px').css('height', height + 'px');
} else {
$('#view-img').css('width', width + 'px').css('height', '270px');
}
};
} else if (/\.mp4$/.test(info.fileName)) {
this.imgShow = false;
this.videoShow = true;
} else {
alert('不支持该格式的预览');
return;
}
$("#myModal").modal('show');
} else {
alert(res.data.msg);
}
});
},
cancel: function () {
$("#video-control")[0].pause();
},
downFile: function (id) {
axios.get("/foodsMaterialInfo/" + id).then(res => {
if (res.data.code === '0') {
location.href = '/files/download/' + res.data.data.fileId;
} else {
alert(res.data.msg);
}
});
},
logout() {
axios.get("/logout").then(res => {
if(res.data.code === '0') {
location.href = '/front/index.html';
} else {
msg('error', res.data.msg);
}
})
}
}
})
</script>
</body>
</html>
Loading…
Cancel
Save