index.js 219 B

12345678910111213141516171819
  1. Component({
  2. properties: {
  3. list: {
  4. type: Array
  5. }
  6. },
  7. data: {
  8. showAll: false
  9. },
  10. methods: {
  11. onChange({
  12. detail
  13. }) {
  14. this.setData({
  15. showAll: detail
  16. })
  17. }
  18. }
  19. })