element table 每行点击已读置灰

 
                
 


methods:{
        //是否已读
        readerFun({ row, rowIndex }) {
            console.log("row", row, rowIndex);
            if (row.isReader == 1) {
                return { opacity: "0.6" };
            } else {
                return {};
            }
        },
}

你可能感兴趣的:(vue.js,前端)