金诚优选前端代码
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.

10 lines
207 B

  1. export function getPx (val) {
  2. if (!val) return 0
  3. if (val.indexOf('rpx') > -1) {
  4. val = +val.replace('rpx', '')
  5. val = uni.upx2px(val)
  6. } else {
  7. val = +val.replace('px', '')
  8. }
  9. return val
  10. }