1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- Component({
-
- properties: {
- occupyOrder:{
- type: Array,
- value: []
- }
- },
- lifetimes:{
- attached(){
-
- this.setData({
- showPopup: true
- });
- }
- },
-
- data: {
- showPopup: true,
- },
-
- methods: {
- handleConfirm() {
-
- this.setData({
- showPopup: false
- });
- },
-
- handleContact() {
-
- wx.makePhoneCall({
- phoneNumber: '18888888888'
- });
- },
- }
- })
|