美文网首页
js小知识备忘

js小知识备忘

作者: heliping_peter | 来源:发表于2021-11-16 18:23 被阅读0次

    按照日期排序

     this.list.sort(function(a,b){
                   var dateA = new Date(a.StartTime)
                   var dateB = new Date(b.StartTime)
                   return dateA <= dateB ? 1 : -1;
               })  
    

    table按照不同值显示不同颜色

    <template v-slot="scope">
                        <span v-if="scope.row.Priority=== 'critical'" style="color: #F56C6C">致命</span>
                        <span v-else-if="scope.row.Priority==='major'" style="color: #E6A23C">严重</span>
                         <span v-else-if="scope.row.Priority==='minor'" style="color: #67C23A">一般</span>                    
                    </template>
    

    相关文章

      网友评论

          本文标题:js小知识备忘

          本文链接:https://www.haomeiwen.com/subject/slohtrtx.html