|
@@ -1,5 +1,5 @@
|
|
|
<template>
|
|
|
- <div class="fenghui">
|
|
|
+ <div :class="{fenghui: true, en: langSelect === 'en'}">
|
|
|
<div class="swith" :style="componentId !== '' ? 'color: #000000' : ''">
|
|
|
<div class="title" @click="showLange = true">
|
|
|
{{ langObjT[langSelect] }}
|
|
@@ -19,12 +19,12 @@
|
|
|
<Work25 ref="work25" v-if="componentId === 'work25'" :verificationCode="verificationCode" :langType="langSelect"
|
|
|
@closeComponent="closeComponent" />
|
|
|
|
|
|
- <Fore25-recurrence ref="fore25" v-if="componentId === 'fore25Recurrence'" :subData="subData" :verificationCode="verificationCode" :langType="langSelect"
|
|
|
- @closeComponent="closeComponent" />
|
|
|
- <Chin25-recurrence ref="chin25" v-if="componentId === 'chin25Recurrence'" :subData="subData" :verificationCode="verificationCode" :langType="langSelect"
|
|
|
- @closeComponent="closeComponent" />
|
|
|
- <Work25-recurrence ref="work25" v-if="componentId === 'work25Recurrence'" :subData="subData" :verificationCode="verificationCode" :langType="langSelect"
|
|
|
- @closeComponent="closeComponent" />
|
|
|
+ <Fore25-recurrence ref="fore25" v-if="componentId === 'fore25Recurrence'" :subData="subData"
|
|
|
+ :verificationCode="verificationCode" :langType="langSelect" @closeComponent="closeComponent" />
|
|
|
+ <Chin25-recurrence ref="chin25" v-if="componentId === 'chin25Recurrence'" :subData="subData"
|
|
|
+ :verificationCode="verificationCode" :langType="langSelect" @closeComponent="closeComponent" />
|
|
|
+ <Work25-recurrence ref="work25" v-if="componentId === 'work25Recurrence'" :subData="subData"
|
|
|
+ :verificationCode="verificationCode" :langType="langSelect" @closeComponent="closeComponent" />
|
|
|
</div>
|
|
|
</template>
|
|
|
<script setup>
|
|
@@ -92,6 +92,14 @@ const langChange = ({ selectedValues }) => {
|
|
|
|
|
|
</script>
|
|
|
<style lang="scss">
|
|
|
+// 引入自定义字体
|
|
|
+@font-face {
|
|
|
+ font-family: 'Source Han Sans CN';
|
|
|
+ src: url('https://cxzx.smcic.net/topic/tool/pkg/SourceHanSerifCN.otf') format('truetype');
|
|
|
+ font-weight: normal;
|
|
|
+ font-style: normal;
|
|
|
+}
|
|
|
+
|
|
|
.fenghui {
|
|
|
overflow-x: hidden;
|
|
|
width: 100vw;
|
|
@@ -100,7 +108,7 @@ const langChange = ({ selectedValues }) => {
|
|
|
min-height: 100vh;
|
|
|
font-weight: 400;
|
|
|
position: relative;
|
|
|
- font-family: Source Han Sans CN !important;
|
|
|
+ font-family: Source Han Sans CN;
|
|
|
text-align: left;
|
|
|
|
|
|
.swith {
|
|
@@ -118,11 +126,11 @@ const langChange = ({ selectedValues }) => {
|
|
|
|
|
|
.form {
|
|
|
font-size: 14px;
|
|
|
- font-weight: 400 !important;
|
|
|
+ font-weight: 400;
|
|
|
padding: 11px 0;
|
|
|
|
|
|
.van-field__label--top {
|
|
|
- width: 100%!important;
|
|
|
+ width: 100% !important;
|
|
|
}
|
|
|
|
|
|
.label {
|
|
@@ -138,4 +146,8 @@ const langChange = ({ selectedValues }) => {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+.en {
|
|
|
+ font-family: Arial Hebrew;;
|
|
|
+}
|
|
|
</style>
|