dbsd_kczx/src/views/bl/blTeacherMain/components/BlTeacherMainForm.vue

172 lines
4.8 KiB
Vue
Raw Normal View History

2024-06-09 17:39:16 +08:00
<template>
<a-spin :spinning="loading">
<a-form v-bind="formItemLayout">
<a-row>
<a-col :span="24">
<a-form-item label="名称" v-bind="validateInfos.title">
<a-input v-model:value="formData.title" placeholder="请输入名称" :disabled="disabled"></a-input>
</a-form-item>
</a-col>
</a-row>
</a-form>
<!-- 子表单区域 -->
<a-tabs v-model:activeKey="activeKey" animated>
<a-tab-pane tab="问卷信息" key="blTeacherTjfx" :forceRender="true">
<j-vxe-table
:keep-source="true"
resizable
ref="blTeacherTjfxTableRef"
:loading="blTeacherTjfxTable.loading"
:columns="blTeacherTjfxTable.columns"
:dataSource="blTeacherTjfxTable.dataSource"
:height="340"
:disabled="disabled"
:rowNumber="true"
:rowSelection="true"
:toolbar="true"/>
</a-tab-pane>
</a-tabs>
</a-spin>
</template>
<script lang="ts">
import { defineComponent, ref, reactive, computed, toRaw, onMounted } from 'vue';
import { defHttp } from '/@/utils/http/axios';
import { useValidateAntFormAndTable } from '/@/hooks/system/useJvxeMethods';
import { queryBlTeacherTjfxListByMainId, queryDataById, saveOrUpdate } from '../BlTeacherMain.api';
import { JVxeTable } from '/@/components/jeecg/JVxeTable';
import {blTeacherTjfxColumns} from '../BlTeacherMain.data';
import { Form } from 'ant-design-vue';
const useForm = Form.useForm;
export default defineComponent({
name: "BlTeacherMainForm",
components:{
JVxeTable,
},
props:{
formDisabled:{
type: Boolean,
default: false
},
formData: { type: Object, default: ()=>{} },
formBpm: { type: Boolean, default: true }
},
emits:['success'],
setup(props, {emit}) {
const loading = ref(false);
const blTeacherTjfxTableRef = ref();
const blTeacherTjfxTable = reactive<Record<string, any>>({
loading: false,
columns: blTeacherTjfxColumns,
dataSource: []
});
const activeKey = ref('blTeacherTjfx');
const formData = reactive<Record<string, any>>({
id: '',
title: '',
});
//表单验证
const validatorRules = reactive({
});
const {resetFields, validate, validateInfos} = useForm(formData, validatorRules, {immediate: true});
const dbData = {};
const formItemLayout = {
labelCol: {xs: {span: 24}, sm: {span: 5}},
wrapperCol: {xs: {span: 24}, sm: {span: 16}},
};
// 表单禁用
const disabled = computed(()=>{
if(props.formBpm === true){
if(props.formData.disabled === false){
return false;
}else{
return true;
}
}
return props.formDisabled;
});
function add() {
resetFields();
blTeacherTjfxTable.dataSource = [];
}
async function edit(row) {
//主表数据
await queryMainData(row.id);
//子表数据
const blTeacherTjfxDataList = await queryBlTeacherTjfxListByMainId(row['id']);
blTeacherTjfxTable.dataSource = [...blTeacherTjfxDataList];
}
async function queryMainData(id) {
const row = await queryDataById(id);
Object.keys(row).map(k => {
formData[k] = row[k];
});
}
const {getSubFormAndTableData, transformData} = useValidateAntFormAndTable(activeKey, {
'blTeacherTjfx': blTeacherTjfxTableRef,
});
async function getFormData() {
await validate();
return transformData(toRaw(formData))
}
async function submitForm() {
const mainData = await getFormData();
const subData = await getSubFormAndTableData();
const values = Object.assign({}, dbData, mainData, subData);
console.log('表单提交数据', values)
const isUpdate = values.id ? true : false
await saveOrUpdate(values, isUpdate);
//关闭弹窗
emit('success');
}
function setFieldsValue(values) {
if(values){
Object.keys(values).map(k=>{
formData[k] = values[k];
});
}
}
/**
* 值改变事件触发-树控件回调
* @param key
* @param value
*/
function handleFormChange(key, value) {
formData[key] = value;
}
return {
blTeacherTjfxTableRef,
blTeacherTjfxTable,
validatorRules,
validateInfos,
activeKey,
loading,
formData,
setFieldsValue,
handleFormChange,
formItemLayout,
disabled,
getFormData,
submitForm,
add,
edit
}
}
});
</script>