Commit 9d5e474f authored by 李腾's avatar 李腾

fix: 修复物流表格不整齐的问题

parent b55e2bb0
......@@ -365,7 +365,7 @@ const TableList = props => {
title: '物流公司',
dataIndex: 'expressCompanyName',
key: 'expressCompanyName',
width: 100,
width: 120,
className: 'colStyle',
hideInSearch: true,
render: (_, record) => renderContent(record, 'expressCompanyName'),
......@@ -374,7 +374,7 @@ const TableList = props => {
title: '物流单号',
dataIndex: 'deliveryNo',
key: 'deliveryNo',
width: 180,
width: 210,
className: 'colStyle',
hideInSearch: true,
render: (_, record) => renderContent(record, 'deliveryNo'),
......
......@@ -7,7 +7,7 @@
align-items: center;
// height: 60px;
min-height: 60px;
padding: 16px;
padding: 0 12px;
}
.border {
border-bottom: 1px solid #e8e8e8;
......@@ -15,14 +15,19 @@
.subContent {
flex: 1;
padding: 16px;
padding: 12px;
overflow: hidden;
line-height: 36px;
white-space: nowrap;
text-overflow: ellipsis;
}
.expressList {
display: flex;
flex-direction: column;
width: calc(100% + 32px);
margin: -16px;
width: calc(100% + 24px);
height: 100%;
margin: -12px;
}
tbody .colStyle {
padding: 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment