diff --git a/src/api/wms/purchaseMain/index.ts b/src/api/wms/purchaseMain/index.ts index a833a5427..164cf53ff 100644 --- a/src/api/wms/purchaseMain/index.ts +++ b/src/api/wms/purchaseMain/index.ts @@ -72,7 +72,12 @@ export const witPurchaseMain = async (id: number) => { } // 导出采购订单主 Excel export const exportPurchaseMain = async (params) => { - return await request.download({ url: `/wms/purchase-main/export-excel`, params }) + if (params.isSearch) { + const data = {...params} + return await request.downloadPost({ url: `/wms/purchase-main/export-excel-senior`, data }) + } else { + return await request.download({ url: `/wms/purchase-main/export-excel`, params }) + } } // 下载用户导入模板 diff --git a/src/views/login/login.vue b/src/views/login/login.vue index 13790d168..c13f2c718 100644 --- a/src/views/login/login.vue +++ b/src/views/login/login.vue @@ -9,7 +9,7 @@ >
- + {{ t(`ts.${underlineToHump(appStore.getTitle)}`) }}
@@ -33,7 +33,7 @@ class="flex items-center justify-between at-2xl:justify-end at-xl:justify-end" >
- + {{ t(`ts.${underlineToHump(appStore.getTitle)}`) }}
@@ -94,6 +94,7 @@ $prefix-cls: #{$namespace}-login; z-index: -1; width: 100%; height: 100%; + background-size: cover; // background-image: url('@/assets/svgs/login-bg.svg'); background-image: url('@/assets/imgs/login-bg.png'); background-position: center; diff --git a/src/views/qms/aql/index.vue b/src/views/qms/aql/index.vue index c74fe3459..3dc399dba 100644 --- a/src/views/qms/aql/index.vue +++ b/src/views/qms/aql/index.vue @@ -1,22 +1,27 @@