dbsd_kczx/src/views/kc/config/components/KcExportConfigTpkwcqkjzglxF...

182 lines
5.9 KiB
Vue
Raw Normal View History

<template>
<a-spin :spinning="confirmLoading">
<a-form ref="formRef" class="antd-modal-form" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-row>
<a-col :span="24">
2023-08-28 22:27:28 +08:00
<a-form-item label="学院" v-bind="validateInfos.dwmc">
<a-input v-model:value="formData.dwmc" placeholder="请输学院" :disabled="disabled"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
<a-form-item label="教师工号" v-bind="validateInfos.gh">
<a-input v-model:value="formData.gh" placeholder="请输教师工号" :disabled="disabled"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
2023-08-28 22:27:28 +08:00
<a-form-item label="教师姓名" v-bind="validateInfos.xm">
<a-input v-model:value="formData.xm" placeholder="请输教师姓名" :disabled="disabled"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
2023-08-28 23:34:36 +08:00
<a-form-item label="身份" v-bind="validateInfos.gh">
<j-dict-select-tag v-model:value="formData.tklx" dictCode="tpkwcqkjzglx" placeholder="请选择身份" :disabled="disabled"/>
</a-form-item>
</a-col>
<a-col :span="24">
2023-08-28 23:34:36 +08:00
<a-form-item label="听课类型" v-bind="validateInfos.sf">
<a-input v-model:value="formData.sf" placeholder="请输听课类型" :disabled="disabled"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
2023-08-28 22:27:28 +08:00
<a-form-item label="状态" v-bind="validateInfos.zt">
<a-input v-model:value="formData.zt" placeholder="请输状态" :disabled="disabled"></a-input>
</a-form-item>
</a-col>
<a-col :span="24">
2023-08-28 22:27:28 +08:00
<a-form-item label="每学期应听课次数" v-bind="validateInfos.ytkcs">
<a-input v-model:value="formData.ytkcs" placeholder="请输每学期应听课次数" :disabled="disabled"></a-input>
</a-form-item>
</a-col>
</a-row>
</a-form>
</a-spin>
</template>
<script lang="ts" setup>
import { ref, reactive, defineExpose, nextTick, defineProps, computed, onMounted } from 'vue';
import { defHttp } from '/@/utils/http/axios';
import { useMessage } from '/@/hooks/web/useMessage';
import JDictSelectTag from '/@/components/Form/src/jeecg/components/JDictSelectTag.vue';
import { getValueType } from '/@/utils';
import { saveOrUpdate } from '../KcExportConfigTpkwcqkjzglx.api';
import { Form } from 'ant-design-vue';
import { duplicateValidate } from '/@/utils/helper/validator'
2023-08-28 22:27:28 +08:00
import { getSysConfig } from '/@/views/site/utils/index';
const props = defineProps({
formDisabled: { type: Boolean, default: false },
formData: { type: Object, default: ()=>{} },
formBpm: { type: Boolean, default: true }
});
const formRef = ref();
const useForm = Form.useForm;
const emit = defineEmits(['register', 'ok']);
const formData = reactive<Record<string, any>>({
id: '',
gh: '',
tklx: '',
2023-08-28 22:27:28 +08:00
dwmc: '',
sf: '',
xm: '',
zt: '',
ytkcs: '',
});
const { createMessage } = useMessage();
const labelCol = ref<any>({ xs: { span: 24 }, sm: { span: 5 } });
const wrapperCol = ref<any>({ xs: { span: 24 }, sm: { span: 16 } });
const confirmLoading = ref<boolean>(false);
//表单验证
const validatorRules = {
gh: [{ required: true, message: '请输入教师!'}, { validator: ghDuplicatevalidate }],
tklx: [{ required: true, message: '请输入听课类型!'},],
2023-08-28 22:27:28 +08:00
dwmc: [{ required: true, message: '请输入单位名称!'},],
xm: [{ required: true, message: '请输入教师姓名!'},],
zt: [{ required: true, message: '请输入状态!'},],
sf: [{ required: true, message: '请输入身份!'},],
ytkcs: [{ required: true, message: '请输入每学期应听课次数!'},],
};
const { resetFields, validate, validateInfos } = useForm(formData, validatorRules, { immediate: true });
// 表单禁用
const disabled = computed(()=>{
if(props.formBpm === true){
if(props.formData.disabled === false){
return false;
}else{
return true;
}
}
return props.formDisabled;
});
/**
* 新增
*/
function add() {
edit({});
}
/**
* 编辑
*/
function edit(record) {
nextTick(() => {
resetFields();
//赋值
Object.assign(formData, record);
});
}
/**
* 提交数据
*/
async function submitForm() {
// 触发表单验证
await validate();
confirmLoading.value = true;
const isUpdate = ref<boolean>(false);
//时间格式化
let model = formData;
if (model.id) {
isUpdate.value = true;
}
//循环数据
for (let data in model) {
//如果该数据是数组并且是字符串类型
if (model[data] instanceof Array) {
let valueType = getValueType(formRef.value.getProps, data);
//如果是字符串类型的需要变成以逗号分割的字符串
if (valueType === 'string') {
model[data] = model[data].join(',');
}
}
}
await saveOrUpdate(model, isUpdate.value)
.then((res) => {
if (res.success) {
createMessage.success(res.message);
emit('ok');
} else {
createMessage.warning(res.message);
}
})
.finally(() => {
confirmLoading.value = false;
});
}
async function ghDuplicatevalidate(_r, value) {
2023-08-28 22:27:28 +08:00
let config = getSysConfig()
if(formData.id){
return duplicateValidate('kc_export_config_tpkwcqkjzglx', `CONCAT(xqxn,'-',gh,'-',tklx)`, formData.xqxn + '-' + value + '-' + formData.tklx, formData.id)
}else {
return duplicateValidate('kc_export_config_tpkwcqkjzglx', `CONCAT(xqxn,'-',gh,'-',tklx)`, config.flag1 + '-' + value + '-' + formData.tklx, '')
}
}
defineExpose({
add,
edit,
submitForm,
});
</script>
<style lang="less" scoped>
.antd-modal-form {
min-height: 500px !important;
overflow-y: auto;
padding: 24px 24px 24px 24px;
}
</style>