| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- <template>
- <div class="sys-dbEntity-container">
- <el-dialog v-model="state.isShowDialog" draggable :close-on-click-modal="false" width="700px">
- <template #header>
- <div style="color: #fff">
- <el-icon size="16" style="margin-right: 3px; display: inline; vertical-align: middle"> <ele-Cpu /> </el-icon>
- <span> 生成种子数据 </span>
- </div>
- </template>
- <el-form :model="state.ruleForm" ref="ruleFormRef" label-width="auto" :rules="state.rules">
- <el-row :gutter="35">
- <el-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24" class="mb20">
- <el-form-item label="表名" prop="tableName" :rules="[{ required: true, message: '表名不能为空', trigger: 'blur' }]">
- <el-input disabled v-model="state.ruleForm.tableName" placeholder="表名" clearable />
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24" class="mb20">
- <el-form-item label="后缀" prop="suffix">
- <el-input v-model="state.ruleForm.suffix" placeholder="后缀" clearable />
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24" class="mb20">
- <el-form-item label="存放位置" prop="position">
- <!-- <el-input v-model="state.ruleForm.position" placeholder="存放位置" clearable >Admin.NET.Core</el-input> -->
- <el-select v-model="state.ruleForm.position" filterable clearable class="w100" placeholder="存放位置">
- <el-option v-for="(item, index) in props.applicationNamespaces" :key="index" :label="item" :value="item" />
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24" class="mb20">
- <el-form-item label="过滤重复数据" prop="filterExistingData">
- <el-switch v-model="state.ruleForm.filterExistingData" ></el-switch>
- </el-form-item>
- </el-col>
- </el-row>
- </el-form>
- <template #footer>
- <span class="dialog-footer">
- <el-button @click="cancel">取 消</el-button>
- <el-button type="primary" @click="submit">确 定</el-button>
- </span>
- </template>
- </el-dialog>
- </div>
- </template>
- <script lang="ts" setup name="sysGenEntity">
- import { onMounted, reactive, ref } from 'vue';
- import { getAPI } from '/@/utils/axios-utils';
- import { SysDatabaseApi, SysDictTypeApi } from '/@/api-services/api';
- const emits = defineEmits(['handleQueryColumn']);
- const props = defineProps({
- applicationNamespaces: { type: Array },
- });
- const ruleFormRef = ref();
- const state = reactive({
- isShowDialog: false,
- ruleForm: {} as any,
- codeGenBaseClassName: [] as any,
- rules: { position: [{ required: true, message: '请选择存放位置', trigger: 'blur' }] },
- });
- onMounted(async () => {
- let resDicData = await getAPI(SysDictTypeApi).apiSysDictTypeDataListGet('code_gen_base_class');
- state.codeGenBaseClassName = resDicData.data.result;
- });
- // 打开弹窗
- const openDialog = (row: any) => {
- state.ruleForm.configId = row.configId;
- state.ruleForm.tableName = row.tableName;
- state.ruleForm.position = row.position;
- state.ruleForm.filterExistingData = false;
- state.isShowDialog = true;
- };
- // 关闭弹窗
- const closeDialog = () => {
- emits('handleQueryColumn');
- state.isShowDialog = false;
- };
- // 取消
- const cancel = () => {
- state.isShowDialog = false;
- };
- // 提交
- const submit = () => {
- ruleFormRef.value.validate(async (valid: boolean) => {
- if (!valid) return;
- await getAPI(SysDatabaseApi).apiSysDatabaseCreateSeedDataPost(state.ruleForm);
- closeDialog();
- });
- };
- // 导出对象
- defineExpose({ openDialog });
- </script>
|