43 lines
1.3 KiB
TypeScript
43 lines
1.3 KiB
TypeScript
import {BasicColumn} from '/@/components/Table';
|
|
import {FormSchema} from '/@/components/Table';
|
|
import { rules} from '/@/utils/helper/validator';
|
|
import { render } from '/@/utils/common/renderUtils';
|
|
import { getWeekMonthQuarterYear } from '/@/utils';
|
|
//列表数据
|
|
export const columns: BasicColumn[] = [
|
|
{
|
|
title: '分类标签名称',
|
|
align: "center",
|
|
dataIndex: 'instructionTagName'
|
|
},
|
|
{
|
|
title: '服务类别名称',
|
|
align: "center",
|
|
dataIndex: 'categoryName'
|
|
},
|
|
{
|
|
title: '服务类型名称',
|
|
align: "center",
|
|
dataIndex: 'typeName'
|
|
},
|
|
{
|
|
title: '服务指令名称',
|
|
align: "center",
|
|
dataIndex: 'directiveName'
|
|
},
|
|
// {
|
|
// title: '周期类型',
|
|
// align: "center",
|
|
// dataIndex: 'cycleType_dictText'
|
|
// },
|
|
];
|
|
|
|
// 高级查询数据
|
|
export const superQuerySchema = {
|
|
instructionTagName: {title: '分类标签名称',order: 0,view: 'text', type: 'string',},
|
|
categoryName: {title: '服务类别名称',order: 1,view: 'text', type: 'string',},
|
|
typeName: {title: '服务类型名称',order: 2,view: 'text', type: 'string',},
|
|
directiveName: {title: '服务指令名称',order: 3,view: 'text', type: 'string',},
|
|
cycleType: {title: '周期类型 1日常护理 2周期护理 3即时护理',order: 6,view: 'text', type: 'string',},
|
|
};
|