|
|
|
@ -1,4 +1,5 @@
|
|
|
|
<template>
|
|
|
|
<template>
|
|
|
|
|
|
|
|
<ContentWrap>
|
|
|
|
<ContentDetailWrap :title="title" @back="push('/infra/codegen')">
|
|
|
|
<ContentDetailWrap :title="title" @back="push('/infra/codegen')">
|
|
|
|
<el-tabs v-model="activeName">
|
|
|
|
<el-tabs v-model="activeName">
|
|
|
|
<el-tab-pane label="基本信息" name="basicInfo">
|
|
|
|
<el-tab-pane label="基本信息" name="basicInfo">
|
|
|
|
@ -12,9 +13,15 @@
|
|
|
|
</el-tab-pane>
|
|
|
|
</el-tab-pane>
|
|
|
|
</el-tabs>
|
|
|
|
</el-tabs>
|
|
|
|
<template #right>
|
|
|
|
<template #right>
|
|
|
|
<XButton type="primary" :title="t('action.save')" :loading="loading" @click="submitForm()" />
|
|
|
|
<XButton
|
|
|
|
|
|
|
|
type="primary"
|
|
|
|
|
|
|
|
:title="t('action.save')"
|
|
|
|
|
|
|
|
:loading="loading"
|
|
|
|
|
|
|
|
@click="submitForm()"
|
|
|
|
|
|
|
|
/>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</ContentDetailWrap>
|
|
|
|
</ContentDetailWrap>
|
|
|
|
|
|
|
|
</ContentWrap>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
|
|
<script setup lang="ts">
|
|
|
|
import { ref, unref, onMounted } from 'vue'
|
|
|
|
import { ref, unref, onMounted } from 'vue'
|
|
|
|
|