123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <template>
- <div class="excelview">
- <div class="view">
- <ExcelView />
- </div>
- <!-- <div class="oprea">
- <el-button type="primary" class="btn">提交</el-button>
- <el-button type="primary" class="btn">导出</el-button>
- <el-button type="primary" class="btn">导入</el-button>
- <el-button type="primary" class="btn">打印</el-button>
- </div> -->
- </div>
- </template>
- <script setup>
- import ExcelView from "@/views/excel/components/LuckySheet.vue";
- </script>
- <style lang="scss" scoped>
- .excelview {
- display: flex;
- width: 100%;
- height: 100%;
- .view {
- position: relative;
- width: 80%;
- height: 80%;
- }
- .oprea {
- flex: 1;
- padding: 0 20px;
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-evenly;
- .btn {
- margin: 0px !important;
- width: 80%;
- border-radius: 16px;
- height: 50px;
- font-size: $f20;
- }
- }
- }
- </style>
|