diff --git a/src/views/emis/emisWaybill/centerWaybillList.vue b/src/views/emis/emisWaybill/centerWaybillList.vue index eaa7f894..c2cf0169 100644 --- a/src/views/emis/emisWaybill/centerWaybillList.vue +++ b/src/views/emis/emisWaybill/centerWaybillList.vue @@ -1087,6 +1087,14 @@ export default { return '自提'; } } + if (j === 'blUploadPic') { + if(v['goodsPics']!=null && v['goodsPics']!=''){ + return '是'; + }else{ + return '否'; + } + } + if (j === 'blMessage') { if(v[j] == 1){ return '发送'; diff --git a/src/views/emis/emisWaybill/dispatchWaybillList.vue b/src/views/emis/emisWaybill/dispatchWaybillList.vue index 70c54e94..6e418776 100644 --- a/src/views/emis/emisWaybill/dispatchWaybillList.vue +++ b/src/views/emis/emisWaybill/dispatchWaybillList.vue @@ -1074,6 +1074,13 @@ export default { return '自提'; } } + if (j === 'blUploadPic') { + if(v['goodsPics']!=null && v['goodsPics']!=''){ + return '是'; + }else{ + return '否'; + } + } if (j === 'blMessage') { if(v[j] == 1){ return '发送'; diff --git a/src/views/emis/emisWaybill/sendWaybillList.vue b/src/views/emis/emisWaybill/sendWaybillList.vue index c0159077..60e99f7b 100644 --- a/src/views/emis/emisWaybill/sendWaybillList.vue +++ b/src/views/emis/emisWaybill/sendWaybillList.vue @@ -1078,7 +1078,7 @@ export default { } } if (j === 'blUploadPic') { - if(v['goodsPics']!=''){ + if(v['goodsPics']!=null && v['goodsPics']!=''){ return '是'; }else{ return '否'; diff --git a/src/views/emis/emisWaybill/sendWaybillListNew.vue b/src/views/emis/emisWaybill/sendWaybillListNew.vue index 588e418a..95557865 100644 --- a/src/views/emis/emisWaybill/sendWaybillListNew.vue +++ b/src/views/emis/emisWaybill/sendWaybillListNew.vue @@ -1092,6 +1092,14 @@ export default { return '自提'; } } + if (j === 'blUploadPic') { + if(v['goodsPics']!=null && v['goodsPics']!=''){ + return '是'; + }else{ + return '否'; + } + } + if (j === 'blMessage') { if(v[j] == 1){ return '发送';