diff --git a/src/views/emis/emisWaybill/centerWaybillList.vue b/src/views/emis/emisWaybill/centerWaybillList.vue index 834ee62b..cc62b38a 100644 --- a/src/views/emis/emisWaybill/centerWaybillList.vue +++ b/src/views/emis/emisWaybill/centerWaybillList.vue @@ -558,7 +558,7 @@ @@ -581,7 +581,7 @@ - + @@ -905,6 +905,14 @@ export default { this.dateTimeRange=[start,end]; }, methods: { + //拼接虚拟单后6位 + conCatVirtualRemark(virtualRemark) { + if (virtualRemark != null) { + return virtualRemark.split(',').map((item) => { + return item.substring(item.length - 6); + }).join(','); + } + }, rowKey (row) { return row.id; }, diff --git a/src/views/emis/emisWaybill/dispatchWaybillList.vue b/src/views/emis/emisWaybill/dispatchWaybillList.vue index 16535cd1..2f0ec86c 100644 --- a/src/views/emis/emisWaybill/dispatchWaybillList.vue +++ b/src/views/emis/emisWaybill/dispatchWaybillList.vue @@ -557,7 +557,8 @@ @@ -581,7 +582,7 @@ - + @@ -884,6 +885,13 @@ export default { }, methods: { + conCatVirtualRemark(virtualRemark) { + if (virtualRemark != null) { + return virtualRemark.split(',').map((item) => { + return item.substring(item.length - 6); + }).join(','); + } + }, rowKey (row) { return row.id; }, diff --git a/src/views/emis/emisWaybill/sendWaybillList.vue b/src/views/emis/emisWaybill/sendWaybillList.vue index cc6ce913..82f17d31 100644 --- a/src/views/emis/emisWaybill/sendWaybillList.vue +++ b/src/views/emis/emisWaybill/sendWaybillList.vue @@ -524,7 +524,7 @@ @@ -547,7 +547,7 @@ - + @@ -924,6 +924,14 @@ export default { }, methods: { + //拼接虚拟单后6位 + conCatVirtualRemark(virtualRemark) { + if (virtualRemark != null) { + return virtualRemark.split(',').map((item) => { + return item.substring(item.length - 6); + }).join(','); + } + }, rowKey (row) { return row.id; }, diff --git a/src/views/emis/emisWaybill/sendWaybillListNew.vue b/src/views/emis/emisWaybill/sendWaybillListNew.vue index 82369f5a..d62ef02e 100644 --- a/src/views/emis/emisWaybill/sendWaybillListNew.vue +++ b/src/views/emis/emisWaybill/sendWaybillListNew.vue @@ -530,7 +530,8 @@ @@ -553,7 +554,7 @@ - + @@ -875,6 +876,13 @@ export default { }, methods: { + conCatVirtualRemark(virtualRemark) { + if (virtualRemark != null) { + return virtualRemark.split(',').map((item) => { + return item.substring(item.length - 6); + }).join(','); + } + }, rowKey (row) { return row.id; },