Commit c6def1d2 authored by 罗林杰's avatar 罗林杰

修改血缘

parent 8e044c3d
...@@ -69,7 +69,7 @@ export const storageManagementColumns: BasicColumn[] = [ ...@@ -69,7 +69,7 @@ export const storageManagementColumns: BasicColumn[] = [
width: 120, width: 120,
}, },
{ {
title: '清理血缘关系', title: '清理血缘关系',
dataIndex: 'num', dataIndex: 'num',
width: 120, width: 120,
}, },
......
import {FormSchema} from "@/components/Form";
import {BasicColumn} from "@/components/Table";
export const formSchema: FormSchema[] = [
{
field: 'file',
component: 'Upload',
label: '血缘编辑文件',
colProps: { lg: 24, md: 24 },
rules: [{ required: true, message: '请选择上传文件' }],
},
];
export const columns: BasicColumn[] = [
{
title: '工作表名',
dataIndex: 'name',
width: 120,
},
{
title: '编号',
dataIndex: 'code',
width: 120,
},
{
title: '错误类型',
dataIndex: 'type',
width: 120,
},
];
export const historyColumns: BasicColumn[] = [
{
title: '用户',
dataIndex: 'name',
width: 120,
},
{
title: '编辑时间',
dataIndex: 'date',
width: 120,
},
{
title: '上传文件',
dataIndex: 'fileName',
width: 120,
},
{
title: '编辑结果',
dataIndex: 'type',
width: 120,
},
];
export const SearchFormSchema: FormSchema[] = [
{
field: 'name',
label: '名称',
component: 'Input',
colProps: { span: 8 },
},
{
field: 'isKinship',
component: 'Checkbox',
label: '仅显示我上传的',
colProps: { span: 8 },
labelWidth: 120,
},
];
This diff is collapsed.
export const editData: any[] = [
{
name: 'Sheet0',
code: 'C2',
type: '数据源不存在',
},
{
name: 'Sheet1',
code: 'C3',
type: '数据源不存在',
},
{
name: 'Sheet2',
code: 'C4',
type: '数据源不存在',
},
{
name: 'Sheet3',
code: 'C5',
type: '数据源不存在',
},
{
name: 'Sheet4',
code: 'C6',
type: '数据源不存在',
},
{
name: 'Sheet5',
code: 'C7',
type: '数据源不存在',
},
{
name: 'Sheet6',
code: 'C8',
type: '数据源不存在',
},
];
export const historyData: any[] = [
{
name: 'admin',
date: '2022-01-01 12:00:00',
fileName: 'test.xlsx',
type: '1',
},
{
name: 'admin',
date: '2022-01-01 12:00:00',
fileName: 'test.xlsx',
type: '0',
},
{
name: 'admin',
date: '2022-01-01 12:00:00',
fileName: 'test.xlsx',
type: '1',
},
{
name: 'admin',
date: '2022-01-01 12:00:00',
fileName: 'test.xlsx',
type: '0',
},
];
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment