78 lines
1.5 KiB
JavaScript
78 lines
1.5 KiB
JavaScript
const ux = {
|
|
name: '反馈',
|
|
icon: 'chat',
|
|
childArr: [
|
|
{
|
|
name: 'ActionSheet',
|
|
label: '动作面板',
|
|
},
|
|
{
|
|
name: 'Dialog',
|
|
label: '对话框',
|
|
},
|
|
{
|
|
name: 'DropdownMenu',
|
|
label: '下拉菜单',
|
|
},
|
|
{
|
|
name: 'Guide',
|
|
label: '引导',
|
|
},
|
|
{
|
|
name: 'Loading',
|
|
label: '加载',
|
|
},
|
|
{
|
|
name: 'Message',
|
|
label: '消息通知',
|
|
},
|
|
{
|
|
name: 'NoticeBar',
|
|
label: '公告栏',
|
|
},
|
|
{
|
|
name: 'Overlay',
|
|
label: '遮罩层',
|
|
},
|
|
{
|
|
name: 'Popup',
|
|
label: '弹出层',
|
|
},
|
|
{
|
|
name: 'PullDownRefresh',
|
|
label: '下拉刷新',
|
|
},
|
|
{
|
|
name: 'SwipeCell',
|
|
label: '滑动操作',
|
|
},
|
|
{
|
|
name: 'Toast',
|
|
label: '轻提示',
|
|
},
|
|
],
|
|
};
|
|
const skylineUx = {
|
|
name: '反馈',
|
|
icon: 'chat',
|
|
childArr: [
|
|
{
|
|
name: 'Overlay',
|
|
label: '遮罩层',
|
|
},
|
|
{
|
|
name: 'Popup',
|
|
label: '弹出层',
|
|
},
|
|
{
|
|
name: 'Loading',
|
|
label: '加载',
|
|
},
|
|
{
|
|
name: 'Toast',
|
|
label: '轻提示',
|
|
},
|
|
],
|
|
};
|
|
export { ux, skylineUx };
|