提交 f9c6a1bc 编写于 作者: D devil_gong

优化

上级 13b1dfff
......@@ -162,6 +162,11 @@ Page({
} else {
my.redirectTo({url: '/pages/user-order/user-order'});
}
} else {
my.showToast({
type: "fail",
content: res.data.msg
});
}
},
fail: () => {
......
......@@ -545,12 +545,15 @@ class BuyService
'key_name' => 'address_id',
'error_msg' => '地址有误',
],
[
];
if(MyC('common_order_is_booking', 0) != 1)
{
$p[] = [
'checked_type' => 'empty',
'key_name' => 'payment_id',
'error_msg' => '支付方式有误',
],
];
];
}
$ret = params_checked($params, $p);
if($ret !== true)
{
......@@ -599,7 +602,7 @@ class BuyService
'preferential_price' => $preferential_price,
'price' => $check['data']['total_price'],
'total_price' => $check['data']['total_price']-$preferential_price,
'payment_id' => intval($params['payment_id']),
'payment_id' => isset($params['payment_id']) ? intval($params['payment_id']) : 0,
'add_time' => time(),
];
if($order['status'] == 1)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册