|
|
@@ -2104,7 +2104,8 @@ async function downloadExcel() {
|
|
|
`${url.baseurl}/voyage/exportExcel`,
|
|
|
{ voyageId: route.query.id },
|
|
|
"船舶跟踪表",
|
|
|
- "post"
|
|
|
+ "post",
|
|
|
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8"
|
|
|
);
|
|
|
if (res) {
|
|
|
isLoadingExcel.value = false;
|
|
|
@@ -2156,7 +2157,8 @@ async function exportDischargeExcel() {
|
|
|
`${url.baseurl}/voyage/exportDischargeExcel`,
|
|
|
{ voyageId: route.query.id },
|
|
|
"卸货记录表",
|
|
|
- "post"
|
|
|
+ "post",
|
|
|
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8"
|
|
|
);
|
|
|
if (res) {
|
|
|
isDischargeLoadingExcel.value = false;
|