progress.js 674 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. const app = getApp();
  2. Page({
  3. data: {
  4. StatusBar: app.globalData.StatusBar,
  5. CustomBar: app.globalData.CustomBar,
  6. ColorList: app.globalData.ColorList,
  7. color:'red',
  8. },
  9. onLoad() {
  10. let that = this;
  11. setTimeout(function() {
  12. that.setData({
  13. loading: true
  14. })
  15. }, 500)
  16. },
  17. showModal(e) {
  18. this.setData({
  19. modalName: e.currentTarget.dataset.target
  20. })
  21. },
  22. hideModal(e) {
  23. this.setData({
  24. modalName: null
  25. })
  26. },
  27. SetColor(e) {
  28. this.setData({
  29. color: e.currentTarget.dataset.color,
  30. modalName: null
  31. })
  32. },
  33. SetActive(e) {
  34. this.setData({
  35. active: e.detail.value
  36. })
  37. },
  38. });