VUE设置grid数据表中字段样式

在grid.vue文件中加入对应组件

<template v-if="'YEARAGE' == item.type"> 
                    <span class="ageClass">
                      {{ scope.row[item.field].substring(0,7) }}
                      <i class="ageStyle">{{scope.row[item.field].substring(7,13)}}</i>
                    </span>
                  </template>

加入样式

.ageClass .ageStyle{
  font-style:normal;
  color:rgba(255, 69, 69, 1);
}

对应列type修改VUE设置grid数据表中字段样式

 VUE设置grid数据表中字段样式

展示效果

 VUE设置grid数据表中字段样式

 VUE设置grid数据表中字段样式

 

上一篇:gwt中java与js的相互调用


下一篇:eclipse中,把java函数代码折叠/展开