| 1234567891011121314151617181920212223242526 |
- Component({
- properties: {
- list1: {
- type: Array
- },
- list2: {
- type: Array
- },
- title: {
- type: String,
- value: "基本信息"
- }
- },
- data: {
- showAll: false
- },
- methods: {
- onChange({
- detail
- }) {
- this.setData({
- showAll: detail
- })
- }
- }
- })
|