edit-plan-settle_type2

This commit is contained in:
lccsw
2022-08-12 15:11:25 +08:00
parent e83b3b156e
commit e9154ddd5a
+2 -2
View File
@@ -147,7 +147,7 @@ class Settle extends HD_Controller
$this->data['monthAry'] = $this->auto_business_model->month();
$this->data['pager'] = array('count' => ceil($total / $size), 'curr' => $page,'totle'=>$total);
$this->data['_title'] = '商家结算管理';
$view = $params['_biz_type'] ? 'biz/settle/lists' : 'biz/settle/lists_brand';
$view = $params['_biz_type']==2 ? 'biz/settle/lists_brand' : 'biz/settle/lists';
$this->show_view($view,true);
}
@@ -378,7 +378,7 @@ class Settle extends HD_Controller
$this->data['type_arr'] = $this->biz_settle_static_model->other_price_type();
$this->data['pager'] = array('count' => ceil($total / $size), 'curr' => $page,'totle'=>$total);
$this->data['_title'] = '商家结算管理';
$view = $params['_biz_type'] ? 'biz/settle/lists_static_brand' : 'biz/settle/lists_static';
$view = $params['_biz_type']==2 ? 'biz/settle/lists_static_brand' : 'biz/settle/lists_static';
$this->show_view($view,true);
}