index.vue 476 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template>
  2. <div class="table_total">
  3. <div class="table_header">
  4. <p>单表</p>
  5. <el-divider></el-divider>
  6. </div>
  7. <!-- 内容 -->
  8. <div class="table_nav">
  9. </div>
  10. </div>
  11. </template>
  12. <script>
  13. </script>
  14. <style lang="scss">
  15. </style>
  16. <style scoped lang="scss">
  17. .table_total{
  18. background-color: #eef0ff;
  19. padding: 20px;
  20. // 头部
  21. .table_header{
  22. background-color: #fff;
  23. }
  24. }
  25. p{
  26. margin: 0;
  27. }
  28. </style>