feat: 🎸 优化scss样式多语言的布局

This commit is contained in:
huangwentao 2022-08-19 14:40:37 +08:00
parent b48abed36c
commit a25eac9b7a
4 changed files with 8 additions and 4 deletions

View File

@ -13,5 +13,6 @@ export const lang = {
introduction: 'A rapid development vue3 of mobile terminal template',
home: {
support: 'support',
cssMultiLanguage: 'CSS picture multi-language',
},
};

View File

@ -13,5 +13,6 @@ export const lang = {
introduction: '一个快速开发vue3的移动端模板',
home: {
support: '支持',
cssMultiLanguage: 'css图片多语言',
},
};

View File

@ -62,7 +62,7 @@
.main-page {
box-sizing: border-box;
padding: 40px;
height: calc(100vh - 88px);
height: calc(100vh - 200px);
overflow-y: scroll;
overflow-x: hidden;
}

View File

@ -11,6 +11,11 @@
<nut-cell-group :title="$t('home.support')" class="supportList">
<nut-cell v-for="(item, index) in cellList" :key="index" :title="item" icon="Check" />
</nut-cell-group>
<nut-cell-group :title="$t('home.cssMultiLanguage')" class="supportList">
<nut-cell>
<div :class="['btn-add', i18n.global.locale]"></div>
</nut-cell>
</nut-cell-group>
<div class="btn-wrap">
<nut-button shape="square" size="small" type="default" @click="changeLang('zh-cn')">
{{ $t('language.zh') }}
@ -18,7 +23,6 @@
<nut-button shape="square" size="small" type="default" @click="changeLang('en-us')">
{{ $t('language.en') }}
</nut-button>
<div :class="['btn-add', i18n.global.locale]"></div>
</div>
{{ getUserInfo }}
</template>
@ -27,7 +31,6 @@
import { computed } from 'vue';
import { useUserStore } from '/@/store/modules/user';
import { setLang, i18n } from '/@/i18n';
let cellList = ['vue3', 'vite', 'vue-router', 'axios', 'Pinia', 'vue-i18n', 'vue-jsx', 'vatlet/vant/nutUI'];
const userStore = useUserStore();
const getUserInfo = computed(() => {
@ -74,7 +77,6 @@
.btn-wrap {
margin: 20px;
display: flex;
}
.btn-add {
@include main-lang-bg(302px, 82px, '/@/assets/button', 'add.png');