问题:“描述” 字段 后端返参为空 Col会往前移动一格
解决方案
方案一:行内样式 style="min-height:1px;"
<Col span="3" style="min-height: 1px;">{{tag.describe}}</Col>
方案二:全局样式 .ivu-col{min-height: 1px; }
<style scoped>
.ivu-col{
min-height: 1px;
}
</style>
最终效果图如下