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: 'fileName' }, { title: '文件地址', align:"center", dataIndex: 'fileAddress' }, { title: '文件id', align:"center", dataIndex: 'fileId' }, ]; //查询数据 export const searchFormSchema: FormSchema[] = [ ]; //表单数据 export const formSchema: FormSchema[] = [ { label: '文件名称', field: 'fileName', component: 'Input', }, { label: '文件地址', field: 'fileAddress', component: 'Input', }, { label: '文件id', field: 'fileId', component: 'Input', }, // TODO 主键隐藏字段,目前写死为ID { label: '', field: 'id', component: 'Input', show: false }, ]; // 高级查询数据 export const superQuerySchema = { fileName: {title: '文件名称',order: 0,view: 'text', type: 'string',}, fileAddress: {title: '文件地址',order: 1,view: 'text', type: 'string',}, fileId: {title: '文件id',order: 2,view: 'text', type: 'string',}, }; /** * 流程表单调用这个方法获取formSchema * @param param */ export function getBpmFormSchema(_formData): FormSchema[]{ // 默认和原始表单保持一致 如果流程中配置了权限数据,这里需要单独处理formSchema return formSchema; }