mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2025-12-08 17:12:28 +08:00
165 lines
4.7 KiB
Vue
165 lines
4.7 KiB
Vue
<template>
|
|
<div class="p-2">
|
|
<BasicModal destroyOnClose @register="registerModal" :canFullscreen="false" width="800px" :title="title" @ok="handleOk" @cancel="handleCancel">
|
|
<BasicForm @register="registerForm">
|
|
<template #typeSlot="{ model, field }">
|
|
<a-radio-group v-model:value="type" style="display: flex">
|
|
<a-card
|
|
v-for="item in appTypeOption"
|
|
style="margin-right: 10px; cursor: pointer; width: 100%"
|
|
@click="handleTypeClick(item.value)"
|
|
:style="type === item.value ? { borderColor: '#3370ff' } : {}"
|
|
>
|
|
<a-radio :value="item.value">
|
|
<div class="type-title">{{ item.title }}</div>
|
|
<div class="type-desc">{{ item.desc }}</div>
|
|
</a-radio>
|
|
</a-card>
|
|
</a-radio-group>
|
|
</template>
|
|
</BasicForm>
|
|
</BasicModal>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { ref, unref } from 'vue';
|
|
import BasicModal from '@/components/Modal/src/BasicModal.vue';
|
|
import { useModal, useModalInner } from '@/components/Modal';
|
|
|
|
import BasicForm from '@/components/Form/src/BasicForm.vue';
|
|
import { useForm } from '@/components/Form';
|
|
import { useMessage } from '/@/hooks/web/useMessage';
|
|
import { formSchema } from '../AiApp.data';
|
|
import { initDictOptions } from '@/utils/dict';
|
|
import { saveApp } from '@/views/super/airag/aiapp/AiApp.api';
|
|
|
|
export default {
|
|
name: 'AiAppModal',
|
|
components: {
|
|
BasicForm,
|
|
BasicModal,
|
|
},
|
|
emits: ['success', 'register'],
|
|
setup(props, { emit }) {
|
|
const title = ref<string>('创建应用');
|
|
|
|
//保存或修改
|
|
const isUpdate = ref<boolean>(false);
|
|
|
|
//app类型
|
|
const appTypeOption = ref<any>([]);
|
|
//应用类型
|
|
const type = ref<string>('chatSimple');
|
|
|
|
//表单配置
|
|
const [registerForm, { validate, resetFields, setFieldsValue }] = useForm({
|
|
schemas: formSchema,
|
|
showActionButtonGroup: false,
|
|
layout: 'vertical',
|
|
wrapperCol: { span: 24 },
|
|
});
|
|
|
|
//注册modal
|
|
const [registerModal, { closeModal, setModalProps }] = useModalInner(async (data) => {
|
|
await resetFields();
|
|
type.value = 'chatSimple';
|
|
//update-begin---author:wangshuai---date:2025-03-11---for: 【QQYUN-11324】8.修改弹窗head---
|
|
isUpdate.value = !!data?.isUpdate;
|
|
if (unref(isUpdate)) {
|
|
//表单赋值
|
|
await setFieldsValue({
|
|
...data.record,
|
|
});
|
|
}
|
|
//update-end---author:wangshuai---date:2025-03-11---for:【QQYUN-11324】8.修改弹窗head---
|
|
setModalProps({ minHeight: 500, bodyStyle: { padding: '10px' } });
|
|
});
|
|
|
|
/**
|
|
* 保存
|
|
*/
|
|
async function handleOk() {
|
|
try {
|
|
let values = await validate();
|
|
setModalProps({ confirmLoading: true });
|
|
values.type = type.value;
|
|
let result = await saveApp(values);
|
|
if (result) {
|
|
//关闭弹窗
|
|
closeModal();
|
|
//update-begin---author:wangshuai---date:2025-03-11---for: 【QQYUN-11324】8.修改弹窗head---
|
|
if(isUpdate.value){
|
|
//刷新列表
|
|
emit('success', values);
|
|
}else{
|
|
//刷新列表
|
|
emit('success', result);
|
|
}
|
|
//update-end---author:wangshuai---date:2025-03-11---for: 【QQYUN-11324】8.修改弹窗head---
|
|
}
|
|
} finally {
|
|
setModalProps({ confirmLoading: false });
|
|
}
|
|
}
|
|
|
|
//初始化AI应用类型
|
|
initAppTypeOption();
|
|
|
|
function initAppTypeOption() {
|
|
initDictOptions('ai_app_type').then((data) => {
|
|
if (data && data.length > 0) {
|
|
for (const datum of data) {
|
|
if (datum.value === 'chatSimple') {
|
|
datum['desc'] = '适合新手创建小助手';
|
|
} else if (datum.value === 'chatFLow') {
|
|
datum['desc'] = '适合高级用户自定义小助手的工作流';
|
|
}
|
|
}
|
|
}
|
|
appTypeOption.value = data;
|
|
});
|
|
}
|
|
|
|
/**
|
|
* 取消
|
|
*/
|
|
function handleCancel() {
|
|
closeModal();
|
|
}
|
|
|
|
/**
|
|
* 应用类型点击事件
|
|
*/
|
|
function handleTypeClick(val) {
|
|
type.value = val;
|
|
}
|
|
|
|
return {
|
|
registerModal,
|
|
registerForm,
|
|
title,
|
|
handleOk,
|
|
handleCancel,
|
|
appTypeOption,
|
|
type,
|
|
handleTypeClick,
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style scoped lang="less">
|
|
.pointer {
|
|
cursor: pointer;
|
|
}
|
|
.type-title {
|
|
color: #1d2025;
|
|
margin-bottom: 4px;
|
|
}
|
|
.type-desc {
|
|
color: #8f959e;
|
|
font-weight: 400;
|
|
}
|
|
</style>
|