Browse Source

下拉框默认字体未翻译问题解决

master
wanghongjun 3 years ago
parent
commit
90bb31cf6f
  1. 12
      components/lb-picker/index.vue
  2. 1
      layout/vPicker.vue

12
components/lb-picker/index.vue

@ -99,12 +99,12 @@
<!-- 暂无数据 --> <!-- 暂无数据 -->
<view v-if="isEmpty && !loading" <view v-if="isEmpty && !loading"
class="lb-picker-empty"> class="lb-picker-empty">
<slot name="empty"> <slot v-if="$slots['confirm-text']"
<text class="lb-picker-empty-text" name="empty"></slot>
:style="{ color: emptyColor }"> <text v-else class="lb-picker-empty-text"
{{ emptyText }} :style="{ color: emptyColor }">
</text> {{ emptyText }}
</slot> </text>
</view> </view>
<!-- 单选 --> <!-- 单选 -->

1
layout/vPicker.vue

@ -4,6 +4,7 @@
@confirm="select" @confirm="select"
:confirm-text="$t('common.confirm')" :confirm-text="$t('common.confirm')"
:cancel-text="$t('common.cancel')" :cancel-text="$t('common.cancel')"
:empty-text="$t('common.notData')"
:list="list" :list="list"
:props="{ :props="{
label: rangeLabel, label: rangeLabel,

Loading…
Cancel
Save