cancelAppointment.ts 376 B

12345678910111213141516171819202122
  1. Page({
  2. data: {
  3. id: "",
  4. appointmentInfo: {
  5. operateTime: '',
  6. operateDuration: '',
  7. conditioningProgramSupplierName: '',
  8. cpSupplierDetailAddress: '',
  9. cpSupplierPhone: '',
  10. },
  11. },
  12. onLoad(options: any) {
  13. if (options.id) {
  14. this.setData({ id: options.id });
  15. }
  16. },
  17. onBack() {
  18. wx.navigateBack({ delta: 1 });
  19. },
  20. });