用ul写出类似table表格的样式
data数据
organList = {name: '安全委员会',code: 'awh20200215',higher: '柏科管理公司',duty: ['1.第一','2.第二'],person: '张三',phone: '18701966666'
};
template页面
- 组织机构名称{{organList.name}}
- 机构编码{{organList.code}}
- 上级机构{{organList.higher}}
- 机构职责{{item}}
- 联系人{{organList.person}}
- 电话{{organList.phone}}
css样式
.organList {margin: 0;padding: 0;li{list-style: none;border: 1px solid #DCDFE6;span{ padding: 15px; color: #555;}span:first-child{display: inline-block;width: 200px;font-weight: 900;border-right: 1px solid #DCDFE6;}}li + li{ border-top: none;}li:first-child{ border-radius: 4px 4px 0 0;}li:last-child{ border-radius: 0 0 4px 4px;}}