From fdb6ad79bb3ad837c0ac8375597c487539c7959c Mon Sep 17 00:00:00 2001 From: Tomas <tomasysh@gmail.com> Date: 星期四, 16 十二月 2021 11:16:46 +0800 Subject: [PATCH] fixed#132455: [取消預約] 取消預約後,取消的顧問單會顯示在「已聯絡」的顧問列表中 --- PAMapp/assets/ts/api/consultant.ts | 34 +++++++++++++++++----------------- 1 files changed, 17 insertions(+), 17 deletions(-) diff --git a/PAMapp/assets/ts/api/consultant.ts b/PAMapp/assets/ts/api/consultant.ts index d3462a4..f7c4ba9 100644 --- a/PAMapp/assets/ts/api/consultant.ts +++ b/PAMapp/assets/ts/api/consultant.ts @@ -204,8 +204,8 @@ /** ��撣嗅otp隤��� */ indexKey: string, /** Otp�������� */ - success: boolean, - failCode: string, + success : boolean, + failCode : string, failReason: string, } @@ -219,29 +219,29 @@ } export interface RegisterInfo { - phone?: string, - email?: string, + phone? : string, + email? : string, indexKey: string, - otpCode: string, - name: string, + otpCode : string, + name : string, /** "SMS"嚗tp������"EMAIL":Otp�email */ contactType: string } export interface UserReviewsConsultantsParams{ - appointmentId:number, - score:number, + appointmentId: number, + score : number, } export interface editAppointmentParams { - id: number, - phone: string, - email: string, - contactType: string, - gender: string, - age: string, - job: string, - requirement: string, - hopeContactTime: string, + id : number, + phone : string, + email : string, + contactType : string, + gender : string, + age : string, + job : string, + requirement : string, + hopeContactTime : string, otherRequirement: null } -- Gitblit v1.8.0