mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
37 lines
977 B
JavaScript
37 lines
977 B
JavaScript
'use strict';
|
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
exports.canIUseFormFieldButton = exports.canIUseModel = void 0;
|
|
var utils_1 = require('./utils');
|
|
function compareVersion(v1, v2) {
|
|
v1 = v1.split('.');
|
|
v2 = v2.split('.');
|
|
var len = Math.max(v1.length, v2.length);
|
|
while (v1.length < len) {
|
|
v1.push('0');
|
|
}
|
|
while (v2.length < len) {
|
|
v2.push('0');
|
|
}
|
|
for (var i = 0; i < len; i++) {
|
|
var num1 = parseInt(v1[i], 10);
|
|
var num2 = parseInt(v2[i], 10);
|
|
if (num1 > num2) {
|
|
return 1;
|
|
}
|
|
if (num1 < num2) {
|
|
return -1;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
function canIUseModel() {
|
|
var system = utils_1.getSystemInfoSync();
|
|
return compareVersion(system.SDKVersion, '2.9.3') >= 0;
|
|
}
|
|
exports.canIUseModel = canIUseModel;
|
|
function canIUseFormFieldButton() {
|
|
var system = utils_1.getSystemInfoSync();
|
|
return compareVersion(system.SDKVersion, '2.10.3') >= 0;
|
|
}
|
|
exports.canIUseFormFieldButton = canIUseFormFieldButton;
|