浏览代码

33、流量卡代理商关联了他自己的发货模板主站看不到

Cherry 2 年之前
父节点
当前提交
ccc4906b85

+ 2 - 2
application/admin/controller/MobileFlowAreaTemplate.php

@@ -56,10 +56,10 @@ class MobileFlowAreaTemplate extends Backend
             $condition = [];
             $condition['proxy_id'] = $this->auth->id;
             if($this->admin('is_manager')){
-                $condition['proxy_id'] = 0;
+                unset($condition['proxy_id']);
             }
 
-            $list = $this->model
+            $list = $this->model->with(['admin'])
                 ->where($where)
                 ->where($condition)
                 ->order($sort, $order)

+ 4 - 0
application/admin/model/MobileFlowAreaTemplate.php

@@ -35,4 +35,8 @@ class MobileFlowAreaTemplate extends Model
         return $this->hasMany(MobileFlowArea::class, 'template_id', 'id');
     }
 
+    public function admin(){
+        return $this->hasOne(Admin::class,'id','proxy_id');
+    }
+
 }

+ 1 - 0
public/assets/js/backend/mobile_flow_area_template.js

@@ -27,6 +27,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
                         {checkbox: true},
                         {field: 'id', title: __('Id')},
                         {field: 'name', title: __('Name'), operate: 'LIKE'},
+                        {field: 'admin.nickname', title: __('代理商'), operate: 'LIKE'},
                         {field: 'create_time', title: __('Create_time'), operate:'RANGE', addclass:'datetimerange', autocomplete:false, formatter: Table.api.formatter.datetime},
                         {field: 'status', title: __('Status'), formatter: Table.api.formatter.label,searchList:areaStatus},
                         {field: 'operate', title: __('Operate'), table: table, events: Table.api.events.operate, formatter: Table.api.formatter.operate}