index.js 382 B

1234567891011121314151617181920
  1. Page({
  2. data: {
  3. width: 300,
  4. height: 300,
  5. renderWidth: 300,
  6. renderHeight: 300,
  7. },
  8. onLoad() {
  9. const info = wx.getSystemInfoSync();
  10. const width = info.windowWidth;
  11. const height = info.windowHeight;
  12. const dpi = info.pixelRatio;
  13. this.setData({
  14. width, height,
  15. renderWidth: width * dpi,
  16. renderHeight: height * dpi
  17. });
  18. }
  19. })