Commit 10b69f04 authored by TIAN.DESHENG's avatar TIAN.DESHENG

bug fix

parent a094fd63
......@@ -586,7 +586,7 @@ export function exportAbnormal(params){
// 参数搜索导出重货单统计 Excel
export function exportHeavyOrder(params){
return request({
url: '/ecw/order/export-heavyOrder',
url: '/ecw/order/export/export-heavyOrder',
method: 'get',
params: params,
responseType: 'blob'
......@@ -596,7 +596,7 @@ export function exportHeavyOrder(params){
// 参数搜索导出退仓单统计统计 Excel
export function exportReturnOrder(params){
return request({
url: '/ecw/order-exception/export-returnOrder',
url: '/ecw/order/export/export-returnOrder',
method: 'get',
params: params,
responseType: 'blob'
......@@ -606,7 +606,7 @@ export function exportReturnOrder(params){
// 参数搜索导出售后赔偿金额统计 Excel
export function exportSaleRepay(params){
return request({
url: '/ecw/order-exception/export-saleRepay',
url: '/ecw/order/export/export-saleRepay',
method: 'get',
params: params,
responseType: 'blob'
......@@ -617,7 +617,7 @@ export function exportSaleRepay(params){
// 参数搜索导出报关数统计 Excel
export function exportCustomsDatas(params){
return request({
url: '/ecw/order-exception/export-customDatas',
url: '/ecw/order/export/export-customDatas',
method: 'get',
params: params,
responseType: 'blob'
......@@ -628,7 +628,7 @@ export function exportCustomsDatas(params){
// 参数搜索导出客户出货量统计 Excel
export function exportShippingDatas(params){
return request({
url: '/ecw/order-exception/export-shipDatas',
url: '/ecw/order/export/export-shipDatas',
method: 'get',
params: params,
responseType: 'blob'
......@@ -639,7 +639,7 @@ export function exportShippingDatas(params){
// 参数搜索导出预付运费统计 Excel
export function exportShipFee(params){
return request({
url: '/ecw/order-exception/export-shipFee',
url: '/ecw/order/export/export-shipFee',
method: 'get',
params: params,
responseType: 'blob'
......@@ -650,7 +650,7 @@ export function exportShipFee(params){
// 参数搜索导出卸货费统计 Excel
export function exportUnload(params){
return request({
url: '/ecw/order-exception/export-excel',
url: '/ecw/order/export/export-excel',
method: 'get',
params: params,
responseType: 'blob'
......
......@@ -85,7 +85,7 @@
</el-table-column>
<el-table-column :label="$t('自单代报订单方数')" align="center" prop="orderReportNumber" >
<template slot-scope="{row}">
{{row.warehousingNumber || 0}}
{{row.orderReportNumber || 0}}
</template>
</el-table-column>
<el-table-column :label="$t('已装柜方数')" align="center" prop="loadingNumber" >
......
......@@ -659,6 +659,10 @@ export default {
exportAbnormal(){
return this.exportExcel(exportAbnormal, this.combinedQueryParams, this.$t("异常单统计"))
},
// 重货单统计
exportHeavyOrder(){
return this.exportExcel(exportHeavyOrder, this.combinedQueryParams, this.$t("重货单统计"))
},
// 退仓单统计
exportReturnOrder(){
return this.exportExcel(exportReturnOrder, this.combinedQueryParams, this.$t("退仓单统计"))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment