index.js 258 B

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