mirror of
https://gitee.com/huangge1199_admin/vue-pro.git
synced 2024-11-23 07:41:53 +08:00
fix: codegen 边框
This commit is contained in:
parent
705cdb47cf
commit
1fca6b460a
@ -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'
|
||||||
|
Loading…
Reference in New Issue
Block a user