抖音c端
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

commodityBox.js 415 B

2 년 전
1234567891011121314151617181920212223242526272829303132
  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. })