소스 검색

增加询盘数量提示

moshaorui 3 주 전
부모
커밋
158af44869
3개의 변경된 파일63개의 추가작업 그리고 0개의 파일을 삭제
  1. 7 0
      app/Admin/Repositories/DistInquiry.php
  2. 6 0
      app/Admin/bootstrap.php
  3. 50 0
      resources/views/admin/partials_custom/menu.blade.php

+ 7 - 0
app/Admin/Repositories/DistInquiry.php

@@ -61,4 +61,11 @@ class DistInquiry extends EloquentRepository
         return $result;
     }
 
+    /*
+     *  供应商获取未处理的询价单
+     */
+    public static  function getProcessingNum() {
+        return Model::where('status', 0)->count();
+    }
+
 }

+ 6 - 0
app/Admin/bootstrap.php

@@ -11,6 +11,7 @@ use Dcat\Admin\Show;
 use Dcat\Admin\Layout\Content;
 use Illuminate\Support\ServiceProvider;
 use Dcat\Admin\Form\Field\Editor;
+use Dcat\Admin\Layout\Menu;
 
 /**
  * Dcat-admin - admin builder based on Laravel.
@@ -58,6 +59,11 @@ Editor::resolving(function (Editor $editor) {
     ]);
 });
 
+//菜单
+Admin::menu(function (Menu $menu) {
+    $menu->view('admin.partials_custom.menu');
+});
+
 //裁剪图片表单扩展
 Form::extend('multipleCutImage', MultipleCutImage::class);
 Form::extend('cutImage', CutImage::class);

+ 50 - 0
resources/views/admin/partials_custom/menu.blade.php

@@ -0,0 +1,50 @@
+@php
+    $depth = $item['depth'] ?? 0;
+
+    $horizontal = config('admin.layout.horizontal_menu');
+
+    $defaultIcon = config('admin.menu.default_icon', 'feather icon-circle');
+
+    $num = \App\Admin\Repositories\DistInquiry::getProcessingNum();
+@endphp
+
+@if($builder->visible($item))
+    @if(empty($item['children']))
+        <li class="nav-item">
+            <a data-id="{{ $item['id'] ?? '' }}" @if(mb_strpos($item['uri'], '://') !== false) target="_blank" @endif
+               href="{{ $builder->getUrl($item['uri']) }}"
+               class="nav-link {!! $builder->isActive($item) ? 'active' : '' !!}">
+                {!! str_repeat('&nbsp;', $depth) !!}<i class="fa fa-fw {{ $item['icon'] ?: $defaultIcon }}"></i>
+                <p>
+                    {!! $builder->translate($item['title']) !!}
+                </p>
+                @if($item['title'] == 'Inquiry' && $num > 0) <i class="badge badge-danger">{{$num}}</i>@endif
+            </a>
+        </li>
+    @else
+
+        <li class="{{ $horizontal ? 'dropdown' : 'has-treeview' }} {{ $depth > 0 ? 'dropdown-submenu' : '' }} nav-item {{ $builder->isActive($item) ? 'menu-open' : '' }}">
+            <a href="#"  data-id="{{ $item['id'] ?? '' }}"
+               class="nav-link {{ $builder->isActive($item) ? ($horizontal ? 'active' : '') : '' }}
+                    {{ $horizontal ? 'dropdown-toggle' : '' }}">
+                {!! str_repeat('&nbsp;', $depth) !!}<i class="fa fa-fw {{ $item['icon'] ?: $defaultIcon }}"></i>
+                <p>
+                    {!! $builder->translate($item['title']) !!}
+
+                    @if(! $horizontal)
+                        <i class="right fa fa-angle-left"></i>
+                    @endif
+                </p>
+            </a>
+            <ul class="nav {{ $horizontal ? 'dropdown-menu' : 'nav-treeview' }}">
+                @foreach($item['children'] as $item)
+                    @php
+                        $item['depth'] = $depth + 1;
+                    @endphp
+
+                    @include('admin::partials.menu', ['item' => $item])
+                @endforeach
+            </ul>
+        </li>
+    @endif
+@endif