博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
html单元格嵌套表格,如何在表格中嵌套表格(iview)
阅读量:6371 次
发布时间:2019-06-23

本文共 1474 字,大约阅读时间需要 4 分钟。

如何在表格中嵌套表格(iview)

如何在表格中嵌套表格(iview)

多说无益,上代码

*HTML

TS

private lineCol = [

{

title: "序号",

// key: "outAgencyName",

type: "index",

tooltip: true,

},

{

title: "酒类型",

key: "productName",

tooltip: true,

width: 250,

render: (h: any, params: any) => {

return h("div", [

h("Table", {

props: {

columns: [

{

title: "酒类型",

key: "productName",

tooltip: true,

width: 213,

render: (h: any, params: any) => {

let text = `${params.row.productName}${

params.row.modelNumber

}`;

return h(

"div",

{

style: {

overflow: "hidden",

whiteSpace: "nowrap",

textOverflow: "ellipsis",

},

attrs: {

title: text,

},

},

text

);

},

},

],

"show-header": false,

data: params.row.details,

},

}),

]);

},

},

{

title: "数量",

key: "number",

render: (h: any, params: any) => {

return h("div", [

h("Table", {

props: {

columns: [{ title: "数量", key: "number", tooltip: true }],

"show-header": false,

data: params.row.details,

},

}),

]);

},

},

{

title: "状态",

key: "status",

},

{

title: "日期",

key: "time",

tooltip: true,

},

{

title: "详情",

key: "id",

render: (h: any, params: any) => {

return h("div", [

h("Button", {

props: {

type: "text",

size: "small",

customIcon: "iconfont iconcheck",

},

on: {

click: () => {

this.checkDetails(params);

},

},

}),

]);

},

},

];

样式

由于直接使用不甚美观,我们还需要修改样式

//.outlet是页面的自定义calss标签

// 表格嵌套表格

.outlet .ivu-table-cell .ivu-table-wrapper{

margin-top: 0;

.ivu-table-cell{

padding: 0;

}

.ivu-table{

td{

height: 30px;

}

.ivu-table-body table{

width: 100% !important;

}

}

}

效果图

db27f84688456a050e80cd903d6b7d56.png

如何在表格中嵌套表格(iview)相关教程

转载地址:http://hzuqa.baihongyu.com/

你可能感兴趣的文章
如何学好C和C++
查看>>
Gitlab通过custom_hooks自动更新服务器代码
查看>>
python 如何判断调用系统命令是否执行成功
查看>>
Lesson10 vSphere 管理特性
查看>>
memcache 扩展和 memcached扩展安装
查看>>
好程序员的查克拉---自信
查看>>
获取设备列表
查看>>
Django使用网上模板做个能展示的博客
查看>>
基于同IP不同端口,同端口不同Ip的虚拟主机 基于FQDN的虚拟主机
查看>>
项目软件集成三方模块,编译中int32和uint32定义冲突解决方法
查看>>
StretchDIBits速度测试(HALFTONE)
查看>>
在.NET Workflo“.NET研究”w 3.5中使用多线程提高工作流性能
查看>>
验证Oracle处理速度
查看>>
自己写一个jquery
查看>>
艾伟:C#中抽象类和接口的区别
查看>>
Flink - NetworkEnvironment
查看>>
BZOJ4374 : Little Elephant and Boxes
查看>>
【.Net Framework 体积大?】不安装.net framework 也能运行!?开篇叙述-1
查看>>
LLDP协议、STP协议 笔记
查看>>
如何使用 GroupBy 计数-Count()
查看>>