✨代码生成新增差异日志记录配置
This commit is contained in:
parent
e964662f7a
commit
1fe328fbee
@ -230,7 +230,8 @@ function submitForm() {
|
|||||||
colNum: info.value.colNum,
|
colNum: info.value.colNum,
|
||||||
generateRepo: info.value.generateRepo,
|
generateRepo: info.value.generateRepo,
|
||||||
generateMenu: info.value.generateMenu,
|
generateMenu: info.value.generateMenu,
|
||||||
useSnowflakeId: info.value.useSnowflakeId
|
useSnowflakeId: info.value.useSnowflakeId,
|
||||||
|
enableLog: info.value.enableLog
|
||||||
}
|
}
|
||||||
genTable.params = options
|
genTable.params = options
|
||||||
|
|
||||||
|
|||||||
@ -257,6 +257,24 @@
|
|||||||
</el-checkbox-group>
|
</el-checkbox-group>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
</el-col>
|
</el-col>
|
||||||
|
<el-col :lg="12">
|
||||||
|
<el-form-item>
|
||||||
|
<template #label>
|
||||||
|
是否记录差异化日志
|
||||||
|
<span>
|
||||||
|
<el-tooltip content="表编辑、删除会自动记录差异化日志" placement="top">
|
||||||
|
<el-icon>
|
||||||
|
<question-filled />
|
||||||
|
</el-icon>
|
||||||
|
</el-tooltip>
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
<el-radio-group v-model="info.enableLog">
|
||||||
|
<el-radio :label="true">是</el-radio>
|
||||||
|
<el-radio :label="false">否</el-radio>
|
||||||
|
</el-radio-group>
|
||||||
|
</el-form-item>
|
||||||
|
</el-col>
|
||||||
</el-row>
|
</el-row>
|
||||||
|
|
||||||
<!-- 树表配置 -->
|
<!-- 树表配置 -->
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
<div class="app-container">
|
<div class="app-container">
|
||||||
<el-form ref="codeform" :inline="true" :model="queryParams">
|
<el-form ref="codeform" :inline="true" :model="queryParams">
|
||||||
<el-form-item label="表名" prop="tableName">
|
<el-form-item label="表名" prop="tableName">
|
||||||
<el-input v-model="queryParams.tableName" clearable placeholder="输入要查询的表名" />
|
<el-input v-model="queryParams.tableName" style="width: 200px" clearable placeholder="输入要查询的表名" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item>
|
<el-form-item>
|
||||||
<el-button type="primary" icon="search" @click="getList()">查询</el-button>
|
<el-button type="primary" icon="search" @click="getList()">查询</el-button>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user