抖音b端
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.

errorPage.js 327 B

2 vuotta sitten
12345678910111213141516171819202122
  1. // pages/index/solution/fail/fail.js
  2. Page({
  3. /**
  4. * 页面的初始数据
  5. */
  6. data: {
  7. errTitle:"暂无结果"
  8. },
  9. reBack(){
  10. tt.switchTab({
  11. url: '/pages/main/main',
  12. })
  13. },
  14. onLoad(options) {
  15. if (options.errTitle) {
  16. this.setData({
  17. errTitle: options.errTitle
  18. })
  19. }
  20. },
  21. })