@@ -218,6 +218,8 @@ export const columns: BasicColumn[] = [
style: { width: '65%' },
onChange: onFilesChange,
});
+ case 'custom':
+ return h('p', {}, record.value);
}
},
@@ -304,10 +306,10 @@ export const schemas: FormSchema[] = [
label: '数组',
value: 'array',
- // {
- // label: '自定义',
- // value: 'custom',
- // },
+ {
+ label: '自定义',
+ value: 'custom',
+ },
],