e264b4f1 by yangjianbin

init

1 parent 9f82a215
...@@ -146,7 +146,7 @@ class Work extends CI_Controller ...@@ -146,7 +146,7 @@ class Work extends CI_Controller
146 $recordUrl = $this->config->item('apiBaseUrl') . 'order/orderOperatorRecord/' . $id; 146 $recordUrl = $this->config->item('apiBaseUrl') . 'order/orderOperatorRecord/' . $id;
147 $result2 = file_get_contents($recordUrl); 147 $result2 = file_get_contents($recordUrl);
148 $json2 = json_decode($result2); 148 $json2 = json_decode($result2);
149 $ret2 = $json2->data ? $json2 : array(); 149 $ret2 = isset($json2->data) ? $json2 : array();
150 150
151 $data = array( 151 $data = array(
152 'clientInfoOutputVO' => $ret->clientInfoOutputVO, 152 'clientInfoOutputVO' => $ret->clientInfoOutputVO,
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!