...
|
...
|
@@ -42,6 +42,10 @@ class SalesmangoodsController extends AdminBaseController{ |
|
|
public function salesman_edit(){
|
|
|
|
|
|
if($this -> request -> isPost()){
|
|
|
if($_POST['money'] > $_POST['price']){
|
|
|
$this -> error('佣金不能大于售价');
|
|
|
}
|
|
|
|
|
|
if(!empty($_POST['det_img'])){
|
|
|
$_POST['det_img'] = json_encode($_POST['det_img']);
|
|
|
$_POST['det_name'] = json_encode($_POST['det_name']);
|
...
|
...
|
@@ -57,7 +61,6 @@ class SalesmangoodsController extends AdminBaseController{ |
|
|
$data = Db::name('goods') -> where('id',$id['id']) -> find();
|
|
|
if(!empty($data['det_img'])){
|
|
|
$data['det_img'] = json_decode($data['det_img'],true);
|
|
|
$data['det_img'] = explode(',',$data['det_img']);
|
|
|
$data['det_name'] = json_decode($data['det_name'],true);
|
|
|
foreach ($data['det_img'] as $key => $val){
|
|
|
$data['more'][$key]['url'] = $data['det_img'][$key];
|
...
|
...
|
|