|
|
@ -1,10 +1,14 @@ |
|
|
|
<template> |
|
|
|
<!-- 文件汇总 --> |
|
|
|
<div class=''> |
|
|
|
<div class="el-card"> |
|
|
|
<div v-show="!showView"> |
|
|
|
<div>文件汇总</div> |
|
|
|
<el-button type="primary" round @click="showView = true">去数据</el-button> |
|
|
|
<el-button type="primary" round @click="handelClickBack">返回</el-button> |
|
|
|
<h3 class="title">汇总文件</h3> |
|
|
|
<div class="item flex flex-y flex-center-deputy"> |
|
|
|
<img :src="require(`@/assets/images/index/Excel.png`)" alt=""> |
|
|
|
<div>周期更新表</div> |
|
|
|
</div> |
|
|
|
<!-- <el-button type="primary" round @click="showView = true">去数据</el-button> |
|
|
|
<el-button type="primary" round @click="handelClickBack">返回</el-button> --> |
|
|
|
</div> |
|
|
|
<div v-if="showView"> |
|
|
|
<excel-view @close="close"></excel-view> |
|
|
@ -14,11 +18,46 @@ |
|
|
|
|
|
|
|
<script> |
|
|
|
import excelView from "./excel-view.vue"; |
|
|
|
import { requestPost } from "@/js/dai/request"; |
|
|
|
|
|
|
|
export default { |
|
|
|
data() { |
|
|
|
return { |
|
|
|
showView:false |
|
|
|
showView:false, |
|
|
|
list:[ |
|
|
|
{ |
|
|
|
title:'嘉定山社区', |
|
|
|
state:'未提交' |
|
|
|
}, |
|
|
|
{ |
|
|
|
title:'嘉定山社区', |
|
|
|
state:'未提交' |
|
|
|
}, |
|
|
|
{ |
|
|
|
title:'嘉定山社区', |
|
|
|
state:'未提交' |
|
|
|
}, |
|
|
|
{ |
|
|
|
title:'嘉定山社区', |
|
|
|
state:'未提交' |
|
|
|
}, |
|
|
|
{ |
|
|
|
title:'嘉定山社区', |
|
|
|
state:'未提交' |
|
|
|
}, |
|
|
|
{ |
|
|
|
title:'嘉定山社区', |
|
|
|
state:'未提交' |
|
|
|
}, |
|
|
|
{ |
|
|
|
title:'嘉定山社区', |
|
|
|
state:'未提交' |
|
|
|
}, |
|
|
|
{ |
|
|
|
title:'嘉定山社区', |
|
|
|
state:'未提交' |
|
|
|
}, |
|
|
|
] |
|
|
|
}; |
|
|
|
}, |
|
|
|
created() { }, |
|
|
@ -31,9 +70,37 @@ export default { |
|
|
|
} |
|
|
|
}, |
|
|
|
components: { excelView }, |
|
|
|
computed: {}, |
|
|
|
computed: { |
|
|
|
|
|
|
|
}, |
|
|
|
watch: {}, |
|
|
|
} |
|
|
|
</script> |
|
|
|
|
|
|
|
<style lang='scss' scoped></style> |
|
|
|
<style lang='scss' scoped> |
|
|
|
.title{ |
|
|
|
position: relative; |
|
|
|
&::after{ |
|
|
|
content: ''; |
|
|
|
width: 3px; |
|
|
|
height: 5px; |
|
|
|
background: #5493ff; |
|
|
|
display: block; |
|
|
|
position: absolute; |
|
|
|
top: 0; |
|
|
|
left: 0; |
|
|
|
} |
|
|
|
} |
|
|
|
.el-card{ |
|
|
|
margin: 10px auto; |
|
|
|
padding: 0 16px; |
|
|
|
box-sizing: border-box; |
|
|
|
width: calc(100% - 40px); |
|
|
|
} |
|
|
|
.item{ |
|
|
|
img{ |
|
|
|
width: 80px; |
|
|
|
height: 80px; |
|
|
|
} |
|
|
|
} |
|
|
|
</style> |
|
|
|