{{ scope.row.goodsName }}/{{ scope.row.brand.name }}/{{ scope.row.model }}
@@ -83,7 +78,6 @@
-
@@ -424,6 +418,11 @@ const onClickExportManifestDetail = () => {
color: #aaa;
}
}
+ .goods-name {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ }
}
}
diff --git a/src/views/Boat/components/LoadMap.vue b/src/views/Boat/components/LoadMap.vue
index 6eec4e7..07d07c4 100644
--- a/src/views/Boat/components/LoadMap.vue
+++ b/src/views/Boat/components/LoadMap.vue
@@ -440,8 +440,11 @@ const onClickReturn = () => {
border-radius: 13px;
.map-content {
display: flex;
- flex-direction: row-reverse;
+ flex-flow: row-reverse nowrap;
width: 100%;
+ max-width: 100%;
+ overflow-x: auto;
+ white-space: nowrap;
.triangle-right {
width: 0;
height: 0;
@@ -453,8 +456,8 @@ const onClickReturn = () => {
width: 258px;
height: 300px;
margin-right: 3px;
- overflow: hidden;
.map-deck-title {
+ width: 100%;
height: 30px;
font-weight: 700;
line-height: 30px;
diff --git a/src/views/History/components/HistoryTable.vue b/src/views/History/components/HistoryTable.vue
index a9b7cb6..96959d3 100644
--- a/src/views/History/components/HistoryTable.vue
+++ b/src/views/History/components/HistoryTable.vue
@@ -32,12 +32,7 @@
-
-
-
- 货名/品牌/型号
-
-
+
{{ scope.row.goodsName }}/{{ scope.row.brand.name }}/{{ scope.row.model }}
@@ -222,5 +217,10 @@ const onClickOpenManifestDetail = async (row: ManifestType) => {
}
}
}
+ .goods-name {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ }
}
diff --git a/src/views/Send/components/HistoryTable.vue b/src/views/Send/components/HistoryTable.vue
index bcd5e59..e81cd1e 100644
--- a/src/views/Send/components/HistoryTable.vue
+++ b/src/views/Send/components/HistoryTable.vue
@@ -57,12 +57,7 @@
-
-
-
- 货名/品牌/型号
-
-
+
{{ scope.row?.goodsName }}/{{ scope.row.brand?.name }}/{{ scope.row?.model }}
@@ -390,6 +385,11 @@ const endManifestDetail = () => {
box-shadow: 5px 5px 5px rgb(0 0 0 / 34.9%);
}
}
+ .goods-name {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ }
}
}
diff --git a/src/views/Send/components/SendTable.vue b/src/views/Send/components/SendTable.vue
index 9e950cf..dd4e4f2 100644
--- a/src/views/Send/components/SendTable.vue
+++ b/src/views/Send/components/SendTable.vue
@@ -17,24 +17,14 @@
>
-
-
-
- 装货港 / 装货码头
-
-
+
{{ scope.row.loadPort?.name }} / {{ scope.row.loadWharf?.name }}
-
-
-
- 卸货港 / 卸货码头
-
-
+
{{ scope.row.dischargePort?.name }} / {{ scope.row.dischargeWharf?.name }}
@@ -185,6 +175,11 @@ const onClickOpenDetail = async (row: BoatInfoType) => {
.footer-table {
position: relative;
flex: 1;
+ .goods-name {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ }
.update-btn {
display: flex;
align-items: center;