海南旅游SAAS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
1.4 KiB

4 years ago
  1. <style>
  2. .dashboard-title .links {
  3. text-align: center;
  4. margin-bottom: 2.5rem;
  5. }
  6. .dashboard-title .links > a {
  7. padding: 0 25px;
  8. font-size: 12px;
  9. font-weight: 600;
  10. letter-spacing: .1rem;
  11. text-decoration: none;
  12. text-transform: uppercase;
  13. color: #fff;
  14. }
  15. .dashboard-title h1 {
  16. font-weight: 200;
  17. font-size: 2.5rem;
  18. }
  19. .dashboard-title .avatar {
  20. background: #fff;
  21. border: 2px solid #fff;
  22. width: 70px;
  23. height: 70px;
  24. }
  25. </style>
  26. <div class="dashboard-title card bg-primary">
  27. <div class="card-body">
  28. <div class="text-center ">
  29. <img class="avatar img-circle shadow mt-1" src="{{config('filesystems.disks.oss.cdnDomain').'/'.$admin->avatar}}">
  30. <div class="text-center mb-1">
  31. <h1 class="mb-3 mt-2 text-white">{{$admin->name}}</h1>
  32. <div class="links">
  33. <a href="{{ admin_url('/agent/list') }}">代理商列表</a>
  34. <a href="{{ admin_url('/auth/users') }}" id="doc-link">人员管理</a>
  35. <a href="{{ admin_url('/order/list') }}" id="demo-link">订单管理</a>
  36. <a href="{{ admin_url('/product/list') }}" id="demo-link">产品管理</a>
  37. </div>
  38. </div>
  39. </div>
  40. </div>
  41. </div>