在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修改
展示效果