抖音b端
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

22 行
327 B

  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. })