feat: 多页面功能优化与新增

This commit is contained in:
2026-05-30 18:00:01 +08:00
parent 6a5220ad78
commit 9af5284ff3
10 changed files with 172 additions and 36 deletions

View File

@@ -478,8 +478,9 @@ export default {
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.target = '_blank';
a.href = url;
a.download = `发货单_${this.waybill.waybillName || this.waybill.waybillNo || Date.now()}.pdf`;
// a.download = `发货单_${this.waybill.waybillName || this.waybill.waybillNo || Date.now()}.pdf`;
document.body.appendChild(a);
a.click();
document.body.removeChild(a);