|
@@ -5,7 +5,7 @@
|
|
|
image-size="80"
|
|
image-size="80"
|
|
|
description="该页面正在升级,敬请期待..."
|
|
description="该页面正在升级,敬请期待..."
|
|
|
/> -->
|
|
/> -->
|
|
|
- <img class="yw-trace-img" src="@/assets/img/common/yw.png" alt="">
|
|
|
|
|
|
|
+ <img class="yw-trace-img" :src="traceImgSrc" alt="">
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
@@ -13,9 +13,14 @@
|
|
|
import { computed } from "vue";
|
|
import { computed } from "vue";
|
|
|
import { useStore } from "vuex";
|
|
import { useStore } from "vuex";
|
|
|
import { Empty } from "vant";
|
|
import { Empty } from "vant";
|
|
|
|
|
+import { useI18n } from "@/i18n";
|
|
|
|
|
+import ywImg from "@/assets/img/common/yw.png";
|
|
|
|
|
+import ywEnImg from "@/assets/img/common/yw-en.png";
|
|
|
|
|
|
|
|
const store = useStore();
|
|
const store = useStore();
|
|
|
|
|
+const { locale } = useI18n();
|
|
|
const tabBarHeight = computed(() => store.state.home.tabBarHeight);
|
|
const tabBarHeight = computed(() => store.state.home.tabBarHeight);
|
|
|
|
|
+const traceImgSrc = computed(() => (locale.value === "en" ? ywEnImg : ywImg));
|
|
|
</script>
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
<style scoped lang="scss">
|