From 631619e570cc7e445bf7bc26b773881517d6a82a Mon Sep 17 00:00:00 2001 From: chenjinsong <523037378@qq.com> Date: Mon, 27 Dec 2021 17:11:16 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8Dloading=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F=E9=94=99=E8=AF=AF=E3=80=81nodata=E6=B2=A1=E6=9C=89?= =?UTF-8?q?=E6=AD=A3=E5=B8=B8=E6=98=BE=E7=A4=BA=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/tools.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/utils/tools.js b/src/utils/tools.js index 1042548a..9eabe72a 100644 --- a/src/utils/tools.js +++ b/src/utils/tools.js @@ -356,11 +356,9 @@ function noDataDomFactory () { export const noData = { updated (el, binding) { if (el) { - console.info(binding.value, el) if (binding.value) { setTimeout(() => { el.childNodes.forEach(node => { - console.info(node, node.style) node.style && (node.style.display = 'none') }) el.insertBefore(noDataDomFactory(), el.childNodes[0])