get-system-info.js 291 B

12345678910111213141516171819
  1. Page({
  2. data: {
  3. systemInfo: {}
  4. },
  5. getSystemInfo() {
  6. my.getSystemInfo({
  7. success: (res) => {
  8. this.setData({
  9. systemInfo: res
  10. })
  11. }
  12. })
  13. },
  14. getSystemInfoSync() {
  15. this.setData({
  16. systemInfo: my.getSystemInfoSync(),
  17. });
  18. },
  19. })