|
|
|
@ -6,101 +6,251 @@
|
|
|
|
|
!-->
|
|
|
|
|
<template>
|
|
|
|
|
<div class="main-layout">
|
|
|
|
|
<el-form ref="form" :model="params" :rules="rules" label-width="120px">
|
|
|
|
|
<!-- 搜索 -->
|
|
|
|
|
<el-row :gutter="10">
|
|
|
|
|
<el-col :xs="24" :sm="20" :md="12" :lg="6" :xl="4">
|
|
|
|
|
<el-form-item label="名称">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="params.reportName"
|
|
|
|
|
size="mini"
|
|
|
|
|
clearable
|
|
|
|
|
placeholder="名称"
|
|
|
|
|
class="filter-item"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :xs="24" :sm="20" :md="12" :lg="6" :xl="4">
|
|
|
|
|
<el-form-item label="报表编码">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="params.reportCode"
|
|
|
|
|
size="mini"
|
|
|
|
|
clearable
|
|
|
|
|
placeholder="报表编码"
|
|
|
|
|
class="filter-item"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :xs="24" :sm="20" :md="4" :lg="4" :xl="4">
|
|
|
|
|
<el-button type="primary" size="mini" @click="search('form')"
|
|
|
|
|
>查询</el-button
|
|
|
|
|
>
|
|
|
|
|
<el-button type="danger" size="mini" @click="reset('form')"
|
|
|
|
|
>重置</el-button
|
|
|
|
|
>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-form>
|
|
|
|
|
<el-row :gutter="20">
|
|
|
|
|
<el-col v-for="groupItem in reportGroups" :key="groupItem.groupId" :span="6">
|
|
|
|
|
<div class="list">
|
|
|
|
|
<header>{{ groupItem.groupName }}</header>
|
|
|
|
|
<div v-for="report in groupItem.reportList" :key="report.reportId">
|
|
|
|
|
<p @click="openDesign(report.reportId)">{{ report.reportName }}</p>
|
|
|
|
|
<!-- <el-button type="success" size="mini" icon="el-icon-setting" circle plain @click="openDesign(report.reportId)" />
|
|
|
|
|
<el-button type="primary" size="mini" icon="el-icon-view" circle plain /> -->
|
|
|
|
|
<el-col v-for="item in list" :key="item.id" :span="6">
|
|
|
|
|
<div class="bg">
|
|
|
|
|
<img
|
|
|
|
|
class="bg-img"
|
|
|
|
|
:src="
|
|
|
|
|
item.reportImage == null || item.reportImage == ''
|
|
|
|
|
? require('../../../assets/images/charts.jpg')
|
|
|
|
|
: item.reportImage
|
|
|
|
|
"
|
|
|
|
|
alt=""
|
|
|
|
|
/>
|
|
|
|
|
<div class="content">
|
|
|
|
|
<header>{{ item.reportName }}</header>
|
|
|
|
|
<footer>
|
|
|
|
|
{{ item.updateTime }}
|
|
|
|
|
<div class="operation">
|
|
|
|
|
<el-button
|
|
|
|
|
icon="el-icon-share"
|
|
|
|
|
class="view"
|
|
|
|
|
type="text"
|
|
|
|
|
@click="share(item)"
|
|
|
|
|
v-permission="'bigScreenManage:share'"
|
|
|
|
|
/>
|
|
|
|
|
<el-button
|
|
|
|
|
icon="el-icon-view"
|
|
|
|
|
class="view"
|
|
|
|
|
type="text"
|
|
|
|
|
@click="viewDesign(item)"
|
|
|
|
|
v-permission="'bigScreenManage:view'"
|
|
|
|
|
/>
|
|
|
|
|
<el-button
|
|
|
|
|
icon="el-icon-edit"
|
|
|
|
|
class="edit"
|
|
|
|
|
type="text"
|
|
|
|
|
@click="openDesign(item)"
|
|
|
|
|
v-permission="'bigScreenManage:design'"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</footer>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
<div class="block">
|
|
|
|
|
<el-pagination
|
|
|
|
|
:total="totalCount"
|
|
|
|
|
:page-sizes="[8, 20, 50, 100]"
|
|
|
|
|
:page-size="params.pageSize"
|
|
|
|
|
:current-page="params.pageNumber"
|
|
|
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
|
|
|
@size-change="handleSizeChange"
|
|
|
|
|
@current-change="handleCurrentChange"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<Share
|
|
|
|
|
:visib="visibleForShareDialog"
|
|
|
|
|
:reportCode="reportCodeForShareDialog"
|
|
|
|
|
:reportName="reportNameForShareDialog"
|
|
|
|
|
@handleClose="visibleForShareDialog = false"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import Share from "@/views/report/report/components/share";
|
|
|
|
|
import { reportPageList } from "@/api/report";
|
|
|
|
|
export default {
|
|
|
|
|
name: 'Login',
|
|
|
|
|
components: {},
|
|
|
|
|
name: "Login",
|
|
|
|
|
components: { Share },
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
reportGroups: [
|
|
|
|
|
{
|
|
|
|
|
groupId: 1,
|
|
|
|
|
groupName: '时效类',
|
|
|
|
|
reportList: [
|
|
|
|
|
{
|
|
|
|
|
reportId: 1,
|
|
|
|
|
reportName: 'excel报表1',
|
|
|
|
|
list: [],
|
|
|
|
|
rules: {},
|
|
|
|
|
totalCount: 0,
|
|
|
|
|
totalPage: 0,
|
|
|
|
|
params: {
|
|
|
|
|
reportCode: "",
|
|
|
|
|
reportName: "",
|
|
|
|
|
reportType: 'report_excel',
|
|
|
|
|
pageNumber: 1,
|
|
|
|
|
pageSize: 8,
|
|
|
|
|
order: "DESC",
|
|
|
|
|
sort: "update_time"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
reportId: 2,
|
|
|
|
|
reportName: 'excel报表2',
|
|
|
|
|
// 分享
|
|
|
|
|
visibleForShareDialog: false,
|
|
|
|
|
reportCodeForShareDialog: "",
|
|
|
|
|
reportNameForShareDialog: ""
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
reportId: 3,
|
|
|
|
|
reportName: 'excel报表3',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
mounted() {},
|
|
|
|
|
created() {
|
|
|
|
|
this.queryByPage();
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
groupId: 2,
|
|
|
|
|
groupName: '货物量',
|
|
|
|
|
reportList: [
|
|
|
|
|
{
|
|
|
|
|
reportId: 1,
|
|
|
|
|
reportName: 'excel报表1',
|
|
|
|
|
methods: {
|
|
|
|
|
// 查询
|
|
|
|
|
search() {
|
|
|
|
|
this.params.pageNumber = 1;
|
|
|
|
|
this.queryByPage();
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
reportId: 2,
|
|
|
|
|
reportName: 'excel报表2',
|
|
|
|
|
// 重置
|
|
|
|
|
reset(formName) {
|
|
|
|
|
this.$refs[formName].resetFields();
|
|
|
|
|
this.params.reportName = "";
|
|
|
|
|
this.params.reportCode = "";
|
|
|
|
|
this.params.pageNumber = 1;
|
|
|
|
|
this.queryByPage();
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
reportId: 3,
|
|
|
|
|
reportName: 'excel报表3',
|
|
|
|
|
async queryByPage() {
|
|
|
|
|
const res = await reportPageList(this.params);
|
|
|
|
|
if (res.code != "200") return;
|
|
|
|
|
this.listLoading = true;
|
|
|
|
|
this.list = res.data.records;
|
|
|
|
|
this.list.forEach(value => {
|
|
|
|
|
value["reportNameCode"] =
|
|
|
|
|
value.reportName + "[" + value.reportCode + "]";
|
|
|
|
|
});
|
|
|
|
|
this.totalCount = res.data.total;
|
|
|
|
|
this.totalPage = res.data.pages;
|
|
|
|
|
this.listLoading = false;
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
handleSizeChange(val) {
|
|
|
|
|
this.params.pageSize = val;
|
|
|
|
|
this.queryByPage();
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
}
|
|
|
|
|
handleCurrentChange(val) {
|
|
|
|
|
this.params.pageNumber = val;
|
|
|
|
|
this.queryByPage();
|
|
|
|
|
},
|
|
|
|
|
mounted() {},
|
|
|
|
|
methods: {
|
|
|
|
|
openDesign(reportId) {
|
|
|
|
|
var routeUrl = this.$router.resolve({ path: '/excelreport/designer', query: { reportCode: reportId }})
|
|
|
|
|
window.open(routeUrl.href, '_blank')
|
|
|
|
|
// 分享
|
|
|
|
|
share(val) {
|
|
|
|
|
//excel暂不支持
|
|
|
|
|
this.$message.warning("暂不支持excel报表分享");
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
this.reportCodeForShareDialog = val.reportCode;
|
|
|
|
|
this.reportNameForShareDialog = val.reportName;
|
|
|
|
|
this.visibleForShareDialog = true;
|
|
|
|
|
},
|
|
|
|
|
openDesign(val) {
|
|
|
|
|
var routeUrl = this.$router.resolve({
|
|
|
|
|
path: "/excelreport/designer",
|
|
|
|
|
query: {
|
|
|
|
|
reportCode: val.reportCode,
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
window.open(routeUrl.href, "_blank");
|
|
|
|
|
},
|
|
|
|
|
viewDesign(val) {
|
|
|
|
|
var routeUrl = this.$router.resolve({
|
|
|
|
|
path: "/excelreport/viewer",
|
|
|
|
|
query: { reportCode: val.reportCode }
|
|
|
|
|
});
|
|
|
|
|
window.open(routeUrl.href, "_blank");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
.main-layout {
|
|
|
|
|
padding: 20px;
|
|
|
|
|
position: relative;
|
|
|
|
|
height: auto;
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
.list {
|
|
|
|
|
background: #fff;
|
|
|
|
|
padding: 10px;
|
|
|
|
|
margin: 10px 0;
|
|
|
|
|
header {
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 40px;
|
|
|
|
|
border-bottom: 1px solid #eee;
|
|
|
|
|
line-height: 80px;
|
|
|
|
|
}
|
|
|
|
|
.bg {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 200px;
|
|
|
|
|
position: relative;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
margin: 10px 0;
|
|
|
|
|
border: 12px solid white;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.bg .bg-img {
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
filter: blur(6px);
|
|
|
|
|
z-index: 2;
|
|
|
|
|
}
|
|
|
|
|
p {
|
|
|
|
|
.content {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
position: absolute;
|
|
|
|
|
color: #fff;
|
|
|
|
|
left: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
z-index: 3;
|
|
|
|
|
}
|
|
|
|
|
footer {
|
|
|
|
|
width: 100%;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
padding: 16px;
|
|
|
|
|
line-height: 30px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: #666;
|
|
|
|
|
position: absolute;
|
|
|
|
|
z-index: 3;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
.operation {
|
|
|
|
|
float: right;
|
|
|
|
|
.view,
|
|
|
|
|
.edit {
|
|
|
|
|
color: #fff;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
margin: 5px 0;
|
|
|
|
|
&:hover {
|
|
|
|
|
background: rgb(234, 237, 252);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|