wanghousheng 8 months ago
parent 69e6be4350
commit 556402be4f
  1. 2
      app/api/controller/StoreKeeper.php

@ -197,8 +197,6 @@ class StoreKeeper extends Controller
if (!empty($list['data'])) {
foreach ($list['data'] as $value) {
if (!empty($value['transfer']) && !empty($value['transfer']['chat_image_id'])) {
$list = $value['transfer'];
return $this->renderSuccess(compact('dataType', 'list'));
$chat_image_ids = UploadFile::whereIn('file_id', explode(",", $value['transfer']['chat_image_id']))->field('file_id,file_path,file_type,storage,domain')->select();
foreach ($chat_image_ids as &$chat_image_id) {
$chat_image_id['file_path'] = getUrl($chat_image_id['file_path'], $chat_image_id['domain']);

Loading…
Cancel
Save