test.js 371 B

1234567891011121314151617
  1. const app = getApp();
  2. Page({
  3. data: {
  4. StatusBar: app.globalData.StatusBar,
  5. CustomBar: app.globalData.CustomBar,
  6. ColorList: app.globalData.ColorList,
  7. scrollLeft: 0,
  8. TabCur: 0,
  9. },
  10. tabSelect(e) {
  11. console.log(e);
  12. this.setData({
  13. TabCur: e.currentTarget.dataset.id,
  14. scrollLeft: (e.currentTarget.dataset.id - 1) * 60
  15. })
  16. },
  17. });