| 12345678910111213141516171819202122232425 |
- Component({
- properties: {
- list1: {
- type: Array
- },
- list2: {
- type: Array
- }
- },
- data: {
- showAll: false
- },
- options: {
- addGlobalClass: true
- },
- methods: {
- onChange({
- detail
- }) {
- this.setData({
- showAll: detail
- })
- }
- }
- })
|