初版代码’

This commit is contained in:
2025-06-19 09:50:46 +08:00
parent 06a0e3649d
commit d980195302
20 changed files with 470 additions and 163 deletions

View File

@@ -69,6 +69,76 @@ export const querySchema: FormSchemaGetter = () => [
fieldName: 'cqbh',
label: '产权编号',
},
{
component: 'Input',
fieldName: 'tdbh',
label: '图地编号',
},
{
component: 'Input',
fieldName: 'jzmj',
label: '建筑面积',
},
{
component: 'Input',
fieldName: 'cqmj',
label: '产权面积',
},
{
component: 'Input',
fieldName: 'kzmj',
label: '可租面积',
},
{
component: 'Input',
fieldName: 'zymj',
label: '自用面积',
},
{
component: 'Input',
fieldName: 'ptmj',
label: '配套面积',
},
{
component: 'Input',
fieldName: 'cwmj',
label: '车位面积',
},
{
component: 'Input',
fieldName: 'bzcg',
label: '标准层高',
},
{
component: 'Input',
fieldName: 'sort',
label: '排序字段',
},
{
component: 'Input',
fieldName: 'orgCode',
label: '组织编码',
},
{
component: 'Input',
fieldName: 'dataState',
label: '数据状态1有效0无效',
},
{
component: 'DatePicker',
componentProps: {
showTime: true,
format: 'YYYY-MM-DD HH:mm:ss',
valueFormat: 'YYYY-MM-DD HH:mm:ss',
},
fieldName: 'modifyTime',
label: '修改时间',
},
{
component: 'Input',
fieldName: 'searchValue',
label: '搜索值',
},
];
// 需要使用i18n注意这里要改成getter形式 否则切换语言不会刷新
@@ -76,7 +146,7 @@ export const querySchema: FormSchemaGetter = () => [
export const columns: VxeGridProps['columns'] = [
{ type: 'checkbox', width: 60 },
{
title: 'id',
title: '',
field: 'id',
},
{
@@ -167,12 +237,24 @@ export const columns: VxeGridProps['columns'] = [
},
{
title: '排序字段',
field: 'order',
field: 'sort',
},
{
title: '组织编码',
field: 'orgCode',
},
{
title: '数据状态1有效0无效',
field: 'dataState',
},
{
title: '修改时间',
field: 'modifyTime',
},
{
title: '搜索值',
field: 'searchValue',
},
{
field: 'action',
fixed: 'right',
@@ -184,7 +266,7 @@ export const columns: VxeGridProps['columns'] = [
export const modalSchema: FormSchemaGetter = () => [
{
label: 'id',
label: '',
fieldName: 'id',
component: 'Input',
dependencies: {
@@ -318,9 +400,8 @@ export const modalSchema: FormSchemaGetter = () => [
},
{
label: '排序字段',
fieldName: 'order',
fieldName: 'sort',
component: 'Input',
rules: 'required',
},
{
label: '组织编码',
@@ -328,4 +409,24 @@ export const modalSchema: FormSchemaGetter = () => [
component: 'Input',
rules: 'required',
},
{
label: '数据状态1有效0无效',
fieldName: 'dataState',
component: 'Input',
},
{
label: '修改时间',
fieldName: 'modifyTime',
component: 'DatePicker',
componentProps: {
showTime: true,
format: 'YYYY-MM-DD HH:mm:ss',
valueFormat: 'YYYY-MM-DD HH:mm:ss',
},
},
{
label: '搜索值',
fieldName: 'searchValue',
component: 'Input',
},
];