notice.js 320 B

1234567891011121314151617181920
  1. import common from '../../utils/util';
  2. import main from '../../utils/main';
  3. const app = getApp();
  4. Page({
  5. data: {
  6. },
  7. onLoad: function (options) {
  8. this.setData({
  9. Containnerheight: main.getWindowHeight(),
  10. });
  11. },
  12. onPullDownRefresh:function(){
  13. wx.reLaunch({
  14. url: './index',
  15. })
  16. }
  17. });