Commit aaf5538c by hcy001

1

parent 4edddaec
......@@ -134,8 +134,8 @@ class ApiController extends Controller
}
//导出询价
private function ApiInquiryExport($request){
(new ExportModel())->InquiryExport($request->input(),$this->user_id);
private function ApiInquiryExport($input){
(new ExportModel())->InquiryExport($input,$this->user_id);
}
//生成报价pdf
private function ApiOfferPdf($request){
......
......@@ -117,7 +117,7 @@ class InquiryItemsModel extends Model
$data['create_uid'] = $input['user_id'];
$data['create_name'] = $UserModel->FinduserInfoName($input['user_id']);
OplogModel::log($data);
OplogModel::log($data);
} catch (Exception $e) {
return [-1, $e->getMessage()];
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment