@cainiaofe/cn-ui-m
Version:
19 lines (18 loc) • 725 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: "\u591A\u9009" },
React.createElement(CnDemoBlock, { title: "\u591A\u9009" },
React.createElement(CnSelector, { dataSource: options, mode: "multiple", defaultValue: ['UNAPPRAISED', 'ALL'] }))));
};
export default { title: 'demo/CnSelector' };