fix: codegen 边框

This commit is contained in:
xingyu 2022-12-08 23:02:47 +08:00
parent 705cdb47cf
commit 1fca6b460a

View File

@ -1,20 +1,27 @@
<template> <template>
<ContentDetailWrap :title="title" @back="push('/infra/codegen')"> <ContentWrap>
<el-tabs v-model="activeName"> <ContentDetailWrap :title="title" @back="push('/infra/codegen')">
<el-tab-pane label="基本信息" name="basicInfo"> <el-tabs v-model="activeName">
<BasicInfoForm ref="basicInfoRef" :basicInfo="tableCurrentRow" /> <el-tab-pane label="基本信息" name="basicInfo">
</el-tab-pane> <BasicInfoForm ref="basicInfoRef" :basicInfo="tableCurrentRow" />
<el-tab-pane label="字段信息" name="cloum"> </el-tab-pane>
<CloumInfoForm ref="cloumInfoRef" :info="cloumCurrentRow" /> <el-tab-pane label="字段信息" name="cloum">
</el-tab-pane> <CloumInfoForm ref="cloumInfoRef" :info="cloumCurrentRow" />
<el-tab-pane label="生成信息" name="genInfo"> </el-tab-pane>
<GenInfoForm ref="genInfoRef" :genInfo="tableCurrentRow" /> <el-tab-pane label="生成信息" name="genInfo">
</el-tab-pane> <GenInfoForm ref="genInfoRef" :genInfo="tableCurrentRow" />
</el-tabs> </el-tab-pane>
<template #right> </el-tabs>
<XButton type="primary" :title="t('action.save')" :loading="loading" @click="submitForm()" /> <template #right>
</template> <XButton
</ContentDetailWrap> type="primary"
:title="t('action.save')"
:loading="loading"
@click="submitForm()"
/>
</template>
</ContentDetailWrap>
</ContentWrap>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import { ref, unref, onMounted } from 'vue' import { ref, unref, onMounted } from 'vue'