|
@@ -301,7 +301,8 @@ import {
|
|
queryDeclarationElements,
|
|
queryDeclarationElements,
|
|
cancelSubmitShipment,
|
|
cancelSubmitShipment,
|
|
pushShipment,
|
|
pushShipment,
|
|
- rePushShipment
|
|
|
|
|
|
+ rePushShipment,
|
|
|
|
+ exportXls
|
|
} from '@api/document/shipmentList'
|
|
} from '@api/document/shipmentList'
|
|
|
|
|
|
export default {
|
|
export default {
|
|
@@ -730,25 +731,34 @@ export default {
|
|
|
|
|
|
// 导出
|
|
// 导出
|
|
handleExportXls(fileName) {
|
|
handleExportXls(fileName) {
|
|
- downFile('/shippingDetails/syShippingDetails/exportXls',this.queryParam).then(data => {
|
|
|
|
- if (!data) {
|
|
|
|
- this.$message.warning('文件下载失败')
|
|
|
|
- return
|
|
|
|
- }
|
|
|
|
- if (typeof window.navigator.msSaveBlob !== 'undefined') {
|
|
|
|
- window.navigator.msSaveBlob(new Blob([data], { type: 'application/vnd.ms-excel' }), fileName + '.xlsx')
|
|
|
|
- } else {
|
|
|
|
- let url = window.URL.createObjectURL(new Blob([data], { type: 'application/vnd.ms-excel' }))
|
|
|
|
- let link = document.createElement('a')
|
|
|
|
- link.style.display = 'none'
|
|
|
|
- link.href = url
|
|
|
|
- link.setAttribute('download', fileName + '.xlsx')
|
|
|
|
- document.body.appendChild(link)
|
|
|
|
- link.click()
|
|
|
|
- document.body.removeChild(link) // 下载完成移除元素
|
|
|
|
- window.URL.revokeObjectURL(url) // 释放掉blob对象
|
|
|
|
|
|
+
|
|
|
|
+ exportXls(this.queryParam).then(res =>{
|
|
|
|
+ if(res.success==false){
|
|
|
|
+ this.$message.error(res.message)
|
|
|
|
+ }else{
|
|
|
|
+ downFile('/shippingDetails/syShippingDetails/exportXls',this.queryParam).then(data => {
|
|
|
|
+ if (!data) {
|
|
|
|
+ this.$message.warning('文件下载失败')
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ if (typeof window.navigator.msSaveBlob !== 'undefined') {
|
|
|
|
+ window.navigator.msSaveBlob(new Blob([data], { type: 'application/vnd.ms-excel' }), fileName + '.xlsx')
|
|
|
|
+ } else {
|
|
|
|
+ let url = window.URL.createObjectURL(new Blob([data], { type: 'application/vnd.ms-excel' }))
|
|
|
|
+ let link = document.createElement('a')
|
|
|
|
+ link.style.display = 'none'
|
|
|
|
+ link.href = url
|
|
|
|
+ link.setAttribute('download', fileName + '.xlsx')
|
|
|
|
+ document.body.appendChild(link)
|
|
|
|
+ link.click()
|
|
|
|
+ document.body.removeChild(link) // 下载完成移除元素
|
|
|
|
+ window.URL.revokeObjectURL(url) // 释放掉blob对象
|
|
|
|
+ }
|
|
|
|
+ })
|
|
}
|
|
}
|
|
})
|
|
})
|
|
|
|
+
|
|
|
|
+
|
|
},
|
|
},
|
|
|
|
|
|
//明细导出
|
|
//明细导出
|