device.ts 255 B

1234567891011121314
  1. /**
  2. * 获取设备像素比
  3. * @returns 设备像素比
  4. */
  5. export const getDevicePixelRatio = (): number => {
  6. const dpr = uni.getDeviceInfo().devicePixelRatio ?? 1;
  7. // #ifdef MP
  8. // 微信小程序高清处理
  9. return 3;
  10. // #endif
  11. return dpr;
  12. };