el-table\vxe-table深色背景Css样式

2024-04-03 06:52

本文主要是介绍el-table\vxe-table深色背景Css样式,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

一、el-table

1、HTML
<div class="table"><el-table:data="tableData":cell-class-name="tabCellClassName":row-class-name="tabRowClassName"border><!-- 序号 --><el-table-column type="index" label="序号" width="50"></el-table-column><!-- 表格内容 --><el-table-column v-for="item in tableHead" :key="item.id" :label="item.label" :prop="item.key"></el-table-column></el-table>
</table>

2、Script
<script>
export default {name: "table",components: {},props: {},data() {return {tableHead: [ {id:1,key:"name",label:"姓名"},{id:2,key:"age",label:"年龄"},{id:3,key:"sex",label:"性别"},],tableData: [{name: "张三",age: 18,sex: "男",},],};},computed: {},created() {},mounted() {},methods: {// cell-class-nametabCellClassName({ column, columnIndex }) {column.index = columnIndex + 1;},// row-class-nametabRowClassName({ row, rowIndex }) {row.index = rowIndex + 1;},},
};
</script>

3、Css
.table{width:100%;height:100vh;background-color: rgba(#041a07, 0.7);/deep/ .el-table::before {background: #4caa81;}/deep/ .el-table::after {background: #4caa81;}/deep/ .el-table {width: 100%;height: 100%;background-color: transparent;border-color: #4caa81;display: flex;flex-direction: column;// 表头背景颜色设置& tr {background-color: transparent !important;}// th,td样式设置th,td {text-align: center;border-color: #4caa81;color: #fff;background-color: transparent !important;}.el-table__cell {padding: 5px 0px !important;}.cell {padding: 0px !important;}.el-table__body-wrapper {width: 100%;flex: 1;overflow-y: auto;}}
}

二、vxe-table

1、HTML
<template><div class="VxeTable"><!-- 表格 --><vxe-tableref="xTable":loading="loading"show-overflowshow-header-overflowheight="90%":row-config="{ isHover: true }":data="tableData">><vxe-columnv-for="item in tableHead":key="item.id":field="item.key":title="item.label"></vxe-column><slot></slot></vxe-table><!-- 分页 --><vxe-pagersize="mini":loading="loading":current-page="tablePage.currentPage":page-size="tablePage.pageSize":page-sizes="tablePage.pageSizes":total="tablePage.totalResult":layouts="['PrevPage', 'JumpNumber', 'NextPage', 'Sizes', 'Total']"@page-change="handlePageChange"></vxe-pager></div>
</template>

2、Script
<script>
export default {data() {return {loading: false,tablePage: {currentPage: 1,pageSize: 10,pageSizes: [5, 10, 15, 20],totalResult: 0,},tableHead: [ {id:1,key:"name",label:"姓名"},{id:2,key:"age",label:"年龄"},{id:3,key:"sex",label:"性别"},],tableData: [{name: "张三",age: 18,sex: "男",},],};},props: {},methods: {// 页码改变handlePageChange({ type, pageSize, currentPage }) {console.log(`页码改变,类型:${type}, 页码:${currentPage}, 每页条数:${pageSize}`)},},created() {},mounted() {},
};
</script>

3、Css
<style lang="less" scoped>
.VxeTable {width: 100%;height: 100%;// 表格/deep/ .vxe-table {width: 100%;box-sizing: border-box;.vxe-table--border-line {border-color: #026133;}// 单元格样式.vxe-body--column,.vxe-footer--column,.vxe-header--column {background-image: none !important;border-bottom: 1px solid #026133 !important;color: #fff !important;}// 单元格文本居中.vxe-cell {display: flex;justify-content: center;}// 表头背景颜色.vxe-table--header-wrapper {background-color: #065730 !important;// 表头底部线条.vxe-table--header-border-line {border-bottom: none;}}// 表格内容、底部背景颜色.vxe-table--body-wrapper table,.vxe-table--footer-wrapper table {background-color: transparent !important;}.vxe-header--gutter {background-image: linear-gradient(#065730, #065730) !important;}// 行hover样式.vxe-body--row.row--hover {background: #06322d !important;}}// 分页/deep/ .vxe-pager {background-color: transparent !important;width: 100%;height: 10%;text-align: center;color: #fff !important;// 自定义样式.vxe-pager--prev-btn,.vxe-pager--num-btn,.vxe-pager--next-btn,.vxe-input--inner {background-color: transparent !important;border: 1px solid #026133;color: #fff !important;}// vxe-select获取焦点时边框颜色.vxe-input:not(.is--disabled).is--active .vxe-input--inner {border: 1px solid #026133;}// 上一页,下一页禁用时样式.vxe-pager--prev-btn.is--disabled,.vxe-pager--next-btn.is--disabled {background-color: #69706c !important;border-color: #69706c !important;color: #999 !important;}// 上一页、下一页、页码选中时样式.vxe-pager--prev-btn:not(.is--disabled):focus,.vxe-pager--num-btn:not(.is--disabled):focus,.vxe-pager--next-btn:not(.is--disabled):focus {box-shadow: none;}// 当前页码选中时样式.vxe-pager--num-btn.is--active {background-color: #026133 !important;}}
}
</style>

这篇关于el-table\vxe-table深色背景Css样式的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/872204

相关文章

Python将博客内容html导出为Markdown格式

《Python将博客内容html导出为Markdown格式》Python将博客内容html导出为Markdown格式,通过博客url地址抓取文章,分析并提取出文章标题和内容,将内容构建成html,再转... 目录一、为什么要搞?二、准备如何搞?三、说搞咱就搞!抓取文章提取内容构建html转存markdown

在React中引入Tailwind CSS的完整指南

《在React中引入TailwindCSS的完整指南》在现代前端开发中,使用UI库可以显著提高开发效率,TailwindCSS是一个功能类优先的CSS框架,本文将详细介绍如何在Reac... 目录前言一、Tailwind css 简介二、创建 React 项目使用 Create React App 创建项目

vue使用docxtemplater导出word

《vue使用docxtemplater导出word》docxtemplater是一种邮件合并工具,以编程方式使用并处理条件、循环,并且可以扩展以插入任何内容,下面我们来看看如何使用docxtempl... 目录docxtemplatervue使用docxtemplater导出word安装常用语法 封装导出方

GORM中Model和Table的区别及使用

《GORM中Model和Table的区别及使用》Model和Table是两种与数据库表交互的核心方法,但它们的用途和行为存在著差异,本文主要介绍了GORM中Model和Table的区别及使用,具有一... 目录1. Model 的作用与特点1.1 核心用途1.2 行为特点1.3 示例China编程代码2. Tab

Vue中组件之间传值的六种方式(完整版)

《Vue中组件之间传值的六种方式(完整版)》组件是vue.js最强大的功能之一,而组件实例的作用域是相互独立的,这就意味着不同组件之间的数据无法相互引用,针对不同的使用场景,如何选择行之有效的通信方式... 目录前言方法一、props/$emit1.父组件向子组件传值2.子组件向父组件传值(通过事件形式)方

css中的 vertical-align与line-height作用详解

《css中的vertical-align与line-height作用详解》:本文主要介绍了CSS中的`vertical-align`和`line-height`属性,包括它们的作用、适用元素、属性值、常见使用场景、常见问题及解决方案,详细内容请阅读本文,希望能对你有所帮助... 目录vertical-ali

浅析CSS 中z - index属性的作用及在什么情况下会失效

《浅析CSS中z-index属性的作用及在什么情况下会失效》z-index属性用于控制元素的堆叠顺序,值越大,元素越显示在上层,它需要元素具有定位属性(如relative、absolute、fi... 目录1. z-index 属性的作用2. z-index 失效的情况2.1 元素没有定位属性2.2 元素处

Python实现html转png的完美方案介绍

《Python实现html转png的完美方案介绍》这篇文章主要为大家详细介绍了如何使用Python实现html转png功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 1.增强稳定性与错误处理建议使用三层异常捕获结构:try: with sync_playwright(

Vue 调用摄像头扫描条码功能实现代码

《Vue调用摄像头扫描条码功能实现代码》本文介绍了如何使用Vue.js和jsQR库来实现调用摄像头并扫描条码的功能,通过安装依赖、获取摄像头视频流、解析条码等步骤,实现了从开始扫描到停止扫描的完整流... 目录实现步骤:代码实现1. 安装依赖2. vue 页面代码功能说明注意事项以下是一个基于 Vue.js

CSS @media print 使用详解

《CSS@mediaprint使用详解》:本文主要介绍了CSS中的打印媒体查询@mediaprint包括基本语法、常见使用场景和代码示例,如隐藏非必要元素、调整字体和颜色、处理链接的URL显示、分页控制、调整边距和背景等,还提供了测试方法和关键注意事项,并分享了进阶技巧,详细内容请阅读本文,希望能对你有所帮助...