Vue2 Element description组件列合并详解
作者:白瑕
前言
需求是description
需要做成首行3列, 剩余行为4列, 额, 我说的是算上标签, 就像这样:
你可能会说"啊, 你这个笨蛋为什么不去用labelStyle
或者contentStyle
来消减表格呢?"
我肯定是试过的啦…不行嘛.
一、首次尝试
1.style的失败尝试
我十分想用规规矩矩的方法去解决问题, 我选用了labelStyle
和contentStyle
, 并且认为"只要将右上角el-descriptions-item
的label
设置为没有宽度或者display:none;
就好了, 然后另一个格子就会压过去."
这个想法多少是有点天真.
当我把labelStyle
设置为display:none
时整个content
格子直接向左塌陷到了label
的原位置并且它自身的宽度把整个一列的label
全都撑的胀起来:
不要用width
…我试过了, 会有一些比较恐怖的效果.
不过我确实没有试过用::v-deep
操作element
内部属性然后设置样式来消减宽度.
2.DOM结构
组长过来看了一会说他以前做过这种description结构, 他大体说了一下, 老实说我没太听明白, 我只是感觉DOM上可以做一点文章, 要不试一下?
我的思路是将上下, 也就是第一行的"畸形行"和下面的正常行分离处理, 两者互不干扰, 那么需要两个el-descriptions
来生成:
先用一个大el-descriptions
作为容器, 其中的两个el-descriptions-item
分别作为上下两个分区, 各传入一个el-descriptions
分别生成, 这样上方的畸形行不会对下方解释表产生格式影响.
<el-descriptions :column="2" border labelstyle="text-align: center; width: 120px;" contentStyle="text-align:center;" > <el-descriptions-item labelClassName="labelClass"> <el-descriptions :column="3" border labelstyle="text-align: center; width: 120px;" contentStyle="text-align:center;" > <el-descriptions-item contentStyle="display:none;"> <template slot="label"> label1 </template> </el-descriptions-item> <el-descriptions-item labelStyle="display:none;"> <el-input readonly :value="item.value" style="width: 100%; text-align: center" /> </el-descriptions-item> <el-descriptions-item labelStyle="display:none;"> <el-input readonly :value="item.value" style="width: 100%; text-align: center" /> </el-descriptions-item> </el-descriptions> </el-descriptions-item> <el-descriptions-item> <el-descriptions> <el-descriptions-item v-for="(item, index) in tableHead" :key="index" labelclassName="labelClass" > <template slot="label"> {{ "label" + index }} </template> <el-input readonly :value="item.value" style="width: 100%; text-align: center" /> </el-descriptions-item> </el-descriptions> </el-descriptions-item> </el-descriptions>
表格局部空缺的问题解决了, 然而仍旧不能完全令人满意, 虽然可以通过宽度调节达到效果, 但是label难以居中, 并且, 没有了el-description
本身的table规格, 这个表格的对齐方式并不稳定, 最上层很容易和下层错位:
二、解决方案
完美实现, 对齐, 无错位, 不干扰.
依赖span实现, labelClassName
只是颜色.
总体思路还是单独处理el-description-item
, 但使用了官方提供的属性, 也是更加规范的方法.
column
属性规定的是一行几个item
, 注意一个完整的item
在不加style的情况下是由label
和content
组成的一对横向格子.span
规定描述列表的列数, 一列是由一个完整的item
起头, 注意一个完整的item
在不加style的情况下是由label
和content
组成的一对横向格子.
<el-descriptions :column="2" border labelstyle="text-align: center; width: 120px;" contentStyle="text-align:center;" > <el-descriptions-item :span="2" labelClassName="labelClass" > <template slot="label"> label </template> <el-input readonly :value="tableData.is" /> <el-input readonly :value="tableData.vn" /> </el-descriptions-item> <el-descriptions-item v-for="(item, index) in tableHead" :key="index" labelclassName="labelClass" > <template slot="label"> label </template> <el-input readonly :value="tableData[item.value]" style="width: 100%; text-align: center" /> </el-descriptions-item> </el-descriptions>
总结
到此这篇关于Vue2 Element description组件列合并的文章就介绍到这了,更多相关Vue2 Element description列合并内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!