shish 6 лет назад
Родитель
Сommit
e2fbeba6d4
1 измененных файлов с 3 добавлено и 3 удалено
  1. 3 3
      app/saas/controllers/SetMealController.php

+ 3 - 3
app/saas/controllers/SetMealController.php

@@ -42,7 +42,7 @@ class SetMealController extends BaseController
 		$fest = SetMealService::getById($id);
 		util::success($fest);
 	}
-
+	
 	//花店老板查看套餐详情 shish 2020.1.11
 	public function actionGetDetail()
 	{
@@ -56,8 +56,8 @@ class SetMealController extends BaseController
 			['name' => '人脸支付', 'has' => 0],
 		];
 		$free = rand(0, 1);
-		$data = ['detail' => $detail, 'function' => $function, 'free' => $free];
+		$data = ['detail' => $detail, 'function' => $function, 'status' => $free];
 		util::success($data);
 	}
-
+	
 }