|
@@ -17,12 +17,14 @@
|
|
<el-input v-model="formData.field3" placeholder="请输入字段 3" />
|
|
<el-input v-model="formData.field3" placeholder="请输入字段 3" />
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-form>
|
|
</el-form>
|
|
- <el-tabs v-model="activeName" class="demo-tabs" @tab-click="handleClick">
|
|
|
|
- <el-tab-pane label="联系人信息" name="first">
|
|
|
|
- <DemoStudentContactForm v-model:form-data="formData.demoStudentContactList" />
|
|
|
|
|
|
+ <!-- 子表的表单 -->
|
|
|
|
+ <el-tabs v-model="subTabsName">
|
|
|
|
+ <el-tab-pane label="联系人信息" name="DemoStudentContact">
|
|
|
|
+ <DemoStudentContactForm ref="demoStudentContactFormRef" :student-id="formData.id" />
|
|
|
|
+ </el-tab-pane>
|
|
|
|
+ <el-tab-pane label="地址信息" name="DemoStudentAddress">
|
|
|
|
+ <DemoStudentAddressForm ref="demoStudentAddressFormRef" :student-id="formData.id" />
|
|
</el-tab-pane>
|
|
</el-tab-pane>
|
|
- <el-tab-pane label="地址信息" name="third">地址信息</el-tab-pane>
|
|
|
|
- <el-tab-pane label="其它信息" name="fourth">其它信息</el-tab-pane>
|
|
|
|
</el-tabs>
|
|
</el-tabs>
|
|
<template #footer>
|
|
<template #footer>
|
|
<el-button @click="submitForm" type="primary" :disabled="formLoading">确 定</el-button>
|
|
<el-button @click="submitForm" type="primary" :disabled="formLoading">确 定</el-button>
|
|
@@ -33,6 +35,7 @@
|
|
<script setup lang="ts">
|
|
<script setup lang="ts">
|
|
import * as DemoStudentApi from '@/api/infra/demo02'
|
|
import * as DemoStudentApi from '@/api/infra/demo02'
|
|
import DemoStudentContactForm from './DemoStudentContactForm.vue'
|
|
import DemoStudentContactForm from './DemoStudentContactForm.vue'
|
|
|
|
+import DemoStudentAddressForm from './DemoStudentAddressForm.vue'
|
|
|
|
|
|
const { t } = useI18n() // 国际化
|
|
const { t } = useI18n() // 国际化
|
|
const message = useMessage() // 消息弹窗
|
|
const message = useMessage() // 消息弹窗
|
|
@@ -42,28 +45,36 @@ const dialogTitle = ref('') // 弹窗的标题
|
|
const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
|
|
const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
|
|
const formType = ref('') // 表单的类型:create - 新增;update - 修改
|
|
const formType = ref('') // 表单的类型:create - 新增;update - 修改
|
|
const formData = ref({
|
|
const formData = ref({
|
|
- id: undefined,
|
|
|
|
- demoStudentContactList: [
|
|
|
|
- {
|
|
|
|
- name: '芋艿',
|
|
|
|
- mobile: '15601691300'
|
|
|
|
- }
|
|
|
|
- ]
|
|
|
|
|
|
+ id: undefined
|
|
|
|
+})
|
|
|
|
+const formRules = reactive({
|
|
|
|
+ field2: [required]
|
|
})
|
|
})
|
|
-const formRules = reactive({})
|
|
|
|
const formRef = ref() // 表单 Ref
|
|
const formRef = ref() // 表单 Ref
|
|
|
|
|
|
|
|
+/** 子表的表单 */
|
|
|
|
+const demoStudentContactFormRef = ref()
|
|
|
|
+const demoStudentAddressFormRef = ref()
|
|
|
|
+const subTabsName = ref('DemoStudentContact')
|
|
|
|
+
|
|
/** 打开弹窗 */
|
|
/** 打开弹窗 */
|
|
const open = async (type: string, id?: number) => {
|
|
const open = async (type: string, id?: number) => {
|
|
dialogVisible.value = true
|
|
dialogVisible.value = true
|
|
dialogTitle.value = t('action.' + type)
|
|
dialogTitle.value = t('action.' + type)
|
|
formType.value = type
|
|
formType.value = type
|
|
- // resetForm()
|
|
|
|
|
|
+ resetForm()
|
|
// 修改时,设置数据
|
|
// 修改时,设置数据
|
|
if (id) {
|
|
if (id) {
|
|
|
|
+ // debugger
|
|
formLoading.value = true
|
|
formLoading.value = true
|
|
try {
|
|
try {
|
|
- formData.value = await DemoStudentApi.getDemoStudent(id)
|
|
|
|
|
|
+ // formData.value = await DemoStudentApi.getDemoStudent(id)
|
|
|
|
+ formData.value = {
|
|
|
|
+ id: id,
|
|
|
|
+ field1: '1',
|
|
|
|
+ field2: '22',
|
|
|
|
+ field3: '333'
|
|
|
|
+ }
|
|
} finally {
|
|
} finally {
|
|
formLoading.value = false
|
|
formLoading.value = false
|
|
}
|
|
}
|
|
@@ -75,13 +86,27 @@ defineExpose({ open }) // 提供 open 方法,用于打开弹窗
|
|
const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调
|
|
const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调
|
|
const submitForm = async () => {
|
|
const submitForm = async () => {
|
|
// 校验表单
|
|
// 校验表单
|
|
- if (!formRef) return
|
|
|
|
- const valid = await formRef.value.validate()
|
|
|
|
- if (!valid) return
|
|
|
|
|
|
+ await formRef.value.validate()
|
|
|
|
+ // 校验子表单
|
|
|
|
+ try {
|
|
|
|
+ await demoStudentContactFormRef.value.validate()
|
|
|
|
+ } catch (e) {
|
|
|
|
+ subTabsName.value = 'DemoStudentContact'
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ try {
|
|
|
|
+ await demoStudentAddressFormRef.value.validate()
|
|
|
|
+ } catch (e) {
|
|
|
|
+ subTabsName.value = 'DemoStudentAddress'
|
|
|
|
+ return
|
|
|
|
+ }
|
|
// 提交请求
|
|
// 提交请求
|
|
formLoading.value = true
|
|
formLoading.value = true
|
|
try {
|
|
try {
|
|
const data = formData.value as unknown as DemoStudentApi.DemoStudentVO
|
|
const data = formData.value as unknown as DemoStudentApi.DemoStudentVO
|
|
|
|
+ // 拼接子表的数据
|
|
|
|
+ data.demoStudentContacts = demoStudentContactFormRef.value.getData()
|
|
|
|
+ data.demoStudentAddress = demoStudentAddressFormRef.value.getData()
|
|
if (formType.value === 'create') {
|
|
if (formType.value === 'create') {
|
|
await DemoStudentApi.createDemoStudent(data)
|
|
await DemoStudentApi.createDemoStudent(data)
|
|
message.success(t('common.createSuccess'))
|
|
message.success(t('common.createSuccess'))
|