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

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

parent b55e2bb0
...@@ -365,7 +365,7 @@ const TableList = props => { ...@@ -365,7 +365,7 @@ const TableList = props => {
title: '物流公司', title: '物流公司',
dataIndex: 'expressCompanyName', dataIndex: 'expressCompanyName',
key: 'expressCompanyName', key: 'expressCompanyName',
width: 100, width: 120,
className: 'colStyle', className: 'colStyle',
hideInSearch: true, hideInSearch: true,
render: (_, record) => renderContent(record, 'expressCompanyName'), render: (_, record) => renderContent(record, 'expressCompanyName'),
...@@ -374,7 +374,7 @@ const TableList = props => { ...@@ -374,7 +374,7 @@ const TableList = props => {
title: '物流单号', title: '物流单号',
dataIndex: 'deliveryNo', dataIndex: 'deliveryNo',
key: 'deliveryNo', key: 'deliveryNo',
width: 180, width: 210,
className: 'colStyle', className: 'colStyle',
hideInSearch: true, hideInSearch: true,
render: (_, record) => renderContent(record, 'deliveryNo'), render: (_, record) => renderContent(record, 'deliveryNo'),
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
align-items: center; align-items: center;
// height: 60px; // height: 60px;
min-height: 60px; min-height: 60px;
padding: 16px; padding: 0 12px;
} }
.border { .border {
border-bottom: 1px solid #e8e8e8; border-bottom: 1px solid #e8e8e8;
...@@ -15,14 +15,19 @@ ...@@ -15,14 +15,19 @@
.subContent { .subContent {
flex: 1; flex: 1;
padding: 16px; padding: 12px;
overflow: hidden;
line-height: 36px;
white-space: nowrap;
text-overflow: ellipsis;
} }
.expressList { .expressList {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
width: calc(100% + 32px); width: calc(100% + 24px);
margin: -16px; height: 100%;
margin: -12px;
} }
tbody .colStyle { tbody .colStyle {
padding: 0; 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