Compare commits
3 Commits
42647df377
...
b1cae7c321
Author | SHA1 | Date |
---|---|---|
|
b1cae7c321 | |
|
54362bb2fd | |
|
a0afbae690 |
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"hash": "3178506e",
|
||||||
|
"configHash": "718798cd",
|
||||||
|
"lockfileHash": "88017af1",
|
||||||
|
"browserHash": "cfdd5370",
|
||||||
|
"optimized": {},
|
||||||
|
"chunks": {}
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"type": "module"
|
||||||
|
}
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
"i18n-ally.localesPaths": [
|
"i18n-ally.localesPaths": ["src/store/i18n", "src/views/i18n"],
|
||||||
"src/store/i18n",
|
"files.exclude": {
|
||||||
"src/views/i18n"
|
"**/.ts": true,
|
||||||
]
|
"**/.tsx": true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -47,10 +47,9 @@
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
margin: 15px 0;
|
margin: 15px 0;
|
||||||
color: #999;
|
color: #999;
|
||||||
font:
|
font: bold 200% Consolas,
|
||||||
bold 200% Consolas,
|
Monaco,
|
||||||
Monaco,
|
monospace;
|
||||||
monospace;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (max-width: 1180px) {
|
@media screen and (max-width: 1180px) {
|
||||||
|
@ -72,7 +71,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.avatar {
|
.avatar {
|
||||||
width: 280px;
|
width: 80px;
|
||||||
height: 80px;
|
height: 80px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -80,7 +80,9 @@ onMounted(() => {
|
||||||
<span class="ml-2">{{ $t('upload_avatar') }}</span>
|
<span class="ml-2">{{ $t('upload_avatar') }}</span>
|
||||||
</el-button>
|
</el-button>
|
||||||
<template #tip>
|
<template #tip>
|
||||||
<div class="el-upload__tip text-red-600">{{ $t('upload_user_avatar_tip') }}</div>
|
<div class="el-upload__tip">
|
||||||
|
<el-text type="danger">{{ $t('upload_user_avatar_tip') }}</el-text>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</el-upload>
|
</el-upload>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
Loading…
Reference in New Issue