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