|
@@ -2350,7 +2350,7 @@ class OrderController extends Controller
|
2350
|
2350
|
if(empty($result)) exit('0');
|
2351
|
2351
|
|
2352
|
2352
|
$result = json_decode(json_encode($result), true);
|
2353
|
|
- return json_encode($result);
|
|
2353
|
+ echo json_encode($result);
|
2354
|
2354
|
}
|
2355
|
2355
|
|
2356
|
2356
|
/**
|
|
@@ -2558,7 +2558,7 @@ class OrderController extends Controller
|
2558
|
2558
|
$res = array();
|
2559
|
2559
|
$res['data'] = $data;
|
2560
|
2560
|
$res['total'] = $total;
|
2561
|
|
- return json_encode($res);
|
|
2561
|
+ echo json_encode($res);
|
2562
|
2562
|
}
|
2563
|
2563
|
|
2564
|
2564
|
/*分销退补售后列表*/
|
|
@@ -3035,7 +3035,7 @@ class OrderController extends Controller
|
3035
|
3035
|
$res['data'] = $data;
|
3036
|
3036
|
$res['new_total'] = $new_total;
|
3037
|
3037
|
$res['old_total'] = $old_total;
|
3038
|
|
- return json_encode($res);
|
|
3038
|
+ echo json_encode($res);
|
3039
|
3039
|
}
|
3040
|
3040
|
|
3041
|
3041
|
}
|