Merge pull request 'fix:修复展示问题' (#18) from dev into master
All checks were successful
continuous-integration/drone/push Build is passing

Reviewed-on: #18
This commit is contained in:
fanxb 2023-12-01 02:28:52 -05:00
commit f7994d232d

View File

@ -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++) {