732 lines
25 KiB
Vue
732 lines
25 KiB
Vue
<template>
|
||
<el-dialog
|
||
:title="$t('views.applicationOverview.appInfo.SettingDisplayDialog.dialogTitle')"
|
||
width="900"
|
||
v-model="dialogVisible"
|
||
:close-on-click-modal="false"
|
||
:close-on-press-escape="false"
|
||
:destroy-on-close="true"
|
||
align-center
|
||
class="display-setting-dialog"
|
||
>
|
||
<template #header="{ titleId, titleClass }">
|
||
<div class="flex-between mb-8">
|
||
<h4 :id="titleId" :class="titleClass">
|
||
{{ $t('views.applicationOverview.appInfo.SettingDisplayDialog.dialogTitle') }}
|
||
</h4>
|
||
<div class="flex align-center">
|
||
<el-button @click.prevent="resetForm" link>
|
||
<el-icon class="mr-4">
|
||
<Refresh />
|
||
</el-icon>
|
||
{{ $t('views.applicationOverview.appInfo.SettingDisplayDialog.restoreDefault') }}
|
||
</el-button>
|
||
<el-divider direction="vertical" />
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<div class="flex" style="height: 570px">
|
||
<div class="setting-preview border border-r-6 mr-16" style="min-width: 400px">
|
||
<div
|
||
class="setting-preview-container"
|
||
:style="{ backgroundImage: `url(${imgUrl?.chat_background})` }"
|
||
>
|
||
<div class="setting-preview-header" :style="customStyle">
|
||
<div class="flex-between">
|
||
<div class="flex align-center">
|
||
<!-- 应用头像 -->
|
||
<div class="mr-12 ml-24 flex">
|
||
<el-avatar
|
||
v-if="isAppIcon(imgUrl?.icon)"
|
||
shape="square"
|
||
:size="32"
|
||
style="background: none"
|
||
>
|
||
<img :src="imgUrl?.icon" alt="" />
|
||
</el-avatar>
|
||
<LogoIcon v-else height="32px" />
|
||
</div>
|
||
|
||
<h4 class="ellipsis">
|
||
{{ detail?.name || $t('views.application.form.appName.label') }}
|
||
</h4>
|
||
</div>
|
||
<div class="mr-16">
|
||
<el-button link>
|
||
<AppIcon
|
||
:iconName="'app-magnify'"
|
||
:style="{
|
||
color: xpackForm.custom_theme?.header_font_color,
|
||
}"
|
||
style="font-size: 20px"
|
||
></AppIcon>
|
||
</el-button>
|
||
<el-button link>
|
||
<el-icon
|
||
:size="20"
|
||
class="color-secondary"
|
||
:style="{
|
||
color: xpackForm.custom_theme?.header_font_color,
|
||
}"
|
||
>
|
||
<Close />
|
||
</el-icon>
|
||
</el-button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div>
|
||
<div class="p-16" style="position: relative">
|
||
<div class="flex">
|
||
<div class="avatar" v-if="xpackForm.show_avatar">
|
||
<el-image
|
||
v-if="imgUrl.avatar"
|
||
:src="imgUrl.avatar"
|
||
alt=""
|
||
fit="cover"
|
||
style="width: 28px; height: 28px; display: block"
|
||
/>
|
||
<LogoIcon
|
||
v-else
|
||
height="28px"
|
||
style="width: 28px; height: 28px; display: block"
|
||
/>
|
||
</div>
|
||
|
||
<img
|
||
src="@/assets/application/display-bg2.png"
|
||
alt=""
|
||
:width="
|
||
xpackForm.show_avatar
|
||
? xpackForm.show_user_avatar
|
||
? '232px'
|
||
: '270px'
|
||
: xpackForm.show_user_avatar
|
||
? '260px'
|
||
: '300px'
|
||
"
|
||
/>
|
||
</div>
|
||
<div class="flex mt-4" style="justify-content: flex-end">
|
||
<img
|
||
src="@/assets/application/display-bg3.png"
|
||
alt=""
|
||
:width="
|
||
xpackForm.show_user_avatar
|
||
? xpackForm.show_avatar
|
||
? '227px'
|
||
: '255px'
|
||
: xpackForm.show_avatar
|
||
? '265px'
|
||
: '292px'
|
||
"
|
||
style="object-fit: contain"
|
||
/>
|
||
<div class="avatar ml-8" v-if="xpackForm.show_user_avatar">
|
||
<el-image
|
||
v-if="imgUrl.user_avatar"
|
||
:src="imgUrl.user_avatar"
|
||
alt=""
|
||
fit="cover"
|
||
style="width: 28px; height: 28px; display: block"
|
||
/>
|
||
<el-avatar v-else :size="28">
|
||
<img src="@/assets/user-icon.svg" style="width: 50%" alt="" />
|
||
</el-avatar>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div
|
||
style="position: absolute; bottom: 0; padding-bottom: 8px; box-sizing: border-box"
|
||
class="p-16 text-center w-full"
|
||
>
|
||
<img src="@/assets/application/display-bg1.png" alt="" class="w-full" />
|
||
<el-text type="info" v-if="xpackForm.disclaimer" class="mt-8" style="font-size: 12px">
|
||
<auto-tooltip :content="xpackForm.disclaimer_value">
|
||
{{ xpackForm.disclaimer_value }}
|
||
</auto-tooltip>
|
||
</el-text>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<!-- 悬浮头像 -->
|
||
<div class="float_icon">
|
||
<el-image
|
||
v-if="imgUrl.float_icon"
|
||
:src="imgUrl.float_icon"
|
||
alt=""
|
||
fit="cover"
|
||
style="width: 40px; height: 40px; display: block"
|
||
/>
|
||
<img
|
||
v-else
|
||
src="/MaxKB.gif"
|
||
height="50px"
|
||
style="width: 40px; height: 40px; display: block"
|
||
/>
|
||
</div>
|
||
</div>
|
||
<el-scrollbar>
|
||
<div class="p-8">
|
||
<el-form ref="displayFormRef" :model="xpackForm">
|
||
<el-row class="w-full mb-8">
|
||
<el-col :span="12">
|
||
<h5 class="mb-8">
|
||
{{
|
||
$t('views.applicationOverview.appInfo.SettingDisplayDialog.customThemeColor')
|
||
}}
|
||
</h5>
|
||
<div>
|
||
<el-color-picker v-model="xpackForm.custom_theme.theme_color" />
|
||
{{
|
||
!xpackForm.custom_theme.theme_color
|
||
? $t('views.applicationOverview.appInfo.SettingDisplayDialog.default')
|
||
: ''
|
||
}}
|
||
</div>
|
||
</el-col>
|
||
<el-col :span="12">
|
||
<h5 class="mb-8">
|
||
{{
|
||
$t(
|
||
'views.applicationOverview.appInfo.SettingDisplayDialog.headerTitleFontColor',
|
||
)
|
||
}}
|
||
</h5>
|
||
<el-color-picker v-model="xpackForm.custom_theme.header_font_color" />
|
||
</el-col>
|
||
</el-row>
|
||
<el-row class="w-full mb-8">
|
||
<h5 class="mb-8">
|
||
{{ $t('views.applicationOverview.appInfo.SettingDisplayDialog.languageLabel') }}
|
||
</h5>
|
||
<el-select v-model="xpackForm.language" clearable>
|
||
<el-option
|
||
v-for="item in langList"
|
||
:key="item.value"
|
||
:label="item.label"
|
||
:value="item.value"
|
||
/>
|
||
</el-select>
|
||
</el-row>
|
||
<!-- 应用 LOGO -->
|
||
<el-card shadow="never" class="mb-8">
|
||
<div class="flex-between mb-8">
|
||
<span class="lighter">{{ $t('views.application.title') + ' LOGO' }}</span>
|
||
<span class="flex align-center">
|
||
<el-upload
|
||
class="ml-8"
|
||
ref="uploadRef"
|
||
action="#"
|
||
:auto-upload="false"
|
||
:show-file-list="false"
|
||
accept="image/jpeg, image/png, image/gif"
|
||
:on-change="(file: any, fileList: any) => onChange(file, fileList, 'icon')"
|
||
>
|
||
<el-button size="small">
|
||
{{ $t('views.applicationOverview.appInfo.SettingDisplayDialog.replace') }}
|
||
</el-button>
|
||
</el-upload>
|
||
</span>
|
||
</div>
|
||
<el-text type="info" size="small">
|
||
{{ $t('views.applicationOverview.appInfo.SettingDisplayDialog.imageMessage') }}
|
||
</el-text>
|
||
</el-card>
|
||
<!-- 聊天背景 -->
|
||
<el-card shadow="never" class="mb-8">
|
||
<div class="flex-between mb-8">
|
||
<span class="lighter">{{
|
||
$t('views.applicationOverview.appInfo.SettingDisplayDialog.chatBackground')
|
||
}}</span>
|
||
<span class="flex align-center">
|
||
<el-upload
|
||
class="ml-8"
|
||
ref="uploadRef"
|
||
action="#"
|
||
:auto-upload="false"
|
||
:show-file-list="false"
|
||
accept="image/jpeg, image/png, image/gif"
|
||
:on-change="
|
||
(file: any, fileList: any) => onChange(file, fileList, 'chat_background')
|
||
"
|
||
>
|
||
<el-button size="small">
|
||
{{ $t('views.applicationOverview.appInfo.SettingDisplayDialog.replace') }}
|
||
</el-button>
|
||
</el-upload>
|
||
</span>
|
||
</div>
|
||
<el-text type="info" size="small">
|
||
{{
|
||
$t('views.applicationOverview.appInfo.SettingDisplayDialog.chatBackgroundMessage')
|
||
}}
|
||
</el-text>
|
||
</el-card>
|
||
<!-- AI回复头像 -->
|
||
<el-card shadow="never" class="mb-8">
|
||
<div class="flex-between mb-8">
|
||
<span class="lighter">{{
|
||
$t('views.applicationOverview.appInfo.SettingDisplayDialog.AIAvatar')
|
||
}}</span>
|
||
<span class="flex align-center">
|
||
<el-checkbox v-model="xpackForm.show_avatar">{{
|
||
$t('views.applicationOverview.appInfo.SettingDisplayDialog.display')
|
||
}}</el-checkbox>
|
||
<el-upload
|
||
class="ml-8"
|
||
ref="uploadRef"
|
||
action="#"
|
||
:auto-upload="false"
|
||
:show-file-list="false"
|
||
accept="image/jpeg, image/png, image/gif"
|
||
:on-change="(file: any, fileList: any) => onChange(file, fileList, 'avatar')"
|
||
>
|
||
<el-button size="small">
|
||
{{ $t('views.applicationOverview.appInfo.SettingDisplayDialog.replace') }}
|
||
</el-button>
|
||
</el-upload>
|
||
</span>
|
||
</div>
|
||
<el-text type="info" size="small">
|
||
{{ $t('views.applicationOverview.appInfo.SettingDisplayDialog.imageMessage') }}
|
||
</el-text>
|
||
</el-card>
|
||
<!-- 提问头像 -->
|
||
<el-card shadow="never" class="mb-8">
|
||
<div class="flex-between mb-8">
|
||
<span class="lighter">{{
|
||
$t('views.applicationOverview.appInfo.SettingDisplayDialog.askUserAvatar')
|
||
}}</span>
|
||
<span class="flex align-center">
|
||
<el-checkbox v-model="xpackForm.show_user_avatar">
|
||
{{
|
||
$t('views.applicationOverview.appInfo.SettingDisplayDialog.display')
|
||
}}</el-checkbox
|
||
>
|
||
<el-upload
|
||
class="ml-8"
|
||
ref="uploadRef"
|
||
action="#"
|
||
:auto-upload="false"
|
||
:show-file-list="false"
|
||
accept="image/jpeg, image/png, image/gif"
|
||
:on-change="
|
||
(file: any, fileList: any) => onChange(file, fileList, 'user_avatar')
|
||
"
|
||
>
|
||
<el-button size="small">
|
||
{{ $t('views.applicationOverview.appInfo.SettingDisplayDialog.replace') }}
|
||
</el-button>
|
||
</el-upload>
|
||
</span>
|
||
</div>
|
||
<el-text type="info" size="small"
|
||
>{{ $t('views.applicationOverview.appInfo.SettingDisplayDialog.imageMessage') }}
|
||
</el-text>
|
||
</el-card>
|
||
<!-- 浮窗图标 -->
|
||
<el-card shadow="never" class="mb-8">
|
||
<div class="flex-between mb-8">
|
||
<span class="lighter">{{
|
||
$t('views.applicationOverview.appInfo.SettingDisplayDialog.floatIcon')
|
||
}}</span>
|
||
<el-upload
|
||
ref="uploadRef"
|
||
action="#"
|
||
:auto-upload="false"
|
||
:show-file-list="false"
|
||
accept="image/jpeg, image/png, image/gif"
|
||
:on-change="(file: any, fileList: any) => onChange(file, fileList, 'float_icon')"
|
||
>
|
||
<el-button size="small">
|
||
{{ $t('views.applicationOverview.appInfo.SettingDisplayDialog.replace') }}
|
||
</el-button>
|
||
</el-upload>
|
||
</div>
|
||
<el-text type="info" size="small">
|
||
{{ $t('views.applicationOverview.appInfo.SettingDisplayDialog.imageMessage') }}
|
||
</el-text>
|
||
<div class="border-t mt-8">
|
||
<div class="flex-between mb-8">
|
||
<span class="lighter">{{
|
||
$t('views.applicationOverview.appInfo.SettingDisplayDialog.iconDefaultPosition')
|
||
}}</span>
|
||
<el-checkbox
|
||
v-model="xpackForm.draggable"
|
||
:label="
|
||
$t('views.applicationOverview.appInfo.SettingDisplayDialog.draggablePosition')
|
||
"
|
||
/>
|
||
</div>
|
||
<el-row :gutter="8" class="w-full mb-8">
|
||
<el-col :span="12">
|
||
<div class="flex align-center">
|
||
<el-select v-model="xpackForm.float_location.x.type" style="width: 80px">
|
||
<el-option
|
||
:label="
|
||
$t(
|
||
'views.applicationOverview.appInfo.SettingDisplayDialog.iconPosition.left',
|
||
)
|
||
"
|
||
value="left"
|
||
/>
|
||
<el-option
|
||
:label="
|
||
$t(
|
||
'views.applicationOverview.appInfo.SettingDisplayDialog.iconPosition.right',
|
||
)
|
||
"
|
||
value="right"
|
||
/>
|
||
</el-select>
|
||
<el-input-number
|
||
v-model="xpackForm.float_location.x.value"
|
||
:min="0"
|
||
:step="1"
|
||
:precision="0"
|
||
:value-on-clear="0"
|
||
step-strictly
|
||
controls-position="right"
|
||
/>
|
||
<span class="ml-4">px</span>
|
||
</div>
|
||
</el-col>
|
||
<el-col :span="12">
|
||
<div class="flex align-center">
|
||
<el-select v-model="xpackForm.float_location.y.type" style="width: 80px">
|
||
<el-option
|
||
:label="
|
||
$t(
|
||
'views.applicationOverview.appInfo.SettingDisplayDialog.iconPosition.top',
|
||
)
|
||
"
|
||
value="top"
|
||
/>
|
||
<el-option
|
||
:label="
|
||
$t(
|
||
'views.applicationOverview.appInfo.SettingDisplayDialog.iconPosition.bottom',
|
||
)
|
||
"
|
||
value="bottom"
|
||
/>
|
||
</el-select>
|
||
<el-input-number
|
||
v-model="xpackForm.float_location.y.value"
|
||
:min="0"
|
||
:step="1"
|
||
:precision="0"
|
||
:value-on-clear="0"
|
||
step-strictly
|
||
controls-position="right"
|
||
/>
|
||
<span class="ml-4">px</span>
|
||
</div>
|
||
</el-col>
|
||
</el-row>
|
||
</div>
|
||
</el-card>
|
||
|
||
<el-space direction="vertical" alignment="start" :size="2">
|
||
<el-checkbox
|
||
v-model="xpackForm.show_source"
|
||
:label="
|
||
$t('views.applicationOverview.appInfo.SettingDisplayDialog.showSourceLabel')
|
||
"
|
||
/>
|
||
<el-checkbox
|
||
v-model="xpackForm.show_exec"
|
||
:label="
|
||
$t('views.applicationOverview.appInfo.SettingDisplayDialog.showExecutionDetail')
|
||
"
|
||
/>
|
||
<el-checkbox
|
||
v-model="xpackForm.show_guide"
|
||
:label="$t('views.applicationOverview.appInfo.SettingDisplayDialog.displayGuide')"
|
||
/>
|
||
<el-checkbox
|
||
v-model="xpackForm.disclaimer"
|
||
:label="$t('views.applicationOverview.appInfo.SettingDisplayDialog.disclaimer')"
|
||
@change="changeDisclaimer"
|
||
/>
|
||
<span v-if="xpackForm.disclaimer"
|
||
><el-tooltip :content="xpackForm.disclaimer_value" placement="top">
|
||
<el-input
|
||
v-model="xpackForm.disclaimer_value"
|
||
style="width: 422px; margin-bottom: 10px"
|
||
@change="changeValue"
|
||
:maxlength="128"
|
||
/> </el-tooltip
|
||
></span>
|
||
</el-space>
|
||
</el-form>
|
||
</div>
|
||
</el-scrollbar>
|
||
</div>
|
||
|
||
<template #footer>
|
||
<span class="dialog-footer">
|
||
<el-button @click.prevent="dialogVisible = false">{{ $t('common.cancel') }} </el-button>
|
||
<el-button type="primary" @click="submit(displayFormRef)" :loading="loading">
|
||
{{ $t('common.save') }}
|
||
</el-button>
|
||
</span>
|
||
</template>
|
||
</el-dialog>
|
||
</template>
|
||
<script setup lang="ts">
|
||
import { computed, ref, watch } from 'vue'
|
||
import { useRoute } from 'vue-router'
|
||
import type { FormInstance, FormRules, UploadFiles } from 'element-plus'
|
||
import { isAppIcon } from '@/utils/common'
|
||
import { MsgSuccess, MsgError } from '@/utils/message'
|
||
import { langList, t } from '@/locales'
|
||
import useStore from '@/stores'
|
||
import { cloneDeep } from 'lodash'
|
||
import { loadSharedApi } from '@/utils/dynamics-api/shared-api'
|
||
|
||
const { user } = useStore()
|
||
|
||
const route = useRoute()
|
||
const {
|
||
params: { id },
|
||
} = route
|
||
|
||
const apiType = computed(() => {
|
||
if (route.path.includes('resource-management')) {
|
||
return 'systemManage'
|
||
} else {
|
||
return 'workspace'
|
||
}
|
||
})
|
||
|
||
const emit = defineEmits(['refresh'])
|
||
|
||
const defaultSetting = {
|
||
show_source: false,
|
||
show_exec: false,
|
||
language: '',
|
||
show_history: true,
|
||
draggable: true,
|
||
show_guide: true,
|
||
icon: '',
|
||
icon_url: '',
|
||
chat_background: '',
|
||
chat_background_url: '',
|
||
avatar: '',
|
||
avatar_url: '',
|
||
float_icon: '',
|
||
float_icon_url: '',
|
||
user_avatar: '',
|
||
user_avatar_url: '',
|
||
disclaimer: false,
|
||
disclaimer_value: t('views.applicationOverview.appInfo.SettingDisplayDialog.disclaimerValue'),
|
||
custom_theme: {
|
||
theme_color: '',
|
||
header_font_color: '#1f2329',
|
||
},
|
||
float_location: {
|
||
y: { type: 'bottom', value: 30 },
|
||
x: { type: 'right', value: 0 },
|
||
},
|
||
show_avatar: true,
|
||
show_user_avatar: false,
|
||
}
|
||
|
||
const displayFormRef = ref()
|
||
|
||
const xpackForm = ref<any>({
|
||
show_source: false,
|
||
show_exec: false,
|
||
language: '',
|
||
icon: '',
|
||
icon_url: '',
|
||
show_history: false,
|
||
draggable: false,
|
||
show_guide: false,
|
||
chat_background: '',
|
||
chat_background_url: '',
|
||
avatar: '',
|
||
avatar_url: '',
|
||
float_icon: '',
|
||
float_icon_url: '',
|
||
user_avatar: '',
|
||
user_avatar_url: '',
|
||
disclaimer: false,
|
||
disclaimer_value: t('views.applicationOverview.appInfo.SettingDisplayDialog.disclaimerValue'),
|
||
custom_theme: {
|
||
theme_color: '',
|
||
header_font_color: '#1f2329',
|
||
},
|
||
float_location: {
|
||
y: { type: 'bottom', value: 30 },
|
||
x: { type: 'right', value: 0 },
|
||
},
|
||
show_avatar: true,
|
||
show_user_avatar: false,
|
||
})
|
||
|
||
const imgUrl = ref<any>({
|
||
avatar: '',
|
||
float_icon: '',
|
||
user_avatar: '',
|
||
icon: '',
|
||
chat_background: '',
|
||
})
|
||
|
||
const dialogVisible = ref<boolean>(false)
|
||
const loading = ref(false)
|
||
|
||
const detail = ref<any>(null)
|
||
|
||
const customStyle = computed(() => {
|
||
return {
|
||
background: xpackForm.value.custom_theme?.theme_color,
|
||
color: xpackForm.value.custom_theme?.header_font_color,
|
||
}
|
||
})
|
||
|
||
function resetForm() {
|
||
xpackForm.value = cloneDeep(defaultSetting)
|
||
imgUrl.value = {
|
||
avatar: '',
|
||
float_icon: '',
|
||
user_avatar: '',
|
||
icon: '',
|
||
chat_background: '',
|
||
}
|
||
}
|
||
|
||
const onChange = (file: any, fileList: UploadFiles, attr: string) => {
|
||
//1、判断文件大小是否合法,文件限制不能大于 10 MB
|
||
const isLimit = file?.size / 1024 / 1024 < 10
|
||
if (!isLimit) {
|
||
MsgError(t('common.EditAvatarDialog.fileSizeExceeded'))
|
||
return false
|
||
} else {
|
||
xpackForm.value[attr] = file.raw
|
||
imgUrl.value[attr] = URL.createObjectURL(file.raw)
|
||
xpackForm.value[`${attr}_url`] = ''
|
||
}
|
||
}
|
||
|
||
const open = (data: any, content: any) => {
|
||
detail.value = content
|
||
xpackForm.value.show_source = data.show_source
|
||
xpackForm.value.show_exec = data.show_exec
|
||
xpackForm.value.show_history = data.show_history
|
||
xpackForm.value.language = data.language
|
||
xpackForm.value.draggable = data.draggable
|
||
xpackForm.value.show_guide = data.show_guide
|
||
imgUrl.value.avatar = data.avatar
|
||
imgUrl.value.icon = data.icon
|
||
imgUrl.value.chat_background = data.chat_background
|
||
imgUrl.value.float_icon = data.float_icon
|
||
imgUrl.value.user_avatar = data.user_avatar
|
||
xpackForm.value.disclaimer = data.disclaimer
|
||
xpackForm.value.disclaimer_value = data.disclaimer_value
|
||
if (
|
||
xpackForm.value.disclaimer_value ===
|
||
t('views.applicationOverview.appInfo.SettingDisplayDialog.disclaimerValue')
|
||
) {
|
||
xpackForm.value.disclaimer_value = t(
|
||
'views.applicationOverview.appInfo.SettingDisplayDialog.disclaimerValue',
|
||
)
|
||
}
|
||
xpackForm.value.avatar_url = data.avatar
|
||
xpackForm.value.chat_background_url = data.chat_background
|
||
xpackForm.value.icon_url = data.icon
|
||
xpackForm.value.user_avatar_url = data.user_avatar
|
||
xpackForm.value.float_icon_url = data.float_icon
|
||
xpackForm.value.show_avatar = data.show_avatar
|
||
xpackForm.value.show_user_avatar = data.show_user_avatar
|
||
xpackForm.value.custom_theme = {
|
||
theme_color: data.custom_theme?.theme_color || '',
|
||
header_font_color: data.custom_theme?.header_font_color || '#1f2329',
|
||
}
|
||
xpackForm.value.float_location = data.float_location
|
||
dialogVisible.value = true
|
||
}
|
||
|
||
const changeValue = (value: string) => {
|
||
xpackForm.value.disclaimer_value = value
|
||
}
|
||
|
||
const changeDisclaimer = (value: boolean) => {
|
||
xpackForm.value.disclaimer = value
|
||
}
|
||
|
||
const submit = async (formEl: FormInstance | undefined) => {
|
||
if (!formEl) return
|
||
await formEl.validate((valid, fields) => {
|
||
if (valid) {
|
||
const fd = new FormData()
|
||
Object.keys(xpackForm.value).map((item) => {
|
||
if (['custom_theme', 'float_location'].includes(item)) {
|
||
fd.append(item, JSON.stringify(xpackForm.value[item]))
|
||
} else {
|
||
fd.append(item, xpackForm.value[item])
|
||
}
|
||
})
|
||
loadSharedApi({ type: 'application', systemType: apiType.value })
|
||
.putXpackAccessToken(id as string, fd, loading)
|
||
.then(() => {
|
||
emit('refresh')
|
||
MsgSuccess(t('common.settingSuccess'))
|
||
dialogVisible.value = false
|
||
})
|
||
}
|
||
})
|
||
}
|
||
|
||
defineExpose({ open })
|
||
</script>
|
||
<style lang="scss">
|
||
.setting-preview {
|
||
background: var(--app-layout-bg-color);
|
||
height: 570px;
|
||
position: relative;
|
||
|
||
.float_icon {
|
||
position: absolute;
|
||
right: 8px;
|
||
bottom: 15px;
|
||
}
|
||
|
||
.setting-preview-container {
|
||
position: absolute;
|
||
left: 16px;
|
||
top: 25px;
|
||
border-radius: 8px;
|
||
border: 1px solid #ffffff;
|
||
background: var(--dialog-bg-gradient-color);
|
||
background-repeat: no-repeat;
|
||
background-position: center;
|
||
background-size: auto 100%;
|
||
box-shadow: 0px 4px 8px 0px rgba(31, 35, 41, 0.1);
|
||
overflow: hidden;
|
||
width: 330px;
|
||
height: 520px;
|
||
.setting-preview-header {
|
||
background: var(--app-header-bg-color);
|
||
height: var(--app-header-height);
|
||
line-height: var(--app-header-height);
|
||
box-sizing: border-box;
|
||
border-bottom: 1px solid var(--el-border-color);
|
||
}
|
||
}
|
||
}
|
||
|
||
.display-setting-dialog {
|
||
.el-dialog__header {
|
||
padding-right: 17px;
|
||
}
|
||
|
||
.el-dialog__headerbtn {
|
||
top: 14px;
|
||
}
|
||
}
|
||
</style>
|