1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- 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
- })
- this.triggerEvent('Close', {})
- },
- launchGroup: function () {
- this.triggerEvent('Group', {})
- }
- }
- })
|