|
|
|
@ -24,9 +24,9 @@ class Index extends CI_Controller {
|
|
|
|
|
* * 使用供应商平台登陆账号获取接口的key
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
public function index($GRI_SN=0)
|
|
|
|
|
public function index($GRI_SN=0, $vendor=null)
|
|
|
|
|
{
|
|
|
|
|
$auto_vendor_str = implode(",", $this->vendor->auto_vendor);
|
|
|
|
|
$auto_vendor_str = $vendor===null ? implode(",", $this->vendor->auto_vendor) : $vendor;
|
|
|
|
|
return $this->push($GRI_SN, $auto_vendor_str);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|