1234567891011121314151617181920212223242526272829303132 |
- // components/Service/service.js
- Component({
- /**
- * 组件的属性列表
- */
- properties: {
- show: {
- type: Boolean,
- observer: function (newVal, oldVal) {
- this.setData({ show: newVal })
- console.log(this.data.show);
- }
- },
- },
- /**
- * 组件的初始数据
- */
- data: {
- show:false
- },
- /**
- * 组件的方法列表
- */
- methods: {
- sure(){
- this.triggerEvent("sure")
- }
- }
- })
|