epmet pc工作端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
869 B

<template>
<!-- 文件汇总 -->
<div class=''>
<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>
</div>
<div v-if="showView">
<excel-view @close="close"></excel-view>
</div>
</div>
</template>
<script>
import excelView from "./excel-view.vue";
export default {
data() {
return {
showView:false
};
},
created() { },
methods: {
close(){
this.showView = false
},
handelClickBack(){
this.$emit('close')
}
},
components: { excelView },
computed: {},
watch: {},
}
</script>
<style lang='scss' scoped></style>