【类 型】:fix

【原  因】:改一下提示语 小程序端的弹出框 文字显示长度有限
【过  程】:
【影  响】:
This commit is contained in:
sszdot 2024-12-12 16:14:57 +08:00
parent c5325cb14a
commit 31188379c8

View File

@ -113,7 +113,7 @@ class CheckController extends PublicController
$whereShop['shop_id'] = $_REQUEST['shop_id'];
$shop = $shopDb->where($whereShop)->find();
if ($_REQUEST['transport_price'] != $shop['default_transport_price'] || $_REQUEST['pack_price'] != $shop['default_pack_price']) {
echo json_encode(array('status' => 0, 'msg' => '运费和打包费不符!'));
echo json_encode(array('status' => 0, 'msg' => '附加费不符!'));
exit(); //有问题跳出
}