From a18eab08fd9f796195048443d767aed3a96b07ff Mon Sep 17 00:00:00 2001 From: lijingjia Date: Thu, 1 Aug 2024 08:58:46 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BB=BB=E5=8A=A1=E5=8F=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../infoclient/TenantAuditStepModal.vue | 2 +- src/views/operation/seaexport/index.vue | 39 +++++++++++-------- 2 files changed, 23 insertions(+), 18 deletions(-) diff --git a/src/views/baseinfo/infoclient/TenantAuditStepModal.vue b/src/views/baseinfo/infoclient/TenantAuditStepModal.vue index 059e0676..6e200681 100644 --- a/src/views/baseinfo/infoclient/TenantAuditStepModal.vue +++ b/src/views/baseinfo/infoclient/TenantAuditStepModal.vue @@ -45,7 +45,7 @@ diff --git a/src/views/operation/seaexport/index.vue b/src/views/operation/seaexport/index.vue index 4e3f9785..9d05056f 100644 --- a/src/views/operation/seaexport/index.vue +++ b/src/views/operation/seaexport/index.vue @@ -43,8 +43,8 @@ @@ -237,7 +237,7 @@ import { formatParams } from '/@/hooks/web/common' const appStore = useAppStore() const router = useRouter() - const { notification } = useMessage() + const { createMessage } = useMessage() const go = useGo() // 合计列 const calcColumns = [ @@ -424,9 +424,9 @@ }) function editColumns(row) { if (row.mblno) { - go(`/BookingDetail?id=${row.id}`) + go(`/BookingDetail?id=${row.id}&source=edit`) } else { - go(`/BookingDetail?id=${row.id}&customerNo=${row.customerNo}`) + go(`/BookingDetail?id=${row.id}&customerNo=${row.customerNo}&source=edit`) } } function FnCopy(data) { @@ -436,7 +436,7 @@ el.select() document.execCommand('copy') document.body.removeChild(el) - notification.success({ message: '复制成功!', duration: 3 }) + createMessage.success('复制成功!') } const moreNumVal = ref('') // 多提单号绑定值 const moreNumVisible = ref(false) //多提单号弹窗 @@ -467,18 +467,18 @@ const TaskShippingOrderCompareVisible = ref(false) const formatSheetVisible = ref(false) - // 批量编辑 - function batchEditing() { - const select = getSelectRows() - if (select.length === 0) { - notification.error({ message: '请选择操作订单', duration: 3 }) - return false - } - const removeArr = select.map((item) => { - return item.id - }) - openModal(true, { removeArr }) - } + // // 批量编辑 + // function batchEditing() { + // const select = getSelectRows() + // if (select.length === 0) { + // createMessage.warning('请选择操作订单') + // return false + // } + // const removeArr = select.map((item) => { + // return item.id + // }) + // openModal(true, { removeArr }) + // } function TaskShippingOrderCompareHandleCancel() { TaskShippingOrderCompareVisible.value = false } @@ -550,6 +550,11 @@ .static-box { position: fixed; bottom: 0; + height: 66.5px; + } + .icon-fuzhi3 { + color: #257afa; + cursor: pointer; } }