...
|
...
|
@@ -736,7 +736,7 @@ class Order extends Api |
|
|
$data = $this->request->post('data_json');
|
|
|
if (!$data) $this->error('data_json参数缺失');
|
|
|
|
|
|
$data = json_decode($data,true);
|
|
|
$data = json_decode(htmlspecialchars_decode($data),true);
|
|
|
$params = [];
|
|
|
$orderids = [];
|
|
|
foreach ($data as $key => $value){
|
...
|
...
|
|