33 lines
842 B
TypeScript
33 lines
842 B
TypeScript
import {BasicColumn} from '/@/components/Table';
|
|
//列表数据
|
|
export const columns: BasicColumn[] = [
|
|
{
|
|
title: '服务指令包名称',
|
|
align: "center",
|
|
dataIndex: 'packageName'
|
|
},
|
|
{
|
|
title: '备注',
|
|
align: "center",
|
|
dataIndex: 'description'
|
|
},
|
|
{
|
|
title: '排序',
|
|
align: "center",
|
|
dataIndex: 'sort'
|
|
},
|
|
{
|
|
title: '是否启用',
|
|
align: "center",
|
|
dataIndex: 'izEnabled_dictText'
|
|
},
|
|
];
|
|
|
|
// 高级查询数据
|
|
export const superQuerySchema = {
|
|
packageName: {title: '服务指令包名称',order: 0,view: 'text', type: 'string',},
|
|
description: {title: '备注',order: 1,view: 'textarea', type: 'string',},
|
|
sort: {title: '排序',order: 2,view: 'number', type: 'number',},
|
|
izEnabled: {title: '是否启用',order: 3,view: 'radio', type: 'string',dictCode: 'iz_enabled',},
|
|
};
|