微信小程序
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.

iPhoneXPatcher.js 351 B

3 jaren geleden
1234567891011121314151617181920212223
  1. // component/iPhoneXPatcher/iPhoneXPatcher.js
  2. let APP = getApp();
  3. Component({
  4. /**
  5. * 组件的属性列表
  6. */
  7. properties: {
  8. },
  9. /**
  10. * 组件的初始数据
  11. */
  12. data: {
  13. isIphoneX: APP.globalData.isIphoneX
  14. },
  15. /**
  16. * 组件的方法列表
  17. */
  18. methods: {}
  19. })