diff --git a/src/api/modular/main/BookingLedger.js b/src/api/modular/main/BookingLedger.js index 1c0095b..ddf799b 100644 --- a/src/api/modular/main/BookingLedger.js +++ b/src/api/modular/main/BookingLedger.js @@ -512,3 +512,23 @@ export function BookingOrderContactPage(parameter) { params: parameter }) } + +/** + * 下载附件 + * @params id + */ + export function BookingOrderGetFile(parameter) { + return axios({ + url: '/BookingOrder/GetFile', + method: 'get', + params: parameter + }) +} + +export function BookingOrderDownload(parameter) { + return axios({ + url: '/BookingOrder/Download', + method: 'get', + params: parameter + }) +} \ No newline at end of file diff --git a/src/views/main/BookingLedger/detail/modules/goodsTable.vue b/src/views/main/BookingLedger/detail/modules/goodsTable.vue index bbc14b7..ddbc34f 100644 --- a/src/views/main/BookingLedger/detail/modules/goodsTable.vue +++ b/src/views/main/BookingLedger/detail/modules/goodsTable.vue @@ -228,7 +228,7 @@ export default { { diff --git a/src/views/main/BookingLedger/detail/modules/mailingInfo.vue b/src/views/main/BookingLedger/detail/modules/mailingInfo.vue index d9ef72b..5e8c806 100644 --- a/src/views/main/BookingLedger/detail/modules/mailingInfo.vue +++ b/src/views/main/BookingLedger/detail/modules/mailingInfo.vue @@ -22,7 +22,7 @@ 保存 -
+
* 35 40 @@ -31,12 +31,13 @@
-
+
{{ num.length }}
@@ -65,12 +66,13 @@
-
+
{{ num.length }}
@@ -99,12 +101,13 @@
-
+
{{ num.length }}
@@ -866,6 +869,20 @@ export default { created() { this.init() }, + mounted () { + const shipperScroll = document.getElementById('shipper-scroll') + shipperScroll.addEventListener('scroll', () => { + document.getElementById('shipper-scroll-right').scrollTop = shipperScroll.scrollTop + }) + const consigneeScroll = document.getElementById('consignee-scroll') + consigneeScroll.addEventListener('scroll', () => { + document.getElementById('consignee-scroll-right').scrollTop = consigneeScroll.scrollTop + }) + const notifypartyScroll = document.getElementById('notifyparty-scroll') + notifypartyScroll.addEventListener('scroll', () => { + document.getElementById('notifyparty-scroll-right').scrollTop = notifypartyScroll.scrollTop + }) + }, methods: { // ========== 关系人弹窗 ========== changeYard(type) { @@ -1456,6 +1473,11 @@ export default { .line-count { width: 24px; padding-top: 10px; + height: 130px; + overflow: auto; + &::-webkit-scrollbar { + display: none; + } // max-height: 192px; // overflow-y: auto; div { diff --git a/src/views/main/BookingLedger/detail/modules/operationArea.vue b/src/views/main/BookingLedger/detail/modules/operationArea.vue index 5eccc8a..035836b 100644 --- a/src/views/main/BookingLedger/detail/modules/operationArea.vue +++ b/src/views/main/BookingLedger/detail/modules/operationArea.vue @@ -516,6 +516,7 @@ export default { this.$message.success(`搜索文件中...`) BookingOrderPrint({ typeCode, bookingId: this.id }) .then(res => { + debugger console.log(res) if (!res.success) { this.$message.error(res.message) diff --git a/src/views/main/BookingLedger/detail/modules/rightContent.vue b/src/views/main/BookingLedger/detail/modules/rightContent.vue index 7dbd5f0..2aa92a7 100644 --- a/src/views/main/BookingLedger/detail/modules/rightContent.vue +++ b/src/views/main/BookingLedger/detail/modules/rightContent.vue @@ -68,7 +68,7 @@ {{ file.fileName }} - +
{{ file.typeName }} @@ -206,7 +206,7 @@