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

32 lines
415 B

  1. Component({
  2. data: {
  3. schedule:0
  4. },
  5. properties: {
  6. item:{
  7. type:Object,
  8. value:{}
  9. }
  10. },
  11. methods: {
  12. go(e){
  13. let url = e.currentTarget.dataset.url
  14. tt.navigateTo({
  15. url: url, // 指定页面的 url
  16. success: (res) => {
  17. },
  18. fail: (res) => {
  19. },
  20. });
  21. }
  22. },
  23. // created:function(){
  24. // }
  25. })