2025-05-15 10:21:38 +00:00
|
|
|
|
<template>
|
|
|
|
|
|
<el-dialog
|
|
|
|
|
|
:title="`Logo ${$t('common.setting')}`"
|
|
|
|
|
|
v-model="dialogVisible"
|
|
|
|
|
|
:close-on-click-modal="false"
|
|
|
|
|
|
:close-on-press-escape="false"
|
|
|
|
|
|
width="550"
|
|
|
|
|
|
>
|
|
|
|
|
|
<el-radio-group v-model="radioType" class="radio-block mb-16">
|
|
|
|
|
|
<el-radio value="default">
|
|
|
|
|
|
<p>{{ $t('views.applicationOverview.appInfo.EditAvatarDialog.default') }}</p>
|
|
|
|
|
|
<AppAvatar
|
|
|
|
|
|
v-if="detail?.name"
|
|
|
|
|
|
:name="detail?.name"
|
|
|
|
|
|
pinyinColor
|
|
|
|
|
|
class="mt-8 mb-8"
|
|
|
|
|
|
shape="square"
|
|
|
|
|
|
:size="32"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-radio>
|
|
|
|
|
|
|
|
|
|
|
|
<el-radio value="custom">
|
|
|
|
|
|
<p>{{ $t('views.applicationOverview.appInfo.EditAvatarDialog.customizeUpload') }}</p>
|
|
|
|
|
|
<div class="flex mt-8">
|
|
|
|
|
|
<AppAvatar
|
|
|
|
|
|
v-if="fileURL"
|
|
|
|
|
|
shape="square"
|
|
|
|
|
|
:size="32"
|
|
|
|
|
|
style="background: none"
|
|
|
|
|
|
class="mr-16"
|
|
|
|
|
|
>
|
|
|
|
|
|
<img :src="fileURL" alt="" />
|
|
|
|
|
|
</AppAvatar>
|
|
|
|
|
|
<el-upload
|
|
|
|
|
|
ref="uploadRef"
|
|
|
|
|
|
action="#"
|
|
|
|
|
|
:auto-upload="false"
|
|
|
|
|
|
:show-file-list="false"
|
|
|
|
|
|
accept="image/jpeg, image/png, image/gif"
|
|
|
|
|
|
:on-change="onChange"
|
|
|
|
|
|
>
|
|
|
|
|
|
<el-button icon="Upload" :disabled="radioType !== 'custom'"
|
|
|
|
|
|
>{{ $t('views.applicationOverview.appInfo.EditAvatarDialog.upload') }}
|
|
|
|
|
|
</el-button>
|
|
|
|
|
|
</el-upload>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="el-upload__tip info mt-8">
|
|
|
|
|
|
{{ $t('views.applicationOverview.appInfo.EditAvatarDialog.sizeTip') }}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</el-radio>
|
|
|
|
|
|
</el-radio-group>
|
|
|
|
|
|
<template #footer>
|
|
|
|
|
|
<span class="dialog-footer">
|
|
|
|
|
|
<el-button @click.prevent="dialogVisible = false"> {{ $t('common.cancel') }}</el-button>
|
|
|
|
|
|
<el-button type="primary" @click="submit" :loading="loading">
|
|
|
|
|
|
{{ $t('common.save') }}</el-button
|
|
|
|
|
|
>
|
|
|
|
|
|
</span>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-dialog>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
|
import { ref, watch } from 'vue'
|
2025-05-22 10:38:06 +00:00
|
|
|
|
import ToolApi from '@/api/tool/tool'
|
2025-05-15 10:21:38 +00:00
|
|
|
|
import { cloneDeep } from 'lodash'
|
|
|
|
|
|
import { MsgError, MsgSuccess } from '@/utils/message'
|
|
|
|
|
|
import { defaultIcon, isAppIcon } from '@/utils/application'
|
|
|
|
|
|
import { t } from '@/locales'
|
|
|
|
|
|
|
|
|
|
|
|
const emit = defineEmits(['refresh'])
|
|
|
|
|
|
|
|
|
|
|
|
const iconFile = ref<any>(null)
|
|
|
|
|
|
const fileURL = ref<any>(null)
|
|
|
|
|
|
|
|
|
|
|
|
const dialogVisible = ref<boolean>(false)
|
|
|
|
|
|
const loading = ref(false)
|
|
|
|
|
|
const detail = ref<any>(null)
|
|
|
|
|
|
const radioType = ref('default')
|
|
|
|
|
|
|
|
|
|
|
|
watch(dialogVisible, (bool) => {
|
|
|
|
|
|
if (!bool) {
|
|
|
|
|
|
iconFile.value = null
|
|
|
|
|
|
fileURL.value = null
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
const open = (data: any) => {
|
|
|
|
|
|
radioType.value = isAppIcon(data.icon) ? 'custom' : 'default'
|
|
|
|
|
|
fileURL.value = isAppIcon(data.icon) ? data.icon : null
|
|
|
|
|
|
detail.value = cloneDeep(data)
|
|
|
|
|
|
dialogVisible.value = true
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const onChange = (file: any) => {
|
|
|
|
|
|
//1、判断文件大小是否合法,文件限制不能大于10MB
|
|
|
|
|
|
const isLimit = file?.size / 1024 / 1024 < 10
|
|
|
|
|
|
if (!isLimit) {
|
|
|
|
|
|
// @ts-ignore
|
|
|
|
|
|
MsgError(t('views.applicationOverview.appInfo.EditAvatarDialog.fileSizeExceeded'))
|
|
|
|
|
|
return false
|
|
|
|
|
|
} else {
|
|
|
|
|
|
iconFile.value = file
|
|
|
|
|
|
fileURL.value = URL.createObjectURL(file.raw)
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function submit() {
|
|
|
|
|
|
if (radioType.value === 'default') {
|
|
|
|
|
|
emit('refresh', '/ui/favicon.ico')
|
|
|
|
|
|
dialogVisible.value = false
|
|
|
|
|
|
} else if (radioType.value === 'custom' && iconFile.value) {
|
|
|
|
|
|
let fd = new FormData()
|
|
|
|
|
|
fd.append('file', iconFile.value.raw)
|
2025-05-22 10:38:06 +00:00
|
|
|
|
toolApi.puttoolIcon(detail.value.id, fd, loading).then((res: any) => {
|
2025-05-15 10:21:38 +00:00
|
|
|
|
emit('refresh', res.data)
|
|
|
|
|
|
dialogVisible.value = false
|
|
|
|
|
|
})
|
|
|
|
|
|
} else {
|
|
|
|
|
|
MsgError(t('views.applicationOverview.appInfo.EditAvatarDialog.uploadImagePrompt'))
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
defineExpose({ open })
|
|
|
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
|
|
|
|
|
|
</style>
|