|
@@ -163,8 +163,8 @@ class MyOrderController extends CController {
|
|
|
if (!$order_obj || !$flag) {
|
|
|
O2oApp::response(false, '用户或订单ID错误', []);
|
|
|
}
|
|
|
-
|
|
|
- $order_obj->signUrl = $url;
|
|
|
+ $url = get_object_vars(json_decode($url));
|
|
|
+ $order_obj->signUrl = 'http://odulcd8g1.bkt.clouddn.com/'.$url['hash'];
|
|
|
$order_obj->status = 6;
|
|
|
$success = $order_obj->save();
|
|
|
O2oApp::response($success, '保存失败,请重试', []);
|