This commit is contained in:
pushuo 2022-08-11 11:35:57 +08:00
parent 61800bb7e4
commit 083c0f653d
4 changed files with 9 additions and 3 deletions

View File

@ -506,6 +506,7 @@ body.page-design .autocomplete-group-wrapper .item-group-wrapper .item i.right:h
height: 26px;
line-height: 26px;
color: #333;
text-decoration: none;
}
.link-dialog-box .link-dialog-content .product-search .el-input-group__append {
background-color: #0072ff;

View File

@ -634,6 +634,7 @@ body.page-design {
height: 26px;
line-height: 26px;
color: #333;
text-decoration: none;
}
.link-top-new {

View File

@ -191,7 +191,10 @@
url = '{{ admin_route('categories.index') }}';
break;
case 'brand':
url = '';
url = '{{ admin_route('brands.index') }}';
break;
case 'page':
url = '{{ admin_route('pages.index') }}';
break;
default:
null;

View File

@ -38,8 +38,9 @@
<h6 class="text-uppercase text-dark mb-3">{{ $link['title'][$locale] }}</h6>
<ul class="list-unstyled">
@foreach ($link['links'] as $item)
<li><a href="{{ type_route($item['type'], $item['value']) }}"
@if (isset($item['new_window']) && $item['new_window']) target="_blank" @endif>{{ $item['text'][$locale] }}</a></li>
<li>
<a href="{{ $item['value'] }}" @if (isset($item['new_window']) && $item['new_window']) target="_blank" @endif>{{ $item['text'][$locale] ?? '' }}</a>
</li>
@endforeach
</ul>
</div>