From bafb242bb07020e4ce89db328a1fd1cfd3936c32 Mon Sep 17 00:00:00 2001
From: liuxiaoxue <1126966868@qq.com>
Date: Fri, 2 Dec 2022 11:17:43 +0800
Subject: [PATCH 1/4] =?UTF-8?q?=E6=9A=82=E6=97=A0=E5=8A=A8=E6=80=81?=
=?UTF-8?q?=E6=94=B9=E5=9B=BE=E6=A0=87?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
public/index.html | 2 +-
src/views/main/BookingLedger/detail/modules/rightContent.vue | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/public/index.html b/public/index.html
index 063449a..5aaa34e 100644
--- a/public/index.html
+++ b/public/index.html
@@ -95,7 +95,7 @@
<% for (var i in htmlWebpackPlugin.options.cdn && htmlWebpackPlugin.options.cdn.css) { %>
<% } %>
-
+
diff --git a/src/views/main/BookingLedger/detail/modules/rightContent.vue b/src/views/main/BookingLedger/detail/modules/rightContent.vue
index 3e9dac7..ce60a87 100644
--- a/src/views/main/BookingLedger/detail/modules/rightContent.vue
+++ b/src/views/main/BookingLedger/detail/modules/rightContent.vue
@@ -124,7 +124,7 @@
-->
From 5c53b1aad52790b475bf495641507f753ee63cfc 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:19:20 +0800
Subject: [PATCH 2/4] 12/2
---
src/views/main/BookingLedger/list/index.vue | 37 ++++++++++++++++-----
1 file changed, 29 insertions(+), 8 deletions(-)
diff --git a/src/views/main/BookingLedger/list/index.vue b/src/views/main/BookingLedger/list/index.vue
index 31489fe..42b967a 100644
--- a/src/views/main/BookingLedger/list/index.vue
+++ b/src/views/main/BookingLedger/list/index.vue
@@ -37,7 +37,9 @@
多提单号查询
-
+
{{ advanced ? '收起查询' : '更多查询' }}
@@ -73,7 +75,10 @@
style="margin-top:15px;"
>
- {{ row.mblno }}
+
{{ row.vessel }}
@@ -236,6 +241,15 @@ export default {
},
methods: {
...mapActions(['setBookingList']),
+ FnCopy(data) {
+ const el = document.createElement('input')
+ el.setAttribute('value', data)
+ document.body.appendChild(el)
+ el.select()
+ document.execCommand('copy')
+ document.body.removeChild(el)
+ this.$message.success('复制成功!')
+ },
init(queryParam = {}) {
console.log(queryParam, 'queryParam')
this.gridOptions.pagerConfig = {
@@ -558,12 +572,19 @@ export default {