digitallItem语言适配
This commit is contained in:
@@ -33,7 +33,7 @@ const {} = toRefs(data);
|
||||
{{ item.ownerName }} |
|
||||
{{ item?.listingTotal || 0 }} Collections
|
||||
</div>
|
||||
<div class="view-profile" @click="viewProfile(item)">View Profile</div>
|
||||
<div class="view-profile" @click="viewProfile(item)">{{ $t('brand.brandItem.viewProfile') }}</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="right">
|
||||
|
||||
@@ -122,13 +122,13 @@ const {} = toRefs(data);
|
||||
<div class="header-img" :class="{'active': searchBrand.length > 0}">
|
||||
<img src="@/assets/images/brand/brandBg.png" alt="">
|
||||
<div class="text-box">
|
||||
<div class="title">Brand</div>
|
||||
<span>Every brand, every story — discover who's behind the collections.</span>
|
||||
<div class="title">{{ $t('brand.title') }}</div>
|
||||
<span>{{ $t('brand.description') }}</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="content">
|
||||
<div class="input">
|
||||
<input type="text" v-model="searchBrand" @input="changeSearchBrand" placeholder="Search brand">
|
||||
<input type="text" v-model="searchBrand" @input="changeSearchBrand" :placeholder="$t('brand.search')">
|
||||
<div class="icon">
|
||||
<SvgIcon name="brand-search" size="32" />
|
||||
</div>
|
||||
@@ -145,8 +145,8 @@ const {} = toRefs(data);
|
||||
<sc-list-null
|
||||
nullImage="brand"
|
||||
:showButton="false"
|
||||
title="Brand No Found"
|
||||
tip="Try using another keywords."
|
||||
:title="$t('brand.noFound')"
|
||||
:tip="$t('brand.noFoundTip')"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@@ -155,7 +155,7 @@ const {} = toRefs(data);
|
||||
<div class="icon">
|
||||
<SvgIcon name="brand-time" size="20" />
|
||||
</div>
|
||||
<span>Searching History</span>
|
||||
<span>{{ $t('brand.searchHistory') }}</span>
|
||||
</div>
|
||||
<div class="history">
|
||||
<div v-for="item in searchHistory" :key="item" @click.stop="setSearchHistory(item)" class="item">
|
||||
|
||||
Reference in New Issue
Block a user