后台页面调整

This commit is contained in:
Jason
2022-09-21 16:42:53 +08:00
parent cbdb12f5d7
commit 5e844a1d38
9 changed files with 46 additions and 20 deletions

View File

@@ -18,6 +18,7 @@
<el-input
v-model="formData.base.tableName"
placeholder="请输入表名称"
clearable
/>
</div>
</el-form-item>
@@ -26,6 +27,7 @@
<el-input
v-model="formData.base.tableComment"
placeholder="请输入表描述"
clearable
/>
</div>
</el-form-item>
@@ -34,6 +36,7 @@
<el-input
v-model="formData.base.entityName"
placeholder="请输入实体类名称"
clearable
/>
</div>
</el-form-item>
@@ -43,6 +46,7 @@
<el-input
v-model="formData.base.authorName"
placeholder="请输入作者"
clearable
/>
</div>
</el-form-item>
@@ -50,11 +54,12 @@
<div class="w-80">
<el-input
v-model="formData.base.remarks"
class="el-input"
class="w-full"
type="textarea"
:autosize="{ minRows: 4, maxRows: 4 }"
maxlength="200"
show-word-limit
clearable
/>
</div>
</el-form-item>
@@ -92,7 +97,7 @@
v-model="row.isRequired"
:true-label="1"
:false-label="0"
></el-checkbox>
/>
</template>
</el-table-column>
<el-table-column label="插入" width="80">
@@ -101,7 +106,7 @@
v-model="row.isInsert"
:true-label="1"
:false-label="0"
></el-checkbox>
/>
</template>
</el-table-column>
<el-table-column label="编辑" width="80">
@@ -110,7 +115,7 @@
v-model="row.isEdit"
:true-label="1"
:false-label="0"
></el-checkbox>
/>
</template>
</el-table-column>
<el-table-column label="列表" width="80">
@@ -119,7 +124,7 @@
v-model="row.isList"
:true-label="1"
:false-label="0"
></el-checkbox>
/>
</template>
</el-table-column>
<el-table-column label="查询" width="80">
@@ -128,7 +133,7 @@
v-model="row.isQuery"
:true-label="1"
:false-label="0"
></el-checkbox>
/>
</template>
</el-table-column>
<el-table-column label="查询方式">
@@ -198,6 +203,7 @@
<el-input
v-model="formData.gen.moduleName"
placeholder="请输入模块名"
clearable
/>
<div class="form-tips">生成文件所在模块名</div>
</div>
@@ -207,6 +213,7 @@
<el-input
v-model="formData.gen.functionName"
placeholder="请输入功能名称"
clearable
/>
</div>
</el-form-item>
@@ -225,6 +232,7 @@
<el-input
v-model="formData.gen.genPath"
placeholder="请输入自定义路径"
clearable
/>
</div>
</el-form-item>