index.js 199 B

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