index.vue 997 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <template>
  2. <div class="excelview">
  3. <div class="view">
  4. <ExcelView />
  5. </div>
  6. <!-- <div class="oprea">
  7. <el-button type="primary" class="btn">提交</el-button>
  8. <el-button type="primary" class="btn">导出</el-button>
  9. <el-button type="primary" class="btn">导入</el-button>
  10. <el-button type="primary" class="btn">打印</el-button>
  11. </div> -->
  12. </div>
  13. </template>
  14. <script setup>
  15. import ExcelView from "@/views/excel/components/LuckySheet.vue";
  16. </script>
  17. <style lang="scss" scoped>
  18. .excelview {
  19. display: flex;
  20. width: 100%;
  21. height: 100%;
  22. .view {
  23. position: relative;
  24. width: 80%;
  25. height: 80%;
  26. }
  27. .oprea {
  28. flex: 1;
  29. padding: 0 20px;
  30. width: 100%;
  31. height: 100%;
  32. display: flex;
  33. flex-direction: column;
  34. align-items: center;
  35. justify-content: space-evenly;
  36. .btn {
  37. margin: 0px !important;
  38. width: 80%;
  39. border-radius: 16px;
  40. height: 50px;
  41. font-size: $f20;
  42. }
  43. }
  44. }
  45. </style>