php网站开发第三章,seo优化效果怎么样,wordpress 页面目录,iis网站的建设项目场景#xff1a;
相关背景#xff1a;
vue 项目中 使用vxe-grid 表格中给表格的表头设置特殊的格式#xff0c;并为指定的列文字设置颜色 实现方案#xff1a; 具体实现方法及步骤#xff1a; 一、给表格的表头设置特殊的格式 实现方式一#xff1a; :header-row-s…项目场景
相关背景
vue 项目中 使用vxe-grid 表格中给表格的表头设置特殊的格式并为指定的列文字设置颜色 实现方案 具体实现方法及步骤 一、给表格的表头设置特殊的格式 实现方式一 :header-row-style{background-color: #ffffff,color:#7a8794}实现方式二 :header-row-styletableHeaderColor// 调用方法
tableHeaderColor({row , column , rowIndex , columnIndex}){if(columnIndex 1) {return color: #0a8cea; // 给该表头设置为蓝色}return color: #000; // 默认颜色},二、给表格的表头设置特殊的格式 步骤一 添加属性:cell-style“cell” 调用 cell 方法
步骤二 method里声明 cell 方法
cell({row , column , rowIndex , columnIndex}){ if(columnIndex 1) { return ‘color: #0a8cea’; // 给指定列设置蓝色 } return ‘color: #000’; // 默认颜色 },