@cainiaofe/cn-ui-m
Version:
21 lines (20 loc) • 865 B
JavaScript
import * as React from 'react';
import { CnDemoBlock, CnDemoPage, CnSelector } from "../../..";
var options = [
{ label: '全部工单', value: 'ALL' },
{ label: '处理中', value: 'PROCESSING' },
{
label: '待评价',
value: 'UNAPPRAISED',
},
{ label: '已评价', value: 'APPRAISED' },
{ label: '已取消', value: 'CANCELED' },
];
export var 列布局 = function () {
return (React.createElement(CnDemoPage, { title: "\u5217\u5E03\u5C40" },
React.createElement(CnDemoBlock, { title: "\u4E24\u5217\u5E03\u5C40" },
React.createElement(CnSelector, { dataSource: options, columns: 2 })),
React.createElement(CnDemoBlock, { title: "\u4E09\u5217\u5E03\u5C40" },
React.createElement(CnSelector, { dataSource: options, columns: 3 }))));
};
export default { title: 'demo/CnSelector' };