n20-common-lib 2.6.82 → 2.6.83
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/assets/.DS_Store +0 -0
- package/src/assets/iconFont5/demo_index.html +26 -3
- package/src/assets/iconFont5/iconfont.css +7 -3
- package/src/assets/iconFont5/iconfont.js +1 -1
- package/src/assets/iconFont5/iconfont.json +7 -0
- package/src/assets/iconFont5/iconfont.ttf +0 -0
- package/src/assets/iconFont5/iconfont.woff +0 -0
- package/src/assets/iconFont5/iconfont.woff2 +0 -0
- package/src/components/Layout/HeaderWrap/indexN.vue +11 -1
- package/src/i18n.json +1263 -640
- package/src/utils/auth.js +1 -1
- package/src/utils/i18n/index.js +3 -0
- package/style/fonts/iconfont.09d221ee.woff +0 -0
- package/style/fonts/{iconfont.2be34155.ttf → iconfont.1c4bfacc.ttf} +0 -0
- package/style/fonts/iconfont.a6f34dc7.woff2 +0 -0
- package/style/index.css +1 -1
- package/theme/blue.css +1 -1
- package/theme/cctcRed.css +1 -1
- package/theme/fonts/iconfont.09d221ee.woff +0 -0
- package/theme/fonts/iconfont.1c4bfacc.ttf +0 -0
- package/theme/fonts/iconfont.a6f34dc7.woff2 +0 -0
- package/theme/green.css +1 -1
- package/theme/lightBlue.css +1 -1
- package/theme/orange.css +1 -1
- package/theme/purple.css +1 -1
- package/theme/red.css +1 -1
- package/theme/yellow.css +1 -1
- package/style/fonts/iconfont.1676b4d9.woff2 +0 -0
- package/style/fonts/iconfont.ac432622.woff +0 -0
|
@@ -5,6 +5,13 @@
|
|
|
5
5
|
"css_prefix_text": "n20-icon-",
|
|
6
6
|
"description": "",
|
|
7
7
|
"glyphs": [
|
|
8
|
+
{
|
|
9
|
+
"icon_id": "33818399",
|
|
10
|
+
"name": "越南语言切换_画板 1",
|
|
11
|
+
"font_class": "a-yuenanyuyanqiehuan_huaban1",
|
|
12
|
+
"unicode": "e630",
|
|
13
|
+
"unicode_decimal": 58928
|
|
14
|
+
},
|
|
8
15
|
{
|
|
9
16
|
"icon_id": "39632933",
|
|
10
17
|
"name": "语言切换",
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -45,7 +45,14 @@
|
|
|
45
45
|
<!-- YSCW-end -->
|
|
46
46
|
<el-dropdown v-if="!hideLang" class="m-l-lg" @command="setLang">
|
|
47
47
|
<!-- <el-tooltip v-if="!hideLang" :content="'语言切换' | $lc"> -->
|
|
48
|
-
<i
|
|
48
|
+
<i
|
|
49
|
+
v-if="['th', 'vi'].includes(langVal)"
|
|
50
|
+
style="font-size: 20px"
|
|
51
|
+
:class="{
|
|
52
|
+
'n20-icon-yuyanqiehuan': langVal === 'th',
|
|
53
|
+
'n20-icon-a-yuenanyuyanqiehuan_huaban1': langVal === 'vi'
|
|
54
|
+
}"
|
|
55
|
+
></i>
|
|
49
56
|
<span
|
|
50
57
|
v-else
|
|
51
58
|
class="set-user-btn iconfont header-color"
|
|
@@ -70,6 +77,9 @@
|
|
|
70
77
|
<el-dropdown-item command="th"
|
|
71
78
|
><i class="n20-icon-yuyanqiehuan f-s-icon"></i>{{ '泰文' | $lc }}</el-dropdown-item
|
|
72
79
|
>
|
|
80
|
+
<el-dropdown-item command="vi"
|
|
81
|
+
><i class="n20-icon-a-yuenanyuyanqiehuan_huaban1 f-s-icon"></i>{{ '越文' | $lc }}</el-dropdown-item
|
|
82
|
+
>
|
|
73
83
|
</el-dropdown-menu>
|
|
74
84
|
</el-dropdown>
|
|
75
85
|
|