From 35ac57b52f664803c7eb949073e45ae68409430e Mon Sep 17 00:00:00 2001 From: liuxiaoxue <1126966868@qq.com> Date: Fri, 2 Dec 2022 11:44:24 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E8=AE=A2=E8=88=B1=E5=8F=B0=E8=B4=A6?= =?UTF-8?q?=E5=8F=8C=E8=A1=8C=E5=A4=8D=E5=88=B6=E6=8F=90=E5=8D=95=E5=8F=B7?= =?UTF-8?q?=E6=8C=89=E9=92=AE=E6=94=B9=E4=B8=BA=E5=8F=AF=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/main/BookingLedger/list/index.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/views/main/BookingLedger/list/index.vue b/src/views/main/BookingLedger/list/index.vue index 77b58a0..3954cf6 100644 --- a/src/views/main/BookingLedger/list/index.vue +++ b/src/views/main/BookingLedger/list/index.vue @@ -813,6 +813,7 @@ export default { // background: #f5f9fe; position: relative; background: #fff; + z-index: 1; &::after{ content: ''; position: absolute; @@ -822,6 +823,7 @@ export default { z-index: 0; background: @primary-color; opacity: .04; + z-index: -1; } } /*列表操作按钮颜色 */ From 100f46293903dea06f7286b0b318fbb91c724503 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E5=90=8C=E6=B5=B7?= <963808678@qq.com> Date: Fri, 2 Dec 2022 11:46:42 +0800 Subject: [PATCH 2/3] 12/2 --- .../main/BookingLedger/detail/modules/basicInfo.vue | 11 +++++++---- src/views/main/BookingLedger/list/modules/initData.js | 2 +- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/src/views/main/BookingLedger/detail/modules/basicInfo.vue b/src/views/main/BookingLedger/detail/modules/basicInfo.vue index 78d5752..b0afb82 100644 --- a/src/views/main/BookingLedger/detail/modules/basicInfo.vue +++ b/src/views/main/BookingLedger/detail/modules/basicInfo.vue @@ -898,10 +898,13 @@ export default { console.log(value) // this.getCarrier(value) }, - handleCarrierChange(index) { - this.details.carrier = this.carrierSelectData[index].cnName - this.details.carrierid = this.carrierSelectData[index].code - console.log(this.details.carrier, this.details.carrierid) + handleCarrierChange(data) { + this.carrierSelectData.forEach(item => { + if (item.code == data) { + console.log(item) + this.details.carrier = item.cnName + } + }) }, filterOption(input, option) { return option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0 diff --git a/src/views/main/BookingLedger/list/modules/initData.js b/src/views/main/BookingLedger/list/modules/initData.js index 025cb5d..121cc41 100644 --- a/src/views/main/BookingLedger/list/modules/initData.js +++ b/src/views/main/BookingLedger/list/modules/initData.js @@ -3,7 +3,7 @@ export default { { type: 'checkbox', width: 60, noDraggable: true }, { field: 'carrier', title: '船公司', showHeaderOverflow: true, sortable: true }, { field: 'yard', title: '场站', showHeaderOverflow: true, sortable: true }, - { title: '提单号', showHeaderOverflow: true, sortable: true, slots: { default: 'mblno' } }, + { title: '提单号', showHeaderOverflow: true, showOverflow: false, sortable: true, slots: { default: 'mblno' } }, { title: '船名航次', showHeaderOverflow: true, sortable: true, slots: { default: 'vessel' } }, { field: 'etd', title: '开船日期', showHeaderOverflow: true, sortable: true }, { field: 'voyno', title: '海关航次', showHeaderOverflow: true }, From 1bf3d24102469bb4b4f72579a77841caf9d1b736 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E5=90=8C=E6=B5=B7?= <963808678@qq.com> Date: Fri, 2 Dec 2022 14:04:34 +0800 Subject: [PATCH 3/3] 12/2 --- .../detail/modules/operationArea.vue | 23 +++++++++++++++++-- .../detail/modules/rightContent.vue | 2 +- 2 files changed, 22 insertions(+), 3 deletions(-) diff --git a/src/views/main/BookingLedger/detail/modules/operationArea.vue b/src/views/main/BookingLedger/detail/modules/operationArea.vue index b9fc923..69e862a 100644 --- a/src/views/main/BookingLedger/detail/modules/operationArea.vue +++ b/src/views/main/BookingLedger/detail/modules/operationArea.vue @@ -414,6 +414,19 @@
+
+ + + pdf + + + xlsx + + + docx + + +
{{ item.name }} @@ -578,7 +591,8 @@ export default { ], BCvData: [], Rdata: '', - scale: '1.5' + scale: '1.5', + PrintType: '1' } }, mounted() { @@ -689,7 +703,7 @@ export default { }, FnCilckTemplateType(typeCode) { this.$message.success(`搜索文件中...`) - BookingOrderPrint({ typeCode, bookingId: this.id }) + BookingOrderPrint({ typeCode, bookingId: this.id, type: this.PrintType }) .then(res => { console.log(res) if (!res.success) { @@ -1316,4 +1330,9 @@ export default { /deep/ .ant-modal-body .ant-input { background: #f5f9fe; } +.PrintRadio { + width: 100%; + padding-left: 1rem; + margin-bottom: 0.8rem; +} diff --git a/src/views/main/BookingLedger/detail/modules/rightContent.vue b/src/views/main/BookingLedger/detail/modules/rightContent.vue index 9118363..e18b3ef 100644 --- a/src/views/main/BookingLedger/detail/modules/rightContent.vue +++ b/src/views/main/BookingLedger/detail/modules/rightContent.vue @@ -121,7 +121,7 @@ --> -
+
暂无动态