import {BasicColumn} from '/src/components/Table'; import {FormSchema} from '/src/components/Table'; import { rules} from '/src/utils/helper/validator'; import { render } from '/src/utils/common/renderUtils'; import { getWeekMonthQuarterYear } from '/src/utils'; import { getAudioBuildStatus } from './AppletArticle.api'; //列表数据 export const columns: BasicColumn[] = [ { title: '标题', align:"center", dataIndex: 'title' }, { title: '排序', align:"center", dataIndex: 'sort' }, { title: '上架', align:"center", dataIndex: 'status', customRender:({text}) => { return render.renderSwitch(text, [{text:'是',value:'Y'},{text:'否',value:'N'}]) }, }, { title: '音频构建状态', align:"center", dataIndex: 'contentHashcode', }, ]; //查询数据 export const searchFormSchema: FormSchema[] = [ ]; //表单数据 export const formSchema: FormSchema[] = [ { label: '标题', field: 'title', component: 'Input', }, { label: '排序', field: 'sort', component: 'InputNumber', }, { label: '上架', field: 'status', component: 'JSwitch', componentProps:{ }, }, { label: '内容', field: 'content', component: 'JEditor', }, // TODO 主键隐藏字段,目前写死为ID { label: '', field: 'id', component: 'Input', show: false }, ]; // 高级查询数据 export const superQuerySchema = { title: {title: '标题',order: 0,view: 'text', type: 'string',}, sort: {title: '排序',order: 1,view: 'number', type: 'number',}, status: {title: '上架',order: 2,view: 'switch', type: 'string',}, }; /** * 流程表单调用这个方法获取formSchema * @param param */ export function getBpmFormSchema(_formData): FormSchema[]{ // 默认和原始表单保持一致 如果流程中配置了权限数据,这里需要单独处理formSchema return formSchema; }