From a2b22eb61b56e7aa2a815c147e7bca7bad70f39a Mon Sep 17 00:00:00 2001 From: xzg <4727863@qq.com> Date: Fri, 26 Apr 2024 19:41:27 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E5=BA=93=E4=BD=8D=E5=9C=A8=E5=BA=93?= =?UTF-8?q?=E6=95=B0=E5=B1=95=E7=A4=BA=EF=BC=8C=E8=B4=A2=E5=8A=A1=E5=AF=BC?= =?UTF-8?q?=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/poptxt.js | 16 +--- src/views/Pricesystem/ListOfPriceSystems.vue | 88 ++++++++++++++++++- .../basicdata/brand/basicdataFreight.vue | 9 +- .../BasicdataGoodsAllocationDetails.vue | 7 -- .../distributionStockListDetails.vue | 37 +++++--- .../financialsector/CustomerBaseprice.vue | 79 +++-------------- 6 files changed, 133 insertions(+), 103 deletions(-) diff --git a/src/utils/poptxt.js b/src/utils/poptxt.js index 98023724..f77a11c3 100644 --- a/src/utils/poptxt.js +++ b/src/utils/poptxt.js @@ -1,15 +1,5 @@ -import { ElMessage } from 'element-plus' // 引入 ElMessage 组件 export function popmsg(res) { // 显示成功消息 - if (res.msg == '导入成功') { - ElMessage({ - message: res.msg, - type: 'success', - }); - return; - }else{ - - // 创建包含 p 标签的内容的 div 元素 var fragment = document.createDocumentFragment(); var div = document.createElement('div'); @@ -23,14 +13,14 @@ export function popmsg(res) { div.style.left = '50%'; div.style.transform = 'translate(-50%, -50%)'; div.style.width = '50%'; - div.style.height = '200px'; + div.style.height = '50%'; div.style.backgroundColor = '#ffffff'; div.style.borderRadius = '4px'; div.style.overflow = 'scroll'; div.style.border = '1px solid #ccc'; div.style.padding = '10px'; // 将后端返回的内容作为 HTML 插入到 div 中 - div.innerHTML = res.msg; + div.innerHTML = res.data; // 遍历所有的
标签并设置首行缩进 var pTags = div.querySelectorAll('p'); pTags.forEach(function (pTag) { @@ -63,5 +53,5 @@ export function popmsg(res) { // 添加点击事件监听 document.addEventListener('click', closePopupOnClickOutside); - } + } \ No newline at end of file diff --git a/src/views/Pricesystem/ListOfPriceSystems.vue b/src/views/Pricesystem/ListOfPriceSystems.vue index 2bf91694..1bc5f7ce 100644 --- a/src/views/Pricesystem/ListOfPriceSystems.vue +++ b/src/views/Pricesystem/ListOfPriceSystems.vue @@ -16,7 +16,14 @@