From f78349a1d2b823f83e1413545f7336eaab1dee3d Mon Sep 17 00:00:00 2001 From: fanxb Date: Fri, 1 Dec 2023 15:27:51 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E5=A4=8D=E5=B1=95=E7=A4=BA?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bookmark_front/src/views/public/about/index.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bookmark_front/src/views/public/about/index.vue b/bookmark_front/src/views/public/about/index.vue index 4974e50..40d3f16 100644 --- a/bookmark_front/src/views/public/about/index.vue +++ b/bookmark_front/src/views/public/about/index.vue @@ -64,6 +64,9 @@ export default { }, methods: { checkVersion: function(version, latestVersion) { + if (version === latestVersion) { + return false; + } let versions = version.split("."); let latestVersions = latestVersion.split("."); for (let i = 0; i < versions.length; i++) {