index.js 326 B

1234567891011121314151617181920212223242526
  1. Component({
  2. properties: {
  3. list1: {
  4. type: Array
  5. },
  6. list2: {
  7. type: Array
  8. },
  9. title: {
  10. type: String,
  11. value: "基本信息"
  12. }
  13. },
  14. data: {
  15. showAll: false
  16. },
  17. methods: {
  18. onChange({
  19. detail
  20. }) {
  21. this.setData({
  22. showAll: detail
  23. })
  24. }
  25. }
  26. })