UnisKB/ui/src/views/application-overview/component/DisplaySettingDialog.vue

93 lines
2.5 KiB
Vue
Raw Normal View History

2024-07-22 10:52:56 +00:00
<template>
2024-09-24 11:01:35 +00:00
<el-dialog
2025-01-13 03:15:51 +00:00
:title="$t('views.applicationOverview.appInfo.SettingDisplayDialog.dialogTitle')"
2024-09-24 11:01:35 +00:00
v-model="dialogVisible"
:close-on-click-modal="false"
:close-on-press-escape="false"
>
2024-07-22 10:52:56 +00:00
<el-form label-position="top" ref="displayFormRef" :model="form">
<el-form-item>
<el-space direction="vertical" alignment="start">
2024-07-23 02:30:35 +00:00
<el-checkbox
2025-01-02 08:37:54 +00:00
v-model="form.show_source"
2025-01-13 03:15:51 +00:00
:label="
isWorkFlow(detail.type)
? $t('views.applicationOverview.appInfo.SettingDisplayDialog.showExecutionDetail')
: $t('views.applicationOverview.appInfo.SettingDisplayDialog.showSourceLabel')
"
2024-07-23 02:30:35 +00:00
/>
2024-07-22 10:52:56 +00:00
</el-space>
</el-form-item>
</el-form>
<template #footer>
<span class="dialog-footer">
2025-01-13 03:15:51 +00:00
<el-button @click.prevent="dialogVisible = false">{{ $t('common.cancel') }} </el-button>
2024-07-22 10:52:56 +00:00
<el-button type="primary" @click="submit(displayFormRef)" :loading="loading">
2025-01-13 03:15:51 +00:00
{{ $t('common.save') }}
2024-07-22 10:52:56 +00:00
</el-button>
</span>
</template>
</el-dialog>
</template>
<script setup lang="ts">
import { ref, watch } from 'vue'
import { useRoute } from 'vue-router'
import type { FormInstance, FormRules, UploadFiles } from 'element-plus'
import applicationApi from '@/api/application'
2025-01-02 08:37:54 +00:00
import { isWorkFlow } from '@/utils/application'
import { MsgSuccess, MsgError } from '@/utils/message'
2024-07-22 10:52:56 +00:00
import { t } from '@/locales'
const route = useRoute()
const {
params: { id }
} = route
const emit = defineEmits(['refresh'])
const displayFormRef = ref()
const form = ref<any>({
show_source: false
})
2025-01-02 08:37:54 +00:00
const detail = ref<any>(null)
2024-07-22 10:52:56 +00:00
const dialogVisible = ref<boolean>(false)
const loading = ref(false)
watch(dialogVisible, (bool) => {
if (!bool) {
form.value = {
show_source: false
}
}
})
2025-01-02 08:37:54 +00:00
const open = (data: any, content: any) => {
detail.value = content
form.value.show_source = data.show_source
2024-07-22 10:52:56 +00:00
dialogVisible.value = true
}
const submit = async (formEl: FormInstance | undefined) => {
if (!formEl) return
await formEl.validate((valid, fields) => {
if (valid) {
2025-01-02 08:37:54 +00:00
const obj = {
show_source: form.value.show_source
2024-07-22 10:52:56 +00:00
}
2025-01-02 08:37:54 +00:00
applicationApi.putAccessToken(id as string, obj, loading).then((res) => {
emit('refresh')
// @ts-ignore
2025-01-13 03:15:51 +00:00
MsgSuccess(t('common.settingSuccess'))
2025-01-02 08:37:54 +00:00
dialogVisible.value = false
})
2024-07-22 10:52:56 +00:00
}
})
}
defineExpose({ open })
</script>
<style lang="scss" scope></style>