|
|
@@ -2105,7 +2105,7 @@ async function downloadExcel() {
|
|
|
let res = await downloadBlobFile(
|
|
|
`${url.baseurl}/voyage/exportExcel`,
|
|
|
{ voyageId: route.query.id },
|
|
|
- "船舶跟踪表",
|
|
|
+ `${voyage.value.voyageName}-船舶跟踪表`,
|
|
|
"post",
|
|
|
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8"
|
|
|
);
|
|
|
@@ -2158,7 +2158,7 @@ async function exportDischargeExcel() {
|
|
|
let res = await downloadBlobFile(
|
|
|
`${url.baseurl}/voyage/exportDischargeExcel`,
|
|
|
{ voyageId: route.query.id },
|
|
|
- "卸货记录表",
|
|
|
+ `${voyage.value.voyageName}-卸货记录表`,
|
|
|
"post",
|
|
|
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8"
|
|
|
);
|