This commit is contained in:
chenbo 2024-02-27 16:05:31 +08:00
parent 4e7f893f1d
commit 5c89b5877e

View File

@ -129,12 +129,12 @@ class DataReceptionLogic extends BaseLogic
{
$data = DataReception::with(['projectInfo'])->findOrEmpty($params['id'])->toArray();
$data['bidding_file'] = json_decode($data['bidding_file'], true);
$data['zbkzj_file'] = json_encode($data['zbkzj_file'], true);
$data['gczjht_file'] = json_encode($data['gczjht_file'], true);
$data['xmbgqzzl_file'] = json_encode($data['xmbgqzzl_file'], true);
$data['ssgsysjs_file'] = json_encode($data['ssgsysjs_file'], true);
$data['wlhj_file'] = json_encode($data['wlhj_file'], true);
$data['other_file'] = json_encode($data['other_file'], true);
$data['zbkzj_file'] = json_decode($data['zbkzj_file'], true);
$data['gczjht_file'] = json_decode($data['gczjht_file'], true);
$data['xmbgqzzl_file'] = json_decode($data['xmbgqzzl_file'], true);
$data['ssgsysjs_file'] = json_decode($data['ssgsysjs_file'], true);
$data['wlhj_file'] = json_decode($data['wlhj_file'], true);
$data['other_file'] = json_decode($data['other_file'], true);
return $data;
}
}