!4 代码生成页面的编辑页列数允许多列

Merge pull request !4 from 晨曦/0416
This commit is contained in:
数据小王子 2024-04-16 12:35:45 +00:00 committed by Gitee
commit e19be90529
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 9 additions and 1 deletions

View File

@ -25,6 +25,7 @@ export interface TableVO extends BaseEntity {
parentMenuName?: any;
tree: boolean;
crud: boolean;
editColumns: number;
}
export interface TableQuery extends PageQuery {

View File

@ -95,7 +95,6 @@
<el-radio v-model="infoForm.genType" label="1">自定义路径</el-radio>
</el-form-item>
</el-col>
<el-col v-if="infoForm.genType == '1'" :span="24">
<el-form-item prop="genPath">
<template #label>
@ -121,6 +120,14 @@
</el-input>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="number" prop="editColumns" class="label-right-align">
<template #label>编辑页列数</template>
<el-input-number v-model="infoForm.editColumns" class="full-width-input" controls-position="right"
:min="1" :max="4" :precision="0" :step="1"></el-input-number>
</el-form-item>
</el-col>
</el-row>
<template v-if="info.tplCategory == 'tree'">