parking-order.js 703 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. // components/parking-order.js
  2. Component({
  3. /**
  4. * 组件的属性列表
  5. */
  6. properties: {
  7. occupyOrder:{
  8. type: Array,
  9. value: []
  10. }
  11. },
  12. lifetimes:{
  13. attached(){
  14. // 页面加载时显示弹窗
  15. this.setData({
  16. showPopup: true
  17. });
  18. }
  19. },
  20. /**
  21. * 组件的初始数据
  22. */
  23. data: {
  24. showPopup: true,
  25. },
  26. /**
  27. * 组件的方法列表
  28. */
  29. methods: {
  30. handleConfirm() {
  31. // 点击确认按钮
  32. this.setData({
  33. showPopup: false
  34. });
  35. },
  36. handleContact() {
  37. // 联系客服
  38. wx.makePhoneCall({
  39. phoneNumber: '18888888888' // 替换为实际的客服电话
  40. });
  41. },
  42. }
  43. })