js日期2
<el-table-column prop="lyLx" header-align="center" align="center" label="来源类型" :formatter="lxFormat" width="90px"></el-table-column>
<el-table-column header-align="center" align="center" label="有效期至" width="120px">
<template slot-scope="scope">
<!--{{$moment(scope.row.yxqz).format("YYYY-MM-DD")}}-->
<!--{{new Date().getTime()}}-->
<!--{{new Date(scope.row.yxqz)}}-->
<div v-if="new Date(scope.row.yxqz).getTime() >= new Date().getTime()">
<span>{{$moment(scope.row.yxqz).format("YYYY-MM-DD")}}</span>
</div>
<div v-else>
<span style="color: red">{{$moment(scope.row.yxqz).format("YYYY-MM-DD")}}</span>
</div>
</template>
</el-table-column>
方法
lxFormat(row, column, cellValue, index){
if(cellValue == 1 ){
return '上级分配';
}else {
return '单位自筹'
}
}
择善人而交,择善书而读,择善言而听,择善行而从。