index.js 382 B

1234567891011121314151617181920212223242526
  1. Page({
  2. data: {
  3. tab: [
  4. {
  5. text: "全部"
  6. },
  7. {
  8. text: "待进行"
  9. },
  10. {
  11. text: "待评价"
  12. }
  13. ],
  14. tabCurrent: 0
  15. },
  16. changeTab (e) {
  17. const {index} = e.currentTarget.dataset
  18. const {tabCurrent} = this.data
  19. if (index !== tabCurrent) {
  20. this.setData({
  21. tabCurrent: index
  22. })
  23. }
  24. }
  25. });