初始化项目

This commit is contained in:
2026-03-21 14:08:27 +08:00
parent 205e09ecd8
commit d4a00dd5c2
27 changed files with 2274 additions and 3 deletions

View File

@@ -0,0 +1,106 @@
import { useI18n } from '@jeesite/core/hooks/web/useI18n';
import { BasicColumn, BasicTableProps, FormProps } from '@jeesite/core/components/Table';
import { MyProvince, myProvinceListData } from '@jeesite/biz/api/biz/myProvince';
const { t } = useI18n('biz.myProvince');
const modalProps = {
title: t('省份选择'),
};
const searchForm: FormProps<MyProvince> = {
baseColProps: { md: 8, lg: 6 },
labelWidth: 90,
schemas: [
{
label: t('省份名称'),
field: 'provinceName',
component: 'Input',
},
{
label: t('省份编码'),
field: 'provinceCode',
component: 'Input',
},
{
label: t('状态'),
field: 'ustatus',
component: 'Select',
componentProps: {
dictType: 'biz_status',
allowClear: true,
},
},
],
};
const tableColumns: BasicColumn<MyProvince>[] = [
{
title: t('记录时间'),
dataIndex: 'createTime',
key: 'a.create_time',
sorter: true,
width: 150,
align: 'left',
},
{
title: t('省份名称'),
dataIndex: 'provinceName',
key: 'a.province_name',
sorter: true,
width: 130,
align: 'left',
},
{
title: t('省份编码'),
dataIndex: 'provinceCode',
key: 'a.province_code',
sorter: true,
width: 130,
align: 'left',
},
{
title: t('省份序号'),
dataIndex: 'sorting',
key: 'a.sorting',
sorter: true,
width: 130,
align: 'center',
},
{
title: t('状态'),
dataIndex: 'ustatus',
key: 'a.ustatus',
sorter: true,
width: 130,
align: 'center',
dictType: 'biz_status',
},
{
title: t('更新时间'),
dataIndex: 'updateTime',
key: 'a.update_time',
sorter: true,
width: 150,
align: 'center',
},
];
const tableProps: BasicTableProps = {
api: myProvinceListData,
beforeFetch: (params) => {
params['isAll'] = true;
return params;
},
columns: tableColumns,
formConfig: searchForm,
rowKey: 'provinceCode',
};
export default {
modalProps,
tableProps,
itemCode: 'provinceCode',
itemName: 'provinceName',
isShowCode: true,
};