|
@@ -171,7 +171,11 @@ export default {
|
|
// return;
|
|
// return;
|
|
this.loading = true
|
|
this.loading = true
|
|
|
|
|
|
- const res = await asyncRequest.saleexportorderreturn(this.parmValue)
|
|
|
|
|
|
+ const res = await asyncRequest.saleexportorderreturn({
|
|
|
|
+ ...this.parmValue,
|
|
|
|
+ companySearchProp: this.currentCompany
|
|
|
|
+ })
|
|
|
|
+
|
|
if (res && res.code === 0 && res.data) {
|
|
if (res && res.code === 0 && res.data) {
|
|
this.tableData = res.data.list
|
|
this.tableData = res.data.list
|
|
this.pageInfo.total = Number(res.data.count)
|
|
this.pageInfo.total = Number(res.data.count)
|
|
@@ -253,7 +257,10 @@ export default {
|
|
method: 'post',
|
|
method: 'post',
|
|
url: this.fileUrl + 'admin/saleexportorderreturnexport',
|
|
url: this.fileUrl + 'admin/saleexportorderreturnexport',
|
|
responseType: 'blob',
|
|
responseType: 'blob',
|
|
- data: model,
|
|
|
|
|
|
+ data: {
|
|
|
|
+ ...model,
|
|
|
|
+ companyExportProp: this.currentCompany
|
|
|
|
+ },
|
|
headers: {
|
|
headers: {
|
|
// 'Content-Type': 'multipart/form-data',
|
|
// 'Content-Type': 'multipart/form-data',
|
|
// Accept: "application/vnd.ms-excel"
|
|
// Accept: "application/vnd.ms-excel"
|