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": [
|
||||
"src/store/i18n",
|
||||
"src/views/i18n"
|
||||
]
|
||||
"i18n-ally.localesPaths": ["src/store/i18n", "src/views/i18n"],
|
||||
"files.exclude": {
|
||||
"**/.ts": true,
|
||||
"**/.tsx": true
|
||||
}
|
||||
}
|
||||
|
|
|
@ -47,10 +47,9 @@
|
|||
text-transform: uppercase;
|
||||
margin: 15px 0;
|
||||
color: #999;
|
||||
font:
|
||||
bold 200% Consolas,
|
||||
Monaco,
|
||||
monospace;
|
||||
font: bold 200% Consolas,
|
||||
Monaco,
|
||||
monospace;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1180px) {
|
||||
|
@ -72,7 +71,7 @@
|
|||
}
|
||||
|
||||
.avatar {
|
||||
width: 280px;
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -80,7 +80,9 @@ onMounted(() => {
|
|||
<span class="ml-2">{{ $t('upload_avatar') }}</span>
|
||||
</el-button>
|
||||
<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>
|
||||
</el-upload>
|
||||
</el-form-item>
|
||||
|
|
Loading…
Reference in New Issue