码迷,mamicode.com
首页 > 其他好文 > 详细

element随笔

时间:2019-10-28 00:43:17      阅读:67      评论:0      收藏:0      [点我收藏+]

标签:select   scl   classname   turn   git   不能   row   一个   src   

时间选择框el-date-picker和select框数据选不上:

【解决】用v-model="searchData.searchDate",不能用:model="searchData.searchDate"

Table改变其中某一行的样式:

【解决】
<el-table>标签中有一个:row-class-name="getRowClassName"属性
getRowClassName是一个方法,返回一个class的名称

getRowClassName({row,rowIndex}){
    if(row.detail == 10 || row.detail == 12){
        return "remind";
    }
}
 .el-table .remind {
     color: red;
 }

Table改变某个单元格的样式:

技术图片

【解决】<el-table>标签中有一个:cell-class-name="getVipStatusClass"属性,getVipStatusClass是一个方法,返回一个class的名称。

getVipStatusClass({row,column,rowIndex,columnIndex}){
    if(row.status == 1){
        if(columnIndex == 4){
            return "effective";
        }
    }
    if(row.status == 0){
        if(columnIndex == 4){
            return "ineffective";
        }
    }
}
.el-table .effective{
    color: #70B603;
}

.el-table .ineffective{
    color: #AAA;
}

element随笔

标签:select   scl   classname   turn   git   不能   row   一个   src   

原文地址:https://www.cnblogs.com/lqq7456/p/11750008.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!