正在显示
1 个修改的文件
包含
12 行增加
和
0 行删除
@@ -130,6 +130,18 @@ trait Backend | @@ -130,6 +130,18 @@ trait Backend | ||
130 | if ($this->request->isPost()) { | 130 | if ($this->request->isPost()) { |
131 | $params = $this->request->post("row/a"); | 131 | $params = $this->request->post("row/a"); |
132 | if ($params) { | 132 | if ($params) { |
133 | + $host = 'http://feipin.w.brotop.cn'; | ||
134 | + if(isset($params['image']) && !empty($params['image'])){ | ||
135 | + $params['image'] = $host.$params['image']; | ||
136 | + } | ||
137 | + if(isset($params['images']) && !empty($params['images'])){ | ||
138 | + $images = explode(',',$params['images']); | ||
139 | + $img = ''; | ||
140 | + foreach($images as $value){ | ||
141 | + $img .= $host.$value.','; | ||
142 | + } | ||
143 | + $params['images'] = trim($img,','); | ||
144 | + } | ||
133 | try { | 145 | try { |
134 | //是否采用模型验证 | 146 | //是否采用模型验证 |
135 | if ($this->modelValidate) { | 147 | if ($this->modelValidate) { |
-
请 注册 或 登录 后发表评论