<script lang="ts" name="fBS_EnterpriseType" setup>
|
import { ref, reactive, onMounted } from "vue";
|
import { ElMessage } from "element-plus";
|
import type { FormRules } from "element-plus";
|
import { formatDate } from '/@/utils/formatTime';
|
import { useFBS_EnterpriseTypeApi } from '/@/api/Customer/fBS_EnterpriseType';
|
|
//父级传递来的函数,用于回调
|
const emit = defineEmits(["reloadTable"]);
|
const fBS_EnterpriseTypeApi = useFBS_EnterpriseTypeApi();
|
const ruleFormRef = ref();
|
|
const state = reactive({
|
title: '',
|
loading: false,
|
showDialog: false,
|
ruleForm: {} as any,
|
stores: {},
|
dropdownData: {} as any,
|
});
|
|
// 自行添加其他规则
|
const rules = ref<FormRules>({
|
name: [{required: true, message: '请选择名称!', trigger: 'blur',},],
|
code: [{required: true, message: '请选择代码!', trigger: 'blur',},],
|
parentId: [{required: true, message: '请选择父!', trigger: 'blur',},],
|
});
|
|
// 页面加载时
|
onMounted(async () => {
|
});
|
|
// 打开弹窗
|
const openDialog = async (row: any, title: string) => {
|
state.title = title;
|
row = row ?? { };
|
state.ruleForm = row.id ? await fBS_EnterpriseTypeApi.detail(row.id).then(res => res.data.result) : JSON.parse(JSON.stringify(row));
|
state.showDialog = true;
|
};
|
|
// 关闭弹窗
|
const closeDialog = () => {
|
emit("reloadTable");
|
state.showDialog = false;
|
};
|
|
// 提交
|
const submit = async () => {
|
ruleFormRef.value.validate(async (isValid: boolean, fields?: any) => {
|
if (isValid) {
|
let values = state.ruleForm;
|
await fBS_EnterpriseTypeApi[state.ruleForm.id ? 'update' : 'add'](values);
|
closeDialog();
|
} else {
|
ElMessage({
|
message: `表单有${Object.keys(fields).length}处验证失败,请修改后再提交`,
|
type: "error",
|
});
|
}
|
});
|
};
|
|
//将属性或者函数暴露给父组件
|
defineExpose({ openDialog });
|
</script>
|
<template>
|
<div class="fBS_EnterpriseType-container">
|
<el-dialog v-model="state.showDialog" :width="800" draggable :close-on-click-modal="false">
|
<template #header>
|
<div style="color: #fff">
|
<span>{{ state.title }}</span>
|
</div>
|
</template>
|
<el-form :model="state.ruleForm" ref="ruleFormRef" label-width="auto" :rules="rules">
|
<el-row :gutter="35">
|
<el-form-item v-show="false">
|
<el-input v-model="state.ruleForm.id" />
|
</el-form-item>
|
<el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20" >
|
<el-form-item label="名称" prop="name">
|
<el-input v-model="state.ruleForm.name" placeholder="请输入名称" maxlength="256" show-word-limit clearable />
|
</el-form-item>
|
</el-col>
|
<el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20" >
|
<el-form-item label="代码" prop="code">
|
<el-input v-model="state.ruleForm.code" placeholder="请输入代码" maxlength="36" show-word-limit clearable />
|
</el-form-item>
|
</el-col>
|
<el-col :xs="24" :sm="12" :md="12" :lg="12" :xl="12" class="mb20" >
|
<el-form-item label="父" prop="parentId">
|
<el-input-number v-model="state.ruleForm.parentId" placeholder="请输入父" clearable />
|
</el-form-item>
|
</el-col>
|
</el-row>
|
</el-form>
|
<template #footer>
|
<span class="dialog-footer">
|
<el-button @click="() => state.showDialog = false">取 消</el-button>
|
<el-button @click="submit" type="primary" v-reclick="1000">确 定</el-button>
|
</span>
|
</template>
|
</el-dialog>
|
</div>
|
</template>
|
<style lang="scss" scoped>
|
:deep(.el-select), :deep(.el-input-number) {
|
width: 100%;
|
}
|
</style>
|