Compare commits

..

No commits in common. "b5bdf3b54846522c0af2d913c76e7aca52cec284" and "03827e11ce3988987ef65fdde9b48b829ad49fe9" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
<img :src="logoMini" />
<div class="login-left-logo-text">
<span>{{ getThemeConfig.globalTitle }}</span>
<!-- <span class="login-left-logo-text-msg">{{ getThemeConfig.globalViceTitleMsg }}</span> -->
<span class="login-left-logo-text-msg">{{ getThemeConfig.globalViceTitleMsg }}</span>
</div>
</div>
<div class="login-left-img">

View File

@ -420,7 +420,7 @@ const disabled = ref(false)
const handleChange: UploadProps['onChange'] = async (file: uploadFile, uploadFiles) => {
state.formData.loading = true;
if (file.raw.type === 'image/png' || file.raw.type === 'image/jpeg' || file.raw.type === 'image/jpg' || file.raw.type === 'image/gif') {
if (file.raw.type === 'image/png' || file.raw.type === 'image/jpeg' || file.raw.type === 'image/jpg') {
state.formData.fileList = uploadFiles;
uploadDisabled.value = true;
try {