fix(transport-plan): 修复详情页列对齐并调整新增弹窗卡片间距
- 调整发货地址、到货地址及备注字段span设置,实现基本信息区多列平整布局 - 优化标签列固定宽度及内容换行样式,保证表格展示整齐不溢出 - transport-plan新增弹窗各分组白卡间距从12px增至16px,提升视觉分隔效果 - 验证构建成功,确保样式修改不影响整体功能表现
This commit is contained in:
@@ -227,7 +227,7 @@
|
||||
<div
|
||||
class="dialog-section-title dialog-section-title--action business-crud-page__shipping-title"
|
||||
>
|
||||
<span>收发货信息</span>
|
||||
<span>收发货信息1</span>
|
||||
<el-link
|
||||
v-if="!dialogReadonly"
|
||||
type="primary"
|
||||
@@ -1826,7 +1826,7 @@
|
||||
</el-descriptions>
|
||||
</section-card>
|
||||
<section-card v-if="config.enableTransportPlanForm" title="货物信息">
|
||||
<el-table :data="transportCargoRows" border empty-text="暂无货物信息">
|
||||
<el-table :data="transportCargoRows" empty-text="暂无货物信息">
|
||||
<el-table-column type="index" label="序号" width="70" align="center" />
|
||||
<el-table-column prop="cargoName" label="货物名称" min-width="180" />
|
||||
<el-table-column prop="cargoType" label="货物类型" min-width="150" />
|
||||
@@ -1842,7 +1842,7 @@
|
||||
</el-table>
|
||||
</section-card>
|
||||
<section-card v-if="config.enableAttachmentTable" :title="config.attachmentTitle || '附件'">
|
||||
<el-table :data="attachmentRows" border empty-text="暂无附件">
|
||||
<el-table :data="attachmentRows" empty-text="暂无附件">
|
||||
<el-table-column type="index" label="序号" width="70" align="center" />
|
||||
<el-table-column label="文件名" min-width="260">
|
||||
<template #default="{ row }">{{ row.originalName || row.name || '-' }}</template>
|
||||
@@ -9807,10 +9807,6 @@ export default {
|
||||
white-space: pre-wrap;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
:deep(.el-table) {
|
||||
border-color: #eff1f7;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user