Compare commits

...

2 Commits

Author SHA1 Message Date
f7994d232d Merge pull request 'fix:修复展示问题' (#18) from dev into master
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #18
2023-12-01 02:28:52 -05:00
fanxb
f78349a1d2 fix:修复展示问题 2023-12-01 15:27:51 +08:00

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