|
|
@@ -105,6 +105,7 @@ class Beihuogl extends Start_Controller {
|
|
|
$perpage = $this->input->post('perpage',true);
|
|
|
$sqr = $this->input->post('sqr',true);
|
|
|
$sqr = trim($sqr);
|
|
|
+ $sq_status = $this->input->post('sq_status',true);
|
|
|
$shop_id = $this->input->post('shop_id',true);
|
|
|
$plat_id = $this->input->post('plat_id',true);
|
|
|
$shop_ids = $this->input->post('shop_ids',true);
|
|
|
@@ -128,6 +129,9 @@ class Beihuogl extends Start_Controller {
|
|
|
}
|
|
|
|
|
|
}
|
|
|
+ if($sq_status > -1){
|
|
|
+ $where .= " and sq_status = ".$sq_status." ";
|
|
|
+ }
|
|
|
|
|
|
if($plat_id > -1){
|
|
|
$where .= " and plat_id = ".$plat_id." ";
|
|
|
@@ -194,6 +198,8 @@ class Beihuogl extends Start_Controller {
|
|
|
if(in_array($user['id'],[10,28])){
|
|
|
$vip_id = 1;
|
|
|
}
|
|
|
+ $status_list = $this->bhsq->getSqStatus();
|
|
|
+ $this->data['status_list'] = $status_list;
|
|
|
$this->data['vip_id'] = $vip_id;
|
|
|
$this->_Template('beihuogl_dyapply',$this->data);
|
|
|
}
|