|
|
@@ -381,9 +381,9 @@
|
|
|
<div class="container-title">卸货信息</div>
|
|
|
<div class="line-container-p24">
|
|
|
<div class="container-second-title df aic jcsb">
|
|
|
- <div>{{ voyage.dischargeProt }} - 天气信息</div>
|
|
|
+ <div>卸货港 - {{ voyage.dischargeProt }} - 天气信息</div>
|
|
|
</div>
|
|
|
- <el-table style="width: 800px" :data="weatherTableData" stripe>
|
|
|
+ <el-table style="width: 1200px" :data="weatherTableData" stripe>
|
|
|
<el-table-column
|
|
|
type="index"
|
|
|
label="序号"
|
|
|
@@ -421,7 +421,7 @@
|
|
|
align="center"
|
|
|
></el-table-column>
|
|
|
</el-table>
|
|
|
- <div style="width: 800px; text-align: right; margin-top: 43px">
|
|
|
+ <div style="width: 1200px; text-align: right; margin-top: 43px">
|
|
|
<el-pagination
|
|
|
background
|
|
|
layout="prev, pager, next"
|
|
|
@@ -439,7 +439,7 @@
|
|
|
</el-button>
|
|
|
</div>
|
|
|
</div>
|
|
|
- <el-table :data="labTableData" stripe style="width: 800px">
|
|
|
+ <el-table :data="labTableData" stripe style="width: 1200px">
|
|
|
<el-table-column
|
|
|
type="index"
|
|
|
label="序号"
|
|
|
@@ -488,7 +488,7 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
- <div style="text-align: right; margin-top: 43px">
|
|
|
+ <div style="text-align: right; margin-top: 43px; width: 1200px">
|
|
|
<el-pagination
|
|
|
background
|
|
|
layout="prev, pager, next"
|
|
|
@@ -568,7 +568,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<el-table
|
|
|
- style="width: 800px"
|
|
|
+ style="width: 1200px"
|
|
|
:data="dischargeList"
|
|
|
stripe
|
|
|
:disabled="disabledStatus"
|
|
|
@@ -627,7 +627,7 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
- <div style="width: 800px; text-align: right; margin-top: 43px">
|
|
|
+ <div style="width: 1200px; text-align: right; margin-top: 43px">
|
|
|
<el-pagination
|
|
|
background
|
|
|
layout="prev, pager, next"
|
|
|
@@ -2428,9 +2428,6 @@ async function getPortWeatherList() {
|
|
|
currentPage: weatherCurrentPage.value,
|
|
|
});
|
|
|
weatherTableData.value = res.data.result;
|
|
|
- for (let i of weatherTableData.value) {
|
|
|
- i.reporttime = i.reporttime.substring(0, 10);
|
|
|
- }
|
|
|
weatherTotal.value = res.data.total;
|
|
|
}
|
|
|
|