|
@@ -254,10 +254,12 @@ class MobileFlow extends Backend
|
|
|
}
|
|
|
|
|
|
$proxy_id = $this->auth->id;
|
|
|
- if($this->super){
|
|
|
- $proxy_id = 0;
|
|
|
- }
|
|
|
- $templates = MobileFlowAreaTemplate::where('status', 0)->where('proxy_id', $proxy_id)->order('create_time asc')->select();
|
|
|
+
|
|
|
+ $templates = MobileFlowAreaTemplate::where('status', 0)->where(function ($query) use($proxy_id){
|
|
|
+ if(!$this->super){
|
|
|
+ return $query->where('proxy_id', $proxy_id);
|
|
|
+ }
|
|
|
+ })->order('create_time asc')->select();
|
|
|
|
|
|
$this->assign('templates', $templates);
|
|
|
$this->assign('row',$mobile);
|