作者 赵彬吉

update

... ... @@ -11,6 +11,7 @@ use App\Rules\Ids;
use App\Services\BatchExportService;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Storage;
use Illuminate\Support\Str;
/**
* 精准询盘
... ... @@ -131,6 +132,12 @@ class InquiryController extends BaseController
if(!empty($this->param['form_id'])){
$item = array_merge($item, $item['data']);
}
foreach ($map as $field => $name) {
if (Str::startsWith($item[$field], '=')) {
$item[$field] = "'" . $item[$field];
}
}
}
//生成文件,发送到客户端
... ...