12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <div class="table_total">
- <div class="table_header">
- <p>单表</p>
- <el-divider></el-divider>
- </div>
- <!-- 内容 -->
- <div class="table_nav">
-
- </div>
- </div>
- </template>
- <script>
- </script>
- <style lang="scss">
- </style>
- <style scoped lang="scss">
- .table_total{
- background-color: #eef0ff;
- padding: 20px;
- // 头部
- .table_header{
- background-color: #fff;
- }
- }
- p{
- margin: 0;
- }
- </style>
|