绩效考核手机版
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
263 B

3 years ago
/**
* @description: 转px兼容字符串
* @param {Number|String} val
* @return {Number}
* @example: toPx('50rpx')
*/
export default function toPx(val) {
if (!/\d+px$/.test(val)) {
val = uni.upx2px(parseInt(val));
}
return parseInt(val) || 0;
}