فهرست منبع

已付款角标数量不对问题

Cherry 2 سال پیش
والد
کامیت
c3ec0bc7e4
2فایلهای تغییر یافته به همراه17 افزوده شده و 2 حذف شده
  1. 15 1
      application/admin/controller/MobileOrder.php
  2. 2 1
      public/assets/js/backend/mobile_order.js

+ 15 - 1
application/admin/controller/MobileOrder.php

@@ -192,7 +192,21 @@ class MobileOrder extends Backend
                 ->group('mobile_order.status')
                 ->select();
 
-            $result = array("total" => $list->total(), "rows" => $list->items(), 'extend' => $extend, 'status_list' => $status_list);
+            // 状态10的数据统计
+            $status_10_count = $this->model
+                ->with($relation)
+                ->where($where)
+                ->whereNotIn('status', [0, 50, 90])
+                ->where($map)
+                ->where('mobile_order.type', 1)
+                ->where(function ($q) {
+                    //供应商
+                    if ($this->proxy) {
+                        return $q->where('mobile_order.admin_id', $this->auth->id);
+                    }
+                })->count();
+
+            $result = array("total" => $list->total(), "rows" => $list->items(), 'extend' => $extend, 'status_list' => $status_list,'status_10_count'=>$status_10_count);
             $result['link'] = $this->request->url() . '&export=1';
 
             return json($result);

+ 2 - 1
public/assets/js/backend/mobile_order.js

@@ -132,7 +132,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form','clipboard'],
                         return `<span class="label label-primary">${status[order.status_bak]||''}-${status[a]}</span>`
                     }
                         return `<span class="label ${statusColor[a]}">${status[a]}</span>`
-                    },searchList:status,operate: is_proxy_operate},
+                    },searchList:status},
                 {field: 'anchor.name', title:__('主播名称') ,searchList(){return Template('anchor-search',{});},width: 100},
                 {field: 'sub_anchor.mobile_anchor.name', title: __(adminInfo.is_sub?'主播名称':'分站主播'),searchList(){return Template('anchor-sub-search',{});},width: 100,operate: is_proxy_operate,visible:is_proxy_operate},
                 {field: 'rules.rule', title: __('规律'),visible: false,searchList:mobileRules},
@@ -339,6 +339,7 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form','clipboard'],
                     diff.forEach(function (i,k){
                         $(".nav li .nav_id_"+i).text(0);
                     });
+                    $(".nav li .nav_id_10").text(a.status_10_count);
 
                     /*table.find('thead').css('position','fixed').css('background','white').css('top','370px')
                     table.css('margin-top',41)