正在显示
1 个修改的文件
包含
6 行增加
和
0 行删除
| @@ -116,9 +116,15 @@ class ProjectLogic extends BaseLogic | @@ -116,9 +116,15 @@ class ProjectLogic extends BaseLogic | ||
| 116 | $param['channel'] = Arr::a2s($param['channel']); | 116 | $param['channel'] = Arr::a2s($param['channel']); |
| 117 | } | 117 | } |
| 118 | if(isset($param['notice_file']) && !empty($param['notice_file'])){ | 118 | if(isset($param['notice_file']) && !empty($param['notice_file'])){ |
| 119 | + foreach ($param['notice_file'] as &$v1) { | ||
| 120 | + $v1['url'] = str_replace_url($v1['url']); | ||
| 121 | + } | ||
| 119 | $param['notice_file'] = Arr::a2s($param['notice_file']); | 122 | $param['notice_file'] = Arr::a2s($param['notice_file']); |
| 120 | } | 123 | } |
| 121 | if(isset($param['confirm_file']) && !empty($param['confirm_file'])){ | 124 | if(isset($param['confirm_file']) && !empty($param['confirm_file'])){ |
| 125 | + foreach ($param['confirm_file'] as &$v2) { | ||
| 126 | + $v2['url'] = str_replace_url($v2['url']); | ||
| 127 | + } | ||
| 122 | $param['confirm_file'] = Arr::a2s($param['confirm_file']); | 128 | $param['confirm_file'] = Arr::a2s($param['confirm_file']); |
| 123 | } | 129 | } |
| 124 | unset($param['payment'],$param['deploy_build'],$param['deploy_optimize'],$param['online_check'],$param['project_after']); | 130 | unset($param['payment'],$param['deploy_build'],$param['deploy_optimize'],$param['online_check'],$param['project_after']); |
-
请 注册 或 登录 后发表评论