|
@@ -10,7 +10,7 @@
|
|
|
<div :class="{ active: isFilterFocus }" @focusin="onFilterFocus" @focusout="onFilterBlur">
|
|
|
<i class="iconfont iconworks_search search"></i>
|
|
|
<input type="text" :placeholder="search" v-model="searchKey">
|
|
|
- <i v-if="searchKey" @click="searchKey = ''" class="iconfont icontoast_red del"></i>
|
|
|
+ <i v-if="searchKey" @click="searchKey = ''" class="iconfont icon-toast_red del"></i>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -70,7 +70,7 @@
|
|
|
</ul>
|
|
|
<div class="nodata" v-if="list.length == 0 && !hasMoreData && lastestUsedSearchKey">
|
|
|
<img :src="$noresult" alt="" />
|
|
|
- <span>{{ no_serch_result }}~</span>
|
|
|
+ <span>{{ no_search_result }}~</span>
|
|
|
</div>
|
|
|
<div class="nodata" v-if="list.length == 0 && !hasMoreData && !lastestUsedSearchKey">
|
|
|
<img :src="config.empty" alt="" />
|
|
@@ -137,7 +137,7 @@ export default {
|
|
|
deltips: i18n.t("material.works.delete"),
|
|
|
no_works: i18n.t("material.works.no_works"),
|
|
|
no_title: i18n.t("gather.no_title"),
|
|
|
- no_serch_result: i18n.t("gather.no_serch_result"),
|
|
|
+ no_search_result: i18n.t("gather.no_search_result"),
|
|
|
select_material: i18n.t("gather.select_material"),
|
|
|
|
|
|
|