From aad702e662f2d10298f9f6524c3b21d10309ae27 Mon Sep 17 00:00:00 2001 From: dengbw Date: Mon, 11 Jul 2022 13:42:52 +0800 Subject: [PATCH] goods_711 --- api/controllers/wxapp/material/Biz.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/controllers/wxapp/material/Biz.php b/api/controllers/wxapp/material/Biz.php index f0e21c25..348e7bf4 100644 --- a/api/controllers/wxapp/material/Biz.php +++ b/api/controllers/wxapp/material/Biz.php @@ -219,13 +219,13 @@ class Biz extends Wxapp $re_cus = $this->mdCustomers->get($where); if ($re_cus) { //throw new Hd_exception('您已经预约报名了', API_CODE_FAIL); - throw new Hd_exception('预约报名成功了!', API_CODE_SUCCESS); + throw new Hd_exception('预约成功了!', API_CODE_SUCCESS); } $id = $this->mdCustomers->add($add_data); if (!$id) { - throw new Hd_exception('预约报名失败!', API_CODE_FAIL); + throw new Hd_exception('预约失败!', API_CODE_FAIL); } - throw new Hd_exception('预约报名成功!', API_CODE_SUCCESS); + throw new Hd_exception('预约成功!', API_CODE_SUCCESS); } }