classList.js 656 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. // pages/Components/classList/classList.js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. showLeaveNum: {
  8. type: Boolean,
  9. value: false
  10. },
  11. showFlag:{
  12. type: Boolean,
  13. value: true
  14. },
  15. date: {
  16. type: String
  17. },
  18. list: {
  19. type: Array,
  20. value: []
  21. }
  22. },
  23. /**
  24. * 组件的初始数据
  25. */
  26. data: {
  27. },
  28. /**
  29. * 组件的方法列表
  30. */
  31. methods: {
  32. getLeaveNumList: function () {
  33. wx.navigateTo({
  34. url: '/pages/leaveRecord/leaveRecord',
  35. })
  36. },
  37. radioChange:function(e){
  38. console.log(JSON.stringify(e.detail.value))
  39. },
  40. }
  41. })