|
@@ -83,7 +83,7 @@ class WashCate extends Controller
|
|
|
}
|
|
|
if($this->request->isPost()) {
|
|
|
// 价格设置
|
|
|
- $title_arr= input('post.title');
|
|
|
+ $title_arr= input('post.ladder_title');
|
|
|
$price_arr= input('post.price');
|
|
|
$price_param = [];
|
|
|
if(empty($price_arr) || empty($title_arr)) $this->error('请设置价格');
|
|
@@ -91,7 +91,6 @@ class WashCate extends Controller
|
|
|
$price_param[] = ['title'=>$t,'price'=>bcadd($price_arr[$k],0,2),'ladder_key'=>$k];
|
|
|
}
|
|
|
$data['ladder_set'] = json_encode($price_param);
|
|
|
- $data['title'] = input('name');
|
|
|
}
|
|
|
}
|
|
|
|