fix:修复展示问题 #18

Merged
fanxb merged 1 commits from dev into master 2023-12-01 15:28:52 +08:00
Showing only changes of commit f78349a1d2 - Show all commits

View File

@ -64,6 +64,9 @@ export default {
}, },
methods: { methods: {
checkVersion: function(version, latestVersion) { checkVersion: function(version, latestVersion) {
if (version === latestVersion) {
return false;
}
let versions = version.split("."); let versions = version.split(".");
let latestVersions = latestVersion.split("."); let latestVersions = latestVersion.split(".");
for (let i = 0; i < versions.length; i++) { for (let i = 0; i < versions.length; i++) {