diff --git a/src/views/emis/emisWaybill/centerWaybillList.vue b/src/views/emis/emisWaybill/centerWaybillList.vue index b2b0864c..fc3716f3 100644 --- a/src/views/emis/emisWaybill/centerWaybillList.vue +++ b/src/views/emis/emisWaybill/centerWaybillList.vue @@ -1231,6 +1231,13 @@ export default { if(j === 'waybillOther.moneyCompany'){ return v['waybillOther']['moneyCompany']; } + if(j=== 'blIsQuestion'){ + if(v[j] == 1){ + return '是'; + }else{ + return '否'; + } + } return v[j] })) }, diff --git a/src/views/emis/emisWaybill/dispatchWaybillList.vue b/src/views/emis/emisWaybill/dispatchWaybillList.vue index e7d7f4c9..26387da1 100644 --- a/src/views/emis/emisWaybill/dispatchWaybillList.vue +++ b/src/views/emis/emisWaybill/dispatchWaybillList.vue @@ -1081,7 +1081,8 @@ export default { this.exportData(this.selectionList,loadingInstance); } else{ - let qExportParam=this.initQueryParams(); + this.initQueryParams(); + let qExportParam={...this.queryParams}; qExportParam.pageNum=1; qExportParam.pageSize=20000; @@ -1194,6 +1195,13 @@ export default { if(j === 'waybillOther.moneyCompany'){ return v['waybillOther']['moneyCompany']; } + if(j=== 'blIsQuestion'){ + if(v[j] == 1){ + return '是'; + }else{ + return '否'; + } + } return v[j] })) }, diff --git a/src/views/emis/emisWaybill/sendWaybillList.vue b/src/views/emis/emisWaybill/sendWaybillList.vue index a63ba65d..34b1876f 100644 --- a/src/views/emis/emisWaybill/sendWaybillList.vue +++ b/src/views/emis/emisWaybill/sendWaybillList.vue @@ -1274,6 +1274,13 @@ export default { if(j === 'waybillOther.moneyCompany'){ return v['waybillOther']['moneyCompany']; } + if(j=== 'blIsQuestion'){ + if(v[j] == 1){ + return '是'; + }else{ + return '否'; + } + } return v[j] })) }, diff --git a/src/views/emis/emisWaybill/sendWaybillListNew.vue b/src/views/emis/emisWaybill/sendWaybillListNew.vue index 5a231eb0..da5ce98f 100644 --- a/src/views/emis/emisWaybill/sendWaybillListNew.vue +++ b/src/views/emis/emisWaybill/sendWaybillListNew.vue @@ -1224,6 +1224,13 @@ export default { if(j === 'waybillOther.moneyCompany'){ return v['waybillOther']['moneyCompany']; } + if(j=== 'blIsQuestion'){ + if(v[j] == 1){ + return '是'; + }else{ + return '否'; + } + } return v[j] })) },