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.
54 lines
920 B
54 lines
920 B
![]()
2 years ago
|
<template>
|
||
|
<div class="app-container">
|
||
|
<el-card class="box-card">
|
||
|
<div slot="header" class="clearfix"><span>下载汇总数据</span></div>
|
||
|
<div>
|
||
|
<el-button>在途数据下载</el-button>
|
||
|
<el-button>销售数据下载</el-button>
|
||
|
</div>
|
||
|
</el-card>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'KucunXssjglIndex',
|
||
|
// components: { },
|
||
|
data() {
|
||
|
return {
|
||
|
name: '销售数据管理'
|
||
|
}
|
||
|
},
|
||
|
created() {
|
||
|
// 初始化变量
|
||
|
this.init()
|
||
|
// 加载列表
|
||
|
// this.getList()
|
||
|
},
|
||
|
methods: {
|
||
|
init() {},
|
||
|
getList() {},
|
||
|
// 返回
|
||
|
handleReturn() {
|
||
|
this.$router.go(-1)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
<style scoped>
|
||
|
.wenjiantit {
|
||
|
font-size: 16px;
|
||
|
font-weight: bold;
|
||
|
margin: 25px 0 10px 0;
|
||
|
}
|
||
|
.forminfo {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
.listcon {
|
||
|
height: calc(100vh - 250px);
|
||
|
overflow-y: auto;
|
||
|
overflow-x: hidden;
|
||
|
}
|
||
|
</style>
|