element随笔
Posted lqq7456
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了element随笔相关的知识,希望对你有一定的参考价值。
时间选择框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随笔的主要内容,如果未能解决你的问题,请参考以下文章
js代码片段: utils/lcoalStorage/cookie
TP5报如下的错误 Indirect modification of overloaded element of thinkpaginatorCollection has no effect(代码片段
随笔47-在element-ui的select下拉框加上滚动触底事件
maven web项目的web.xml报错The markup in the document following the root element must be well-formed.(代码片段