5 changed files with 140 additions and 10 deletions
@ -0,0 +1,21 @@ |
|||
<template> |
|||
<!-- 新建任务 --> |
|||
<div class=''></div> |
|||
</template> |
|||
|
|||
<script> |
|||
export default { |
|||
data() { |
|||
return {}; |
|||
}, |
|||
created() {}, |
|||
methods: {}, |
|||
components:{}, |
|||
computed:{}, |
|||
watch: {}, |
|||
} |
|||
</script> |
|||
|
|||
<style lang='scss' scoped> |
|||
|
|||
</style> |
|||
@ -0,0 +1,40 @@ |
|||
<template> |
|||
<!-- 任务详情 --> |
|||
<div class='' > |
|||
<div style="width: 100%;height: 100%;border: 1px solid red;" v-show="!showSummary"> |
|||
<el-button @click="handelClickShowSummary" type="text">查看文件汇总按钮</el-button> |
|||
</div> |
|||
<div v-if="showSummary"> |
|||
<excel-summary @close="closeSummary"></excel-summary> |
|||
</div> |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
import excelSummary from "./excel-summary.vue"; |
|||
export default { |
|||
data() { |
|||
return { |
|||
showSummary:false |
|||
}; |
|||
}, |
|||
created() {}, |
|||
methods: { |
|||
handelClickShowSummary(){ |
|||
this.showSummary = true |
|||
}, |
|||
closeSummary(){ |
|||
this.showSummary = false; |
|||
} |
|||
}, |
|||
components:{ |
|||
excelSummary |
|||
}, |
|||
computed:{}, |
|||
watch: {}, |
|||
} |
|||
</script> |
|||
|
|||
<style lang='scss' scoped> |
|||
|
|||
</style> |
|||
@ -0,0 +1,39 @@ |
|||
<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> |
|||
@ -0,0 +1,29 @@ |
|||
<template> |
|||
<!-- 文件查看 --> |
|||
<div class=''> |
|||
文件查看 |
|||
<el-button type="primary" round @click="handelClickBack">返回</el-button> |
|||
|
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
export default { |
|||
data() { |
|||
return {}; |
|||
}, |
|||
created() {}, |
|||
methods: { |
|||
handelClickBack(){ |
|||
this.$emit('close') |
|||
}, |
|||
}, |
|||
components:{}, |
|||
computed:{}, |
|||
watch: {}, |
|||
} |
|||
</script> |
|||
|
|||
<style lang='scss' scoped> |
|||
|
|||
</style> |
|||
Loading…
Reference in new issue