...
|
...
|
@@ -109,16 +109,21 @@ const getPlatForm = (req) => { |
|
|
if (yoho.app_version) {
|
|
|
yoho.app_version = _.toString(yoho.app_version);
|
|
|
arrs = yoho.app_version.split('.');
|
|
|
if (arrs.length > 2) {
|
|
|
if (arrs[0] && +arrs[0] < 4) {
|
|
|
isNewVersion = false;
|
|
|
} else if (arrs[1] && +arrs[1] < 9) {
|
|
|
isNewVersion = false;
|
|
|
} else if (arrs[2] && +arrs[2] <= 0) {
|
|
|
isNewVersion = false;
|
|
|
} else {
|
|
|
isNewVersion = true;
|
|
|
}
|
|
|
// if (arrs.length > 2) {
|
|
|
// if (arrs[0] && +arrs[0] < 4) {
|
|
|
// isNewVersion = false;
|
|
|
// } else if (arrs[1] && +arrs[1] < 9) {
|
|
|
// isNewVersion = false;
|
|
|
// } else if (arrs[2] && +arrs[2] <= 0) {
|
|
|
// isNewVersion = false;
|
|
|
// } else {
|
|
|
// isNewVersion = true;
|
|
|
// }
|
|
|
// }
|
|
|
if (arrs[0] >= 5) {
|
|
|
isNewVersion = true;
|
|
|
} else if (+arrs[0] === 4 && +arrs[1] === 9 && +arrs[2] > 0) {
|
|
|
isNewVersion = true;
|
|
|
}
|
|
|
}
|
|
|
|
...
|
...
|
|