|
@@ -1246,6 +1246,7 @@ class AccountService
|
|
|
* - gender: ?int 性别(1:男 2:女)
|
|
|
* - mobile: ?string 手机号
|
|
|
* - code: ?string 验证码(修改手机号时必填)
|
|
|
+ * - avatar: ?string 头像
|
|
|
* @return array 返回结果
|
|
|
*/
|
|
|
public function updateBasicInfo(CoachUser $coach, array $data): array
|
|
@@ -1269,6 +1270,7 @@ class AccountService
|
|
|
'nickname' => '',
|
|
|
'gender' => '',
|
|
|
'mobile' => '',
|
|
|
+ 'avatar' => ''
|
|
|
]);
|
|
|
|
|
|
// 如果没有要更新的字段,直接返回
|
|
@@ -1414,17 +1416,28 @@ class AccountService
|
|
|
return [
|
|
|
'id' => $item->id,
|
|
|
'project_id' => $item->project_id,
|
|
|
- 'project_name' => $item->project?->name,
|
|
|
- 'category_id' => $item->project?->category_id,
|
|
|
+ 'project_name' => $item->project?->title,
|
|
|
+ 'category_id' => $item->project?->cate_id,
|
|
|
'category_name' => $item->project?->category?->name,
|
|
|
- 'duration' => $item->project?->duration, // 服务时长(分钟)
|
|
|
- 'price' => $item->project?->price, // 项目价格
|
|
|
- 'discount_amount' => $item->discount_amount, // 优惠金额
|
|
|
- 'final_price' => $item->project?->price - $item->discount_amount, // 最终价格
|
|
|
- 'service_gender' => $item->service_gender, // 服务性别
|
|
|
- 'service_distance' => $item->service_distance, // 服务距离(米)
|
|
|
- 'traffic_fee_type' => $item->traffic_fee_type, // 路费类型
|
|
|
- 'traffic_fee' => $item->traffic_fee, // 路费金额
|
|
|
+ 'cover' => $item->project?->cover,
|
|
|
+ 'subtitle' => $item->project?->subtitle,
|
|
|
+ 'duration' => $item->project?->duration,
|
|
|
+ 'price' => $item->project?->price,
|
|
|
+ 'original_price' => $item->project?->original_price,
|
|
|
+ 'sales' => $item->project?->sales,
|
|
|
+ 'project_desc' => $item->project?->project_desc,
|
|
|
+ 'service_desc' => $item->project?->service_desc,
|
|
|
+ 'service_posture' => $item->project?->service_posture,
|
|
|
+ 'service_process' => $item->project?->service_process,
|
|
|
+ 'suitable_population' => $item->project?->suitable_population,
|
|
|
+ 'taboo_symptoms' => $item->project?->taboo_symptoms,
|
|
|
+ 'discount_amount' => $item->discount_amount,
|
|
|
+ 'service_gender' => $item->service_gender,
|
|
|
+ 'service_distance' => $item->service_distance,
|
|
|
+ 'traffic_fee_type' => $item->traffic_fee_type,
|
|
|
+ 'traffic_fee' => $item->traffic_fee,
|
|
|
+ 'voucher' => $item->voucher,
|
|
|
+ 'state' => $item->state,
|
|
|
'created_at' => $item->created_at?->format('Y-m-d H:i:s'),
|
|
|
'updated_at' => $item->updated_at?->format('Y-m-d H:i:s'),
|
|
|
];
|