编辑页允许多列

This commit is contained in:
晨曦 2024-04-16 17:58:03 +08:00
parent 7f8bec5bfc
commit ba1a2279f8
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'">