12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- Component({
-
- properties: {
- typeOf: {
- type: "String",
- value: ''
- },
- title: {
- type: "String",
- value: ''
- },
- headTextOne: {
- type: "String",
- value: ''
- },
- headTextTwo: {
- type: "String",
- value: ''
- },
- content: {
- type: "Array",
- value: ''
- }
- },
-
- data: {
- closeFlag: true
- },
-
- methods: {
- close: function () {
- this.setData({
- closeFlag: !this.data.closeFlag
- })
- },
- launchGroup: function () {
- this.triggerEvent('Group', {})
- }
- }
- })
|