webview-test.js 462 B

123456789101112131415161718192021222324
  1. const WEB_VIEW_TEST_URL = 'https://oss-mbh5.colormaprun.com/gotomars/h5/content-h5-test-template.html'
  2. Page({
  3. data: {
  4. webViewSrc: '',
  5. webViewReady: false,
  6. },
  7. onLoad() {
  8. this.setData({
  9. webViewSrc: WEB_VIEW_TEST_URL,
  10. webViewReady: true,
  11. })
  12. },
  13. handleWebViewError() {
  14. wx.showModal({
  15. title: 'H5 打开失败',
  16. content: WEB_VIEW_TEST_URL,
  17. showCancel: false,
  18. confirmText: '知道了',
  19. })
  20. },
  21. })