vxe-pc-ui 4.8.13 → 4.8.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -4
- package/es/components.js +2 -1
- package/es/icon/style.css +1 -1
- package/es/split/style.css +27 -33
- package/es/split/style.min.css +1 -1
- package/es/style.css +1 -1
- package/es/style.min.css +1 -1
- package/es/ui/index.js +1 -1
- package/es/ui/src/log.js +1 -1
- package/es/vxe-split/style.css +27 -33
- package/es/vxe-split/style.min.css +1 -1
- package/lib/components.js +22 -17
- package/lib/components.min.js +1 -1
- package/lib/icon/style/style.css +1 -1
- package/lib/icon/style/style.min.css +1 -1
- package/lib/index.umd.js +983 -977
- package/lib/index.umd.min.js +1 -1
- package/lib/split/style/style.css +27 -33
- package/lib/split/style/style.min.css +1 -1
- package/lib/style.css +1 -1
- package/lib/style.min.css +1 -1
- package/lib/ui/index.js +1 -1
- package/lib/ui/index.min.js +1 -1
- package/lib/ui/src/log.js +1 -1
- package/lib/ui/src/log.min.js +1 -1
- package/lib/vxe-split/style/style.css +27 -33
- package/lib/vxe-split/style/style.min.css +1 -1
- package/package.json +1 -1
- package/packages/components.ts +5 -1
- package/styles/components/split.scss +25 -42
- package/styles/theme/base.scss +4 -2
- package/styles/theme/dark.scss +2 -1
- package/styles/theme/light.scss +2 -1
- package/styles/variable.scss +2 -1
- package/types/components/gantt-module/gantt-view.d.ts +5 -1
- package/types/components/gantt.d.ts +105 -16
- package/types/components/grid.d.ts +5 -4
- package/types/components/table.d.ts +9 -6
- package/types/ui/global-icon.d.ts +6 -0
- /package/es/icon/{iconfont.1754905375075.ttf → iconfont.1755086649730.ttf} +0 -0
- /package/es/icon/{iconfont.1754905375075.woff → iconfont.1755086649730.woff} +0 -0
- /package/es/icon/{iconfont.1754905375075.woff2 → iconfont.1755086649730.woff2} +0 -0
- /package/es/{iconfont.1754905375075.ttf → iconfont.1755086649730.ttf} +0 -0
- /package/es/{iconfont.1754905375075.woff → iconfont.1755086649730.woff} +0 -0
- /package/es/{iconfont.1754905375075.woff2 → iconfont.1755086649730.woff2} +0 -0
- /package/lib/icon/style/{iconfont.1754905375075.ttf → iconfont.1755086649730.ttf} +0 -0
- /package/lib/icon/style/{iconfont.1754905375075.woff → iconfont.1755086649730.woff} +0 -0
- /package/lib/icon/style/{iconfont.1754905375075.woff2 → iconfont.1755086649730.woff2} +0 -0
- /package/lib/{iconfont.1754905375075.ttf → iconfont.1755086649730.ttf} +0 -0
- /package/lib/{iconfont.1754905375075.woff → iconfont.1755086649730.woff} +0 -0
- /package/lib/{iconfont.1754905375075.woff2 → iconfont.1755086649730.woff2} +0 -0
package/lib/index.umd.js
CHANGED
|
@@ -3515,6 +3515,652 @@ setTheme();
|
|
|
3515
3515
|
|
|
3516
3516
|
|
|
3517
3517
|
/* harmony default export */ var es_index_esm = ((/* unused pure expression or super */ null && (index_esm_VxeUI)));
|
|
3518
|
+
;// CONCATENATED MODULE: ./packages/ui/src/comp.ts
|
|
3519
|
+
|
|
3520
|
+
const defineVxeComponent = external_commonjs_vue_commonjs2_vue_root_Vue_.defineComponent;
|
|
3521
|
+
;// CONCATENATED MODULE: ./packages/dynamics/index.ts
|
|
3522
|
+
|
|
3523
|
+
|
|
3524
|
+
|
|
3525
|
+
let dynamicContainerElem;
|
|
3526
|
+
const dynamicStore = (0,external_commonjs_vue_commonjs2_vue_root_Vue_.reactive)({
|
|
3527
|
+
modals: [],
|
|
3528
|
+
drawers: [],
|
|
3529
|
+
globalLoading: null,
|
|
3530
|
+
globalWatermark: null
|
|
3531
|
+
});
|
|
3532
|
+
/**
|
|
3533
|
+
* 动态组件
|
|
3534
|
+
*/
|
|
3535
|
+
const VxeDynamics = defineVxeComponent({
|
|
3536
|
+
setup() {
|
|
3537
|
+
const VxeUIModalComponent = index_esm_VxeUI.getComponent('vxe-modal');
|
|
3538
|
+
const VxeUIDrawerComponent = index_esm_VxeUI.getComponent('vxe-drawer');
|
|
3539
|
+
const VxeUILoadingComponent = index_esm_VxeUI.getComponent('vxe-loading');
|
|
3540
|
+
const VxeUIWatermarkComponent = index_esm_VxeUI.getComponent('vxe-watermark');
|
|
3541
|
+
return () => {
|
|
3542
|
+
const {
|
|
3543
|
+
modals,
|
|
3544
|
+
drawers,
|
|
3545
|
+
globalWatermark,
|
|
3546
|
+
globalLoading
|
|
3547
|
+
} = dynamicStore;
|
|
3548
|
+
return [modals.length ? (0,external_commonjs_vue_commonjs2_vue_root_Vue_.h)('div', {
|
|
3549
|
+
key: 1,
|
|
3550
|
+
class: 'vxe-dynamics--modal'
|
|
3551
|
+
}, modals.map(item => (0,external_commonjs_vue_commonjs2_vue_root_Vue_.h)(VxeUIModalComponent, item))) : (0,external_commonjs_vue_commonjs2_vue_root_Vue_.createCommentVNode)(), drawers.length ? (0,external_commonjs_vue_commonjs2_vue_root_Vue_.h)('div', {
|
|
3552
|
+
key: 2,
|
|
3553
|
+
class: 'vxe-dynamics--drawer'
|
|
3554
|
+
}, drawers.map(item => (0,external_commonjs_vue_commonjs2_vue_root_Vue_.h)(VxeUIDrawerComponent, item))) : (0,external_commonjs_vue_commonjs2_vue_root_Vue_.createCommentVNode)(), globalWatermark ? (0,external_commonjs_vue_commonjs2_vue_root_Vue_.h)(VxeUIWatermarkComponent, globalWatermark) : (0,external_commonjs_vue_commonjs2_vue_root_Vue_.createCommentVNode)(), globalLoading ? (0,external_commonjs_vue_commonjs2_vue_root_Vue_.h)(VxeUILoadingComponent, globalLoading) : (0,external_commonjs_vue_commonjs2_vue_root_Vue_.createCommentVNode)()];
|
|
3555
|
+
};
|
|
3556
|
+
}
|
|
3557
|
+
});
|
|
3558
|
+
const dynamicApp = (0,external_commonjs_vue_commonjs2_vue_root_Vue_.createApp)(VxeDynamics);
|
|
3559
|
+
function checkDynamic() {
|
|
3560
|
+
if (!dynamicContainerElem) {
|
|
3561
|
+
dynamicContainerElem = document.createElement('div');
|
|
3562
|
+
dynamicContainerElem.className = 'vxe-dynamics';
|
|
3563
|
+
document.body.appendChild(dynamicContainerElem);
|
|
3564
|
+
dynamicApp.mount(dynamicContainerElem);
|
|
3565
|
+
}
|
|
3566
|
+
}
|
|
3567
|
+
;// CONCATENATED MODULE: ./packages/ui/src/log.ts
|
|
3568
|
+
|
|
3569
|
+
const log_version = `ui v${"4.8.15"}`;
|
|
3570
|
+
const warnLog = log.create('warn', log_version);
|
|
3571
|
+
const errLog = log.create('error', log_version);
|
|
3572
|
+
;// CONCATENATED MODULE: ./packages/ui/index.ts
|
|
3573
|
+
|
|
3574
|
+
|
|
3575
|
+
|
|
3576
|
+
const ui_version = "4.8.15";
|
|
3577
|
+
index_esm_VxeUI.uiVersion = ui_version;
|
|
3578
|
+
index_esm_VxeUI.dynamicApp = dynamicApp;
|
|
3579
|
+
function config(options) {
|
|
3580
|
+
warnLog('vxe.error.delFunc', ['config', 'setConfig']);
|
|
3581
|
+
return setConfig(options);
|
|
3582
|
+
}
|
|
3583
|
+
function setup(options) {
|
|
3584
|
+
warnLog('vxe.error.delFunc', ['setup', 'setConfig']);
|
|
3585
|
+
return setConfig(options);
|
|
3586
|
+
}
|
|
3587
|
+
index_esm_VxeUI.config = config;
|
|
3588
|
+
index_esm_VxeUI.setup = setup;
|
|
3589
|
+
setConfig({
|
|
3590
|
+
alert: {},
|
|
3591
|
+
anchor: {},
|
|
3592
|
+
anchorLink: {},
|
|
3593
|
+
avatar: {},
|
|
3594
|
+
badge: {},
|
|
3595
|
+
breadcrumb: {
|
|
3596
|
+
separator: '/'
|
|
3597
|
+
},
|
|
3598
|
+
breadcrumbItem: {},
|
|
3599
|
+
button: {
|
|
3600
|
+
trigger: 'hover',
|
|
3601
|
+
prefixTooltip: {
|
|
3602
|
+
enterable: true
|
|
3603
|
+
},
|
|
3604
|
+
suffixTooltip: {
|
|
3605
|
+
enterable: true
|
|
3606
|
+
}
|
|
3607
|
+
},
|
|
3608
|
+
buttonGroup: {},
|
|
3609
|
+
calendar: {
|
|
3610
|
+
minDate: new Date(1900, 0, 1),
|
|
3611
|
+
maxDate: new Date(2100, 0, 1),
|
|
3612
|
+
startDay: 1,
|
|
3613
|
+
selectDay: 1
|
|
3614
|
+
},
|
|
3615
|
+
card: {
|
|
3616
|
+
border: true,
|
|
3617
|
+
padding: true
|
|
3618
|
+
},
|
|
3619
|
+
carousel: {
|
|
3620
|
+
height: 200,
|
|
3621
|
+
loop: true,
|
|
3622
|
+
interval: 5000
|
|
3623
|
+
},
|
|
3624
|
+
carouselItem: {},
|
|
3625
|
+
checkbox: {},
|
|
3626
|
+
checkboxButton: {},
|
|
3627
|
+
checkboxGroup: {},
|
|
3628
|
+
col: {},
|
|
3629
|
+
collapse: {
|
|
3630
|
+
padding: true,
|
|
3631
|
+
expandConfig: {
|
|
3632
|
+
showIcon: true
|
|
3633
|
+
}
|
|
3634
|
+
},
|
|
3635
|
+
collapsePane: {},
|
|
3636
|
+
countdown: {},
|
|
3637
|
+
colorPicker: {
|
|
3638
|
+
type: 'rgb',
|
|
3639
|
+
clearable: true,
|
|
3640
|
+
showAlpha: true,
|
|
3641
|
+
clickToCopy: true,
|
|
3642
|
+
showColorExtractor: true,
|
|
3643
|
+
showQuick: true
|
|
3644
|
+
},
|
|
3645
|
+
datePanel: {
|
|
3646
|
+
// parseFormat: 'yyyy-MM-dd HH:mm:ss.SSS',
|
|
3647
|
+
// labelFormat: '',
|
|
3648
|
+
// valueFormat: '',
|
|
3649
|
+
startDate: new Date(1900, 0, 1),
|
|
3650
|
+
endDate: new Date(2100, 0, 1),
|
|
3651
|
+
startDay: 1,
|
|
3652
|
+
selectDay: 1
|
|
3653
|
+
},
|
|
3654
|
+
datePicker: {
|
|
3655
|
+
// size: null,
|
|
3656
|
+
// transfer: false,
|
|
3657
|
+
shortcutConfig: {
|
|
3658
|
+
// position: 'left',
|
|
3659
|
+
align: 'left',
|
|
3660
|
+
mode: 'text',
|
|
3661
|
+
autoClose: true
|
|
3662
|
+
},
|
|
3663
|
+
startDay: 1,
|
|
3664
|
+
selectDay: 1,
|
|
3665
|
+
autoClose: true,
|
|
3666
|
+
showClearButton: null,
|
|
3667
|
+
showConfirmButton: null
|
|
3668
|
+
},
|
|
3669
|
+
dateRangePicker: {
|
|
3670
|
+
// size: null,
|
|
3671
|
+
// transfer: false,
|
|
3672
|
+
shortcutConfig: {
|
|
3673
|
+
// position: 'left',
|
|
3674
|
+
align: 'left',
|
|
3675
|
+
mode: 'text',
|
|
3676
|
+
autoClose: true
|
|
3677
|
+
},
|
|
3678
|
+
startDay: 1,
|
|
3679
|
+
selectDay: 1,
|
|
3680
|
+
separator: ' ~ ',
|
|
3681
|
+
autoClose: true,
|
|
3682
|
+
showClearButton: null,
|
|
3683
|
+
showConfirmButton: null
|
|
3684
|
+
},
|
|
3685
|
+
drawer: {
|
|
3686
|
+
// size: null,
|
|
3687
|
+
position: 'right',
|
|
3688
|
+
showHeader: true,
|
|
3689
|
+
lockView: true,
|
|
3690
|
+
mask: true,
|
|
3691
|
+
showTitleOverflow: true,
|
|
3692
|
+
showClose: true,
|
|
3693
|
+
padding: true,
|
|
3694
|
+
cancelClosable: true,
|
|
3695
|
+
confirmClosable: true
|
|
3696
|
+
},
|
|
3697
|
+
empty: {},
|
|
3698
|
+
form: {
|
|
3699
|
+
// preventSubmit: false,
|
|
3700
|
+
// size: null,
|
|
3701
|
+
// colon: false,
|
|
3702
|
+
validConfig: {
|
|
3703
|
+
showMessage: true,
|
|
3704
|
+
autoPos: true,
|
|
3705
|
+
theme: 'beautify'
|
|
3706
|
+
},
|
|
3707
|
+
tooltipConfig: {
|
|
3708
|
+
enterable: true
|
|
3709
|
+
},
|
|
3710
|
+
titleAsterisk: true,
|
|
3711
|
+
titleOverflow: false,
|
|
3712
|
+
padding: true
|
|
3713
|
+
},
|
|
3714
|
+
formDesign: {
|
|
3715
|
+
height: 400,
|
|
3716
|
+
showHeader: true,
|
|
3717
|
+
showPc: true
|
|
3718
|
+
},
|
|
3719
|
+
formGather: {},
|
|
3720
|
+
formGroup: {},
|
|
3721
|
+
formItem: {},
|
|
3722
|
+
formView: {},
|
|
3723
|
+
icon: {},
|
|
3724
|
+
iconPicker: {
|
|
3725
|
+
icons: ['home', 'company', 'comment', 'setting', 'send', 'envelope', 'envelope-open', 'bell', 'search', 'print', 'pc', 'goods', 'chart-line', 'edit', 'delete', 'save', 'folder', 'microphone', 'flag', 'link', 'location', 'sunny', 'rmb', 'usd', 'user', 'add-user', 'add-users', 'star', 'unlock', 'time', 'text', 'feedback', 'calendar', 'association-form', 'cloud-download', 'cloud-upload', 'file', 'subtable', 'chart-bar-x', 'chart-bar-y', 'chart-line', 'chart-pie', 'chart-radar']
|
|
3726
|
+
},
|
|
3727
|
+
image: {
|
|
3728
|
+
showPreview: true,
|
|
3729
|
+
showPrintButton: true,
|
|
3730
|
+
maskClosable: true
|
|
3731
|
+
},
|
|
3732
|
+
imageGroup: {
|
|
3733
|
+
showPreview: true,
|
|
3734
|
+
showPrintButton: true
|
|
3735
|
+
},
|
|
3736
|
+
imagePreview: {
|
|
3737
|
+
showPrintButton: true
|
|
3738
|
+
},
|
|
3739
|
+
input: {
|
|
3740
|
+
// size: null,
|
|
3741
|
+
// transfer: false
|
|
3742
|
+
// parseFormat: 'yyyy-MM-dd HH:mm:ss.SSS',
|
|
3743
|
+
// labelFormat: '',
|
|
3744
|
+
// valueFormat: '',
|
|
3745
|
+
startDate: new Date(1900, 0, 1),
|
|
3746
|
+
endDate: new Date(2100, 0, 1),
|
|
3747
|
+
startDay: 1,
|
|
3748
|
+
selectDay: 1,
|
|
3749
|
+
digits: 2,
|
|
3750
|
+
controls: true
|
|
3751
|
+
},
|
|
3752
|
+
layoutAside: {},
|
|
3753
|
+
layoutBody: {},
|
|
3754
|
+
layoutContainer: {},
|
|
3755
|
+
layoutFooter: {},
|
|
3756
|
+
layoutHeader: {},
|
|
3757
|
+
link: {
|
|
3758
|
+
underline: true
|
|
3759
|
+
},
|
|
3760
|
+
listDesign: {
|
|
3761
|
+
height: 400,
|
|
3762
|
+
showPc: true
|
|
3763
|
+
},
|
|
3764
|
+
listView: {},
|
|
3765
|
+
list: {
|
|
3766
|
+
// size: null,
|
|
3767
|
+
virtualYConfig: {
|
|
3768
|
+
enabled: true,
|
|
3769
|
+
gt: 100
|
|
3770
|
+
// oSize: 0
|
|
3771
|
+
}
|
|
3772
|
+
},
|
|
3773
|
+
loading: {
|
|
3774
|
+
showIcon: true,
|
|
3775
|
+
showText: true
|
|
3776
|
+
},
|
|
3777
|
+
menu: {},
|
|
3778
|
+
modal: {
|
|
3779
|
+
// size: null,
|
|
3780
|
+
top: 16,
|
|
3781
|
+
showHeader: true,
|
|
3782
|
+
minWidth: 340,
|
|
3783
|
+
minHeight: 140,
|
|
3784
|
+
lockView: true,
|
|
3785
|
+
mask: true,
|
|
3786
|
+
duration: 3000,
|
|
3787
|
+
marginSize: 0,
|
|
3788
|
+
dblclickZoom: true,
|
|
3789
|
+
showTitleOverflow: true,
|
|
3790
|
+
animat: true,
|
|
3791
|
+
showClose: true,
|
|
3792
|
+
padding: true,
|
|
3793
|
+
draggable: true,
|
|
3794
|
+
showConfirmButton: null,
|
|
3795
|
+
cancelClosable: true,
|
|
3796
|
+
confirmClosable: true,
|
|
3797
|
+
zoomConfig: {
|
|
3798
|
+
minimizeMaxSize: 10,
|
|
3799
|
+
minimizeVerticalOffset: {
|
|
3800
|
+
top: -24,
|
|
3801
|
+
left: 0
|
|
3802
|
+
},
|
|
3803
|
+
minimizeHorizontalOffset: {
|
|
3804
|
+
top: 0,
|
|
3805
|
+
left: 32
|
|
3806
|
+
}
|
|
3807
|
+
},
|
|
3808
|
+
// remember: false,
|
|
3809
|
+
// storage: false,
|
|
3810
|
+
storageKey: 'VXE_MODAL_POSITION'
|
|
3811
|
+
},
|
|
3812
|
+
noticeBar: {},
|
|
3813
|
+
numberInput: {
|
|
3814
|
+
// size: null,
|
|
3815
|
+
// transfer: false
|
|
3816
|
+
digits: 2,
|
|
3817
|
+
autoFill: true,
|
|
3818
|
+
controlConfig: {
|
|
3819
|
+
enabled: true,
|
|
3820
|
+
layout: 'right',
|
|
3821
|
+
showButton: true,
|
|
3822
|
+
isWheel: true,
|
|
3823
|
+
isArrow: true
|
|
3824
|
+
}
|
|
3825
|
+
},
|
|
3826
|
+
optgroup: {},
|
|
3827
|
+
option: {},
|
|
3828
|
+
pager: {
|
|
3829
|
+
pageSizePlacement: 'top'
|
|
3830
|
+
// size: null,
|
|
3831
|
+
// autoHidden: false,
|
|
3832
|
+
// perfect: true,
|
|
3833
|
+
// pageSize: 10,
|
|
3834
|
+
// pagerCount: 7,
|
|
3835
|
+
// pageSizes: [10, 15, 20, 50, 100],
|
|
3836
|
+
// layouts: ['PrevJump', 'PrevPage', 'Jump', 'PageCount', 'NextPage', 'NextJump', 'Sizes', 'Total']
|
|
3837
|
+
},
|
|
3838
|
+
print: {
|
|
3839
|
+
pageStyle: {}
|
|
3840
|
+
},
|
|
3841
|
+
passwordInput: {
|
|
3842
|
+
controls: true
|
|
3843
|
+
},
|
|
3844
|
+
printPageBreak: {},
|
|
3845
|
+
pulldown: {
|
|
3846
|
+
destroyOnClose: true
|
|
3847
|
+
},
|
|
3848
|
+
radio: {
|
|
3849
|
+
strict: true
|
|
3850
|
+
},
|
|
3851
|
+
radioButton: {
|
|
3852
|
+
strict: true
|
|
3853
|
+
},
|
|
3854
|
+
radioGroup: {
|
|
3855
|
+
strict: true
|
|
3856
|
+
},
|
|
3857
|
+
rate: {},
|
|
3858
|
+
result: {},
|
|
3859
|
+
row: {},
|
|
3860
|
+
select: {
|
|
3861
|
+
multiCharOverflow: 8,
|
|
3862
|
+
remoteConfig: {
|
|
3863
|
+
enabled: true,
|
|
3864
|
+
autoLoad: true
|
|
3865
|
+
},
|
|
3866
|
+
virtualYConfig: {
|
|
3867
|
+
enabled: true,
|
|
3868
|
+
gt: 50,
|
|
3869
|
+
oSize: 2
|
|
3870
|
+
}
|
|
3871
|
+
},
|
|
3872
|
+
split: {
|
|
3873
|
+
resize: true,
|
|
3874
|
+
itemConfig: {
|
|
3875
|
+
minWidth: 40,
|
|
3876
|
+
minHeight: 40
|
|
3877
|
+
}
|
|
3878
|
+
},
|
|
3879
|
+
splitPane: {},
|
|
3880
|
+
slider: {
|
|
3881
|
+
max: 100,
|
|
3882
|
+
min: 0
|
|
3883
|
+
},
|
|
3884
|
+
steps: {},
|
|
3885
|
+
switch: {},
|
|
3886
|
+
tabPane: {},
|
|
3887
|
+
tableSelect: {
|
|
3888
|
+
gridConfig: {
|
|
3889
|
+
showOverflow: true,
|
|
3890
|
+
showHeaderOverflow: true,
|
|
3891
|
+
showFooterOverflow: true,
|
|
3892
|
+
rowConfig: {
|
|
3893
|
+
isHover: true
|
|
3894
|
+
},
|
|
3895
|
+
virtualXConfig: {
|
|
3896
|
+
enabled: true,
|
|
3897
|
+
gt: 0
|
|
3898
|
+
},
|
|
3899
|
+
virtualYConfig: {
|
|
3900
|
+
enabled: true,
|
|
3901
|
+
gt: 0
|
|
3902
|
+
}
|
|
3903
|
+
}
|
|
3904
|
+
},
|
|
3905
|
+
tabs: {},
|
|
3906
|
+
tag: {},
|
|
3907
|
+
textEllipsis: {
|
|
3908
|
+
underline: true
|
|
3909
|
+
},
|
|
3910
|
+
text: {},
|
|
3911
|
+
textarea: {
|
|
3912
|
+
resize: 'none'
|
|
3913
|
+
},
|
|
3914
|
+
tip: {},
|
|
3915
|
+
tooltip: {
|
|
3916
|
+
// size: null,
|
|
3917
|
+
// enterable: false,
|
|
3918
|
+
trigger: 'hover',
|
|
3919
|
+
theme: 'dark',
|
|
3920
|
+
enterDelay: 500,
|
|
3921
|
+
leaveDelay: 300,
|
|
3922
|
+
isArrow: true
|
|
3923
|
+
},
|
|
3924
|
+
tree: {
|
|
3925
|
+
// autoResize: false,
|
|
3926
|
+
indent: 20,
|
|
3927
|
+
minHeight: 60,
|
|
3928
|
+
radioConfig: {
|
|
3929
|
+
strict: true
|
|
3930
|
+
},
|
|
3931
|
+
virtualYConfig: {
|
|
3932
|
+
enabled: true,
|
|
3933
|
+
gt: 50,
|
|
3934
|
+
oSize: 2
|
|
3935
|
+
}
|
|
3936
|
+
},
|
|
3937
|
+
treeSelect: {
|
|
3938
|
+
autoClose: true,
|
|
3939
|
+
virtualYConfig: {
|
|
3940
|
+
enabled: true,
|
|
3941
|
+
gt: 0,
|
|
3942
|
+
oSize: 2
|
|
3943
|
+
},
|
|
3944
|
+
treeConfig: {
|
|
3945
|
+
maxHeight: 300,
|
|
3946
|
+
radioConfig: {},
|
|
3947
|
+
checkboxConfig: {},
|
|
3948
|
+
filterConfig: {
|
|
3949
|
+
autoExpandAll: true
|
|
3950
|
+
}
|
|
3951
|
+
}
|
|
3952
|
+
},
|
|
3953
|
+
upload: {
|
|
3954
|
+
mode: 'all',
|
|
3955
|
+
imageTypes: ['jpg', 'jpeg', 'png', 'gif'],
|
|
3956
|
+
showList: true,
|
|
3957
|
+
showUploadButton: true,
|
|
3958
|
+
showButtonText: true,
|
|
3959
|
+
showRemoveButton: true,
|
|
3960
|
+
showButtonIcon: true,
|
|
3961
|
+
showPreview: true,
|
|
3962
|
+
dragToUpload: true,
|
|
3963
|
+
// imageConfig: {},
|
|
3964
|
+
showLimitSize: true,
|
|
3965
|
+
showLimitCount: true,
|
|
3966
|
+
autoSubmit: true,
|
|
3967
|
+
maxSimultaneousUploads: 5
|
|
3968
|
+
},
|
|
3969
|
+
watermark: {
|
|
3970
|
+
rotate: -30,
|
|
3971
|
+
gap: [100, 100]
|
|
3972
|
+
},
|
|
3973
|
+
table: {},
|
|
3974
|
+
colgroup: {},
|
|
3975
|
+
column: {},
|
|
3976
|
+
toolbar: {},
|
|
3977
|
+
grid: {},
|
|
3978
|
+
gantt: {}
|
|
3979
|
+
});
|
|
3980
|
+
const iconPrefix = 'vxe-icon-';
|
|
3981
|
+
setIcon({
|
|
3982
|
+
// loading
|
|
3983
|
+
LOADING: iconPrefix + 'spinner roll vxe-loading--default-icon',
|
|
3984
|
+
// button
|
|
3985
|
+
BUTTON_DROPDOWN: iconPrefix + 'arrow-down',
|
|
3986
|
+
BUTTON_LOADING: iconPrefix + 'spinner roll',
|
|
3987
|
+
BUTTON_TOOLTIP_ICON: iconPrefix + 'question-circle-fill',
|
|
3988
|
+
// menu
|
|
3989
|
+
MENU_ITEM_EXPAND_OPEN: iconPrefix + 'arrow-down rotate180',
|
|
3990
|
+
MENU_ITEM_EXPAND_CLOSE: iconPrefix + 'arrow-down',
|
|
3991
|
+
// select
|
|
3992
|
+
SELECT_LOADED: iconPrefix + 'spinner roll',
|
|
3993
|
+
SELECT_OPEN: iconPrefix + 'caret-down rotate180',
|
|
3994
|
+
SELECT_CLOSE: iconPrefix + 'caret-down',
|
|
3995
|
+
SELECT_ADD_OPTION: iconPrefix + 'add',
|
|
3996
|
+
// icon-picker
|
|
3997
|
+
ICON_PICKER_OPEN: iconPrefix + 'caret-down rotate180',
|
|
3998
|
+
ICON_PICKER_CLOSE: iconPrefix + 'caret-down',
|
|
3999
|
+
// pager
|
|
4000
|
+
PAGER_HOME: iconPrefix + 'home-page',
|
|
4001
|
+
PAGER_END: iconPrefix + 'end-page',
|
|
4002
|
+
PAGER_JUMP_PREV: iconPrefix + 'arrow-double-left',
|
|
4003
|
+
PAGER_JUMP_NEXT: iconPrefix + 'arrow-double-right',
|
|
4004
|
+
PAGER_PREV_PAGE: iconPrefix + 'arrow-left',
|
|
4005
|
+
PAGER_NEXT_PAGE: iconPrefix + 'arrow-right',
|
|
4006
|
+
PAGER_JUMP_MORE: iconPrefix + 'ellipsis-h',
|
|
4007
|
+
// radio
|
|
4008
|
+
RADIO_CHECKED: iconPrefix + 'radio-checked-fill',
|
|
4009
|
+
RADIO_UNCHECKED: iconPrefix + 'radio-unchecked',
|
|
4010
|
+
RADIO_DISABLED_UNCHECKED: iconPrefix + 'radio-unchecked-fill',
|
|
4011
|
+
// checkbox
|
|
4012
|
+
CHECKBOX_INDETERMINATE: iconPrefix + 'checkbox-indeterminate-fill',
|
|
4013
|
+
CHECKBOX_CHECKED: iconPrefix + 'checkbox-checked-fill',
|
|
4014
|
+
CHECKBOX_UNCHECKED: iconPrefix + 'checkbox-unchecked',
|
|
4015
|
+
CHECKBOX_DISABLED_UNCHECKED: iconPrefix + 'checkbox-unchecked-fill',
|
|
4016
|
+
// input
|
|
4017
|
+
INPUT_CLEAR: iconPrefix + 'error-circle-fill',
|
|
4018
|
+
INPUT_SEARCH: iconPrefix + 'search',
|
|
4019
|
+
INPUT_PLUS_NUM: iconPrefix + 'caret-up',
|
|
4020
|
+
INPUT_MINUS_NUM: iconPrefix + 'caret-down',
|
|
4021
|
+
// number-picker
|
|
4022
|
+
NUMBER_INPUT_MINUS_NUM: iconPrefix + 'minus',
|
|
4023
|
+
NUMBER_INPUT_PLUS_NUM: iconPrefix + 'add',
|
|
4024
|
+
// date-picker
|
|
4025
|
+
DATE_PICKER_DATE: iconPrefix + 'calendar',
|
|
4026
|
+
// password-input
|
|
4027
|
+
PASSWORD_INPUT_SHOW_PWD: iconPrefix + 'eye-fill-close',
|
|
4028
|
+
PASSWORD_INPUT_HIDE_PWD: iconPrefix + 'eye-fill',
|
|
4029
|
+
// modal
|
|
4030
|
+
MODAL_ZOOM_MIN: iconPrefix + 'minus',
|
|
4031
|
+
MODAL_ZOOM_REVERT: iconPrefix + 'recover',
|
|
4032
|
+
MODAL_ZOOM_IN: iconPrefix + 'square',
|
|
4033
|
+
MODAL_ZOOM_OUT: iconPrefix + 'maximize',
|
|
4034
|
+
MODAL_CLOSE: iconPrefix + 'close',
|
|
4035
|
+
MODAL_INFO: iconPrefix + 'info-circle-fill',
|
|
4036
|
+
MODAL_SUCCESS: iconPrefix + 'success-circle-fill',
|
|
4037
|
+
MODAL_WARNING: iconPrefix + 'warning-circle-fill',
|
|
4038
|
+
MODAL_ERROR: iconPrefix + 'error-circle-fill',
|
|
4039
|
+
MODAL_QUESTION: iconPrefix + 'question-circle-fill',
|
|
4040
|
+
MODAL_LOADING: iconPrefix + 'spinner roll',
|
|
4041
|
+
// drawer
|
|
4042
|
+
DRAWER_CLOSE: iconPrefix + 'close',
|
|
4043
|
+
// form
|
|
4044
|
+
FORM_PREFIX: iconPrefix + 'question-circle-fill',
|
|
4045
|
+
FORM_SUFFIX: iconPrefix + 'question-circle-fill',
|
|
4046
|
+
FORM_FOLDING: iconPrefix + 'arrow-up rotate180',
|
|
4047
|
+
FORM_UNFOLDING: iconPrefix + 'arrow-up',
|
|
4048
|
+
// form-design
|
|
4049
|
+
FORM_DESIGN_STYLE_SETTING: iconPrefix + 'layout',
|
|
4050
|
+
FORM_DESIGN_PROPS_PC: iconPrefix + 'pc',
|
|
4051
|
+
FORM_DESIGN_PROPS_MOBILE: iconPrefix + 'mobile',
|
|
4052
|
+
FORM_DESIGN_PROPS_ADD: iconPrefix + 'add',
|
|
4053
|
+
FORM_DESIGN_PROPS_EDIT: iconPrefix + 'edit',
|
|
4054
|
+
FORM_DESIGN_WIDGET_ADD: iconPrefix + 'square-plus-fill',
|
|
4055
|
+
FORM_DESIGN_WIDGET_COPY: iconPrefix + 'copy',
|
|
4056
|
+
FORM_DESIGN_WIDGET_DELETE: iconPrefix + 'delete',
|
|
4057
|
+
FORM_DESIGN_WIDGET_SWAP_LR: iconPrefix + 'swap',
|
|
4058
|
+
FORM_DESIGN_WIDGET_OPTION_DELETE: iconPrefix + 'delete',
|
|
4059
|
+
FORM_DESIGN_WIDGET_OPTION_EXPAND_OPEN: iconPrefix + 'square-plus',
|
|
4060
|
+
FORM_DESIGN_WIDGET_OPTION_EXPAND_CLOSE: iconPrefix + 'square-minus',
|
|
4061
|
+
// list-design
|
|
4062
|
+
LIST_DESIGN_FIELD_SETTING: iconPrefix + 'custom-column',
|
|
4063
|
+
LIST_DESIGN_LIST_SETTING: iconPrefix + 'menu',
|
|
4064
|
+
LIST_DESIGN_LIST_SETTING_SEARCH_DELETE: iconPrefix + 'delete',
|
|
4065
|
+
LIST_DESIGN_LIST_SETTING_ACTIVE_DELETE: iconPrefix + 'delete',
|
|
4066
|
+
// upload
|
|
4067
|
+
UPLOAD_FILE_ERROR: iconPrefix + 'warning-circle-fill',
|
|
4068
|
+
UPLOAD_FILE_ADD: iconPrefix + 'upload',
|
|
4069
|
+
UPLOAD_FILE_REMOVE: iconPrefix + 'delete',
|
|
4070
|
+
UPLOAD_FILE_DOWNLOAD: iconPrefix + 'download',
|
|
4071
|
+
UPLOAD_IMAGE_UPLOAD: iconPrefix + 'upload',
|
|
4072
|
+
UPLOAD_IMAGE_RE_UPLOAD: iconPrefix + 'repeat',
|
|
4073
|
+
UPLOAD_IMAGE_ADD: iconPrefix + 'add',
|
|
4074
|
+
UPLOAD_IMAGE_REMOVE: iconPrefix + 'close',
|
|
4075
|
+
UPLOAD_LOADING: iconPrefix + 'spinner roll vxe-loading--default-icon',
|
|
4076
|
+
UPLOAD_FILE_TYPE_DEFAULT: iconPrefix + 'file',
|
|
4077
|
+
UPLOAD_FILE_TYPE_XLSX: iconPrefix + 'file-excel',
|
|
4078
|
+
UPLOAD_FILE_TYPE_XLS: iconPrefix + 'file-excel',
|
|
4079
|
+
UPLOAD_FILE_TYPE_PDF: iconPrefix + 'file-pdf',
|
|
4080
|
+
UPLOAD_FILE_TYPE_PNG: iconPrefix + 'file-image',
|
|
4081
|
+
UPLOAD_FILE_TYPE_GIF: iconPrefix + 'file-image',
|
|
4082
|
+
UPLOAD_FILE_TYPE_JPG: iconPrefix + 'file-image',
|
|
4083
|
+
UPLOAD_FILE_TYPE_JPEG: iconPrefix + 'file-image',
|
|
4084
|
+
UPLOAD_FILE_TYPE_MD: iconPrefix + 'file-markdown',
|
|
4085
|
+
UPLOAD_FILE_TYPE_PPD: iconPrefix + 'file-ppt',
|
|
4086
|
+
UPLOAD_FILE_TYPE_DOCX: iconPrefix + 'file-word',
|
|
4087
|
+
UPLOAD_FILE_TYPE_DOC: iconPrefix + 'file-word',
|
|
4088
|
+
UPLOAD_FILE_TYPE_ZIP: iconPrefix + 'file-zip',
|
|
4089
|
+
UPLOAD_FILE_TYPE_TXT: iconPrefix + 'file-txt',
|
|
4090
|
+
// image-preview
|
|
4091
|
+
IMAGE_PREVIEW_CLOSE: iconPrefix + 'close',
|
|
4092
|
+
IMAGE_PREVIEW_PREVIOUS: iconPrefix + 'arrow-left',
|
|
4093
|
+
IMAGE_PREVIEW_NEXT: iconPrefix + 'arrow-right',
|
|
4094
|
+
IMAGE_PREVIEW_PCT_FULL: iconPrefix + 'pct-full',
|
|
4095
|
+
IMAGE_PREVIEW_PCT_1_1: iconPrefix + 'pct-1-1',
|
|
4096
|
+
IMAGE_PREVIEW_ZOOM_OUT: iconPrefix + 'search-zoom-out',
|
|
4097
|
+
IMAGE_PREVIEW_ZOOM_IN: iconPrefix + 'search-zoom-in',
|
|
4098
|
+
IMAGE_PREVIEW_ROTATE_LEFT: iconPrefix + 'rotate-left',
|
|
4099
|
+
IMAGE_PREVIEW_ROTATE_RIGHT: iconPrefix + 'rotate-right',
|
|
4100
|
+
IMAGE_PREVIEW_PRINT: iconPrefix + 'print',
|
|
4101
|
+
IMAGE_PREVIEW_DOWNLOAD: iconPrefix + 'download',
|
|
4102
|
+
// alert
|
|
4103
|
+
ALERT_CLOSE: iconPrefix + 'close',
|
|
4104
|
+
ALERT_INFO: iconPrefix + 'info-circle-fill',
|
|
4105
|
+
ALERT_SUCCESS: iconPrefix + 'success-circle-fill',
|
|
4106
|
+
ALERT_WARNING: iconPrefix + 'warning-circle-fill',
|
|
4107
|
+
ALERT_ERROR: iconPrefix + 'error-circle-fill',
|
|
4108
|
+
// tree
|
|
4109
|
+
TREE_NODE_OPEN: iconPrefix + 'caret-right rotate90',
|
|
4110
|
+
TREE_NODE_CLOSE: iconPrefix + 'caret-right',
|
|
4111
|
+
TREE_NODE_LOADED: iconPrefix + 'spinner roll',
|
|
4112
|
+
// tree-select
|
|
4113
|
+
TREE_SELECT_LOADED: iconPrefix + 'spinner roll',
|
|
4114
|
+
TREE_SELECT_OPEN: iconPrefix + 'caret-down rotate180',
|
|
4115
|
+
TREE_SELECT_CLOSE: iconPrefix + 'caret-down',
|
|
4116
|
+
// table-select
|
|
4117
|
+
TABLE_SELECT_LOADED: iconPrefix + 'spinner roll',
|
|
4118
|
+
TABLE_SELECT_OPEN: iconPrefix + 'caret-down rotate180',
|
|
4119
|
+
TABLE_SELECT_CLOSE: iconPrefix + 'caret-down',
|
|
4120
|
+
// tabs
|
|
4121
|
+
TABS_TAB_BUTTON_TOP: iconPrefix + 'arrow-up',
|
|
4122
|
+
TABS_TAB_BUTTON_BOTTOM: iconPrefix + 'arrow-down',
|
|
4123
|
+
TABS_TAB_BUTTON_LEFT: iconPrefix + 'arrow-left',
|
|
4124
|
+
TABS_TAB_BUTTON_RIGHT: iconPrefix + 'arrow-right',
|
|
4125
|
+
TABS_TAB_CLOSE: iconPrefix + 'close',
|
|
4126
|
+
TABS_TAB_REFRESH: iconPrefix + 'refresh',
|
|
4127
|
+
TABS_TAB_REFRESH_LOADING: iconPrefix + 'refresh roll',
|
|
4128
|
+
// text
|
|
4129
|
+
TEXT_COPY: iconPrefix + 'copy',
|
|
4130
|
+
TEXT_LOADING: iconPrefix + 'spinner roll',
|
|
4131
|
+
// carousel
|
|
4132
|
+
CAROUSEL_HORIZONTAL_PREVIOUS: iconPrefix + 'arrow-left',
|
|
4133
|
+
CAROUSEL_HORIZONTAL_NEXT: iconPrefix + 'arrow-right',
|
|
4134
|
+
CAROUSEL_VERTICAL_PREVIOUS: iconPrefix + 'arrow-up',
|
|
4135
|
+
CAROUSEL_VERTICAL_NEXT: iconPrefix + 'arrow-down',
|
|
4136
|
+
// collapse
|
|
4137
|
+
COLLAPSE_OPEN: iconPrefix + 'arrow-right rotate90',
|
|
4138
|
+
COLLAPSE_CLOSE: iconPrefix + 'arrow-right',
|
|
4139
|
+
// empty
|
|
4140
|
+
EMPTY_DEFAULT: iconPrefix + 'empty',
|
|
4141
|
+
// result
|
|
4142
|
+
RESULT_INFO: iconPrefix + 'info-circle-fill',
|
|
4143
|
+
RESULT_SUCCESS: iconPrefix + 'success-circle-fill',
|
|
4144
|
+
RESULT_WARNING: iconPrefix + 'warning-circle-fill',
|
|
4145
|
+
RESULT_ERROR: iconPrefix + 'error-circle-fill',
|
|
4146
|
+
RESULT_QUESTION: iconPrefix + 'question-circle-fill',
|
|
4147
|
+
RESULT_LOADING: iconPrefix + 'spinner roll',
|
|
4148
|
+
// rate
|
|
4149
|
+
RATE_CHECKED: iconPrefix + 'star-fill',
|
|
4150
|
+
RATE_UNCHECKED: iconPrefix + 'star',
|
|
4151
|
+
// color-picker
|
|
4152
|
+
COLOR_PICKER_COLOR_COPY: iconPrefix + 'copy',
|
|
4153
|
+
COLOR_PICKER_EYE_DROPPER: iconPrefix + 'dropper',
|
|
4154
|
+
COLOR_PICKER_TPTY_OPEN: iconPrefix + 'arrow-down rotate180',
|
|
4155
|
+
COLOR_PICKER_TPTY_CLOSE: iconPrefix + 'arrow-down',
|
|
4156
|
+
// split
|
|
4157
|
+
SPLIT_TOP_ACTION: iconPrefix + 'arrow-up',
|
|
4158
|
+
SPLIT_BOTTOM_ACTION: iconPrefix + 'arrow-down',
|
|
4159
|
+
SPLIT_LEFT_ACTION: iconPrefix + 'arrow-left',
|
|
4160
|
+
SPLIT_RIGHT_ACTION: iconPrefix + 'arrow-right'
|
|
4161
|
+
});
|
|
4162
|
+
|
|
4163
|
+
/* harmony default export */ var ui = ((/* unused pure expression or super */ null && (VxeUI)));
|
|
3518
4164
|
;// CONCATENATED MODULE: ./packages/language/zh-CN.ts
|
|
3519
4165
|
/* harmony default export */ var zh_CN = ({
|
|
3520
4166
|
vxe: {
|
|
@@ -3923,999 +4569,353 @@ setTheme();
|
|
|
3923
4569
|
widthTitle: '标题宽度',
|
|
3924
4570
|
alignLeft: '居左',
|
|
3925
4571
|
alignRight: '居右',
|
|
3926
|
-
unitPx: '像素',
|
|
3927
|
-
unitPct: '百分比'
|
|
3928
|
-
},
|
|
3929
|
-
widget: {
|
|
3930
|
-
group: {
|
|
3931
|
-
base: '基础控件',
|
|
3932
|
-
layout: '布局控件',
|
|
3933
|
-
system: '系统控件',
|
|
3934
|
-
module: '模块控件',
|
|
3935
|
-
chart: '图表控件',
|
|
3936
|
-
advanced: '高级控件'
|
|
3937
|
-
},
|
|
3938
|
-
copyTitle: '副本_{0}',
|
|
3939
|
-
component: {
|
|
3940
|
-
input: '输入框',
|
|
3941
|
-
textarea: '文本域',
|
|
3942
|
-
select: '下拉选择',
|
|
3943
|
-
row: '一行多列',
|
|
3944
|
-
title: '标题',
|
|
3945
|
-
text: '文本',
|
|
3946
|
-
subtable: '子表',
|
|
3947
|
-
VxeSwitch: '是/否',
|
|
3948
|
-
VxeInput: '输入框',
|
|
3949
|
-
VxeNumberInput: '数字',
|
|
3950
|
-
VxeDatePicker: '日期',
|
|
3951
|
-
VxeTextarea: '文本域',
|
|
3952
|
-
VxeSelect: '下拉选择',
|
|
3953
|
-
VxeTreeSelect: '树形选择',
|
|
3954
|
-
VxeRadioGroup: '单选框',
|
|
3955
|
-
VxeCheckboxGroup: '复选框',
|
|
3956
|
-
VxeUploadFile: '文件',
|
|
3957
|
-
VxeUploadImage: '图片',
|
|
3958
|
-
VxeRate: '评分',
|
|
3959
|
-
VxeSlider: '滑块'
|
|
3960
|
-
}
|
|
3961
|
-
},
|
|
3962
|
-
widgetProp: {
|
|
3963
|
-
name: '控件名称',
|
|
3964
|
-
placeholder: '提示语',
|
|
3965
|
-
required: '必填校验',
|
|
3966
|
-
multiple: '允许多选',
|
|
3967
|
-
displaySetting: {
|
|
3968
|
-
name: '显示设置',
|
|
3969
|
-
pc: '电脑端',
|
|
3970
|
-
mobile: '手机端',
|
|
3971
|
-
visible: '显示',
|
|
3972
|
-
hidden: '隐藏'
|
|
3973
|
-
},
|
|
3974
|
-
dataSource: {
|
|
3975
|
-
name: '数据源',
|
|
3976
|
-
defValue: '选项{0}',
|
|
3977
|
-
addOption: '添加选项',
|
|
3978
|
-
batchEditOption: '批量编辑',
|
|
3979
|
-
batchEditTip: '每行对应一个选项,支持从表格、Excel、WPS 中直接复制粘贴。',
|
|
3980
|
-
batchEditSubTip: '每行对应一个选项,如果是分组,子项可以是空格或制表键开头,支持从表格、Excel、WPS 中直接复制粘贴。',
|
|
3981
|
-
buildOption: '生成选项'
|
|
3982
|
-
},
|
|
3983
|
-
rowProp: {
|
|
3984
|
-
colSize: '列数',
|
|
3985
|
-
col2: '两列',
|
|
3986
|
-
col3: '三列',
|
|
3987
|
-
col4: '四列',
|
|
3988
|
-
col6: '六列',
|
|
3989
|
-
layout: '布局'
|
|
3990
|
-
},
|
|
3991
|
-
textProp: {
|
|
3992
|
-
name: '内容',
|
|
3993
|
-
alignTitle: '对齐方式',
|
|
3994
|
-
alignLeft: '居左',
|
|
3995
|
-
alignCenter: '居中',
|
|
3996
|
-
alignRight: '居右',
|
|
3997
|
-
colorTitle: '字体颜色',
|
|
3998
|
-
sizeTitle: '字体大小',
|
|
3999
|
-
boldTitle: '字体加粗',
|
|
4000
|
-
fontNormal: '常规',
|
|
4001
|
-
fontBold: '加粗'
|
|
4002
|
-
},
|
|
4003
|
-
subtableProp: {
|
|
4004
|
-
seqTitle: '序号',
|
|
4005
|
-
showSeq: '显示序号',
|
|
4006
|
-
showCheckbox: '允许多选',
|
|
4007
|
-
errSubDrag: '子表不支持该控件,请使用其他控件',
|
|
4008
|
-
colPlace: '将控件拖拽进来'
|
|
4009
|
-
},
|
|
4010
|
-
uploadProp: {
|
|
4011
|
-
limitFileCount: '文件数量限制',
|
|
4012
|
-
limitFileSize: '文件大小限制',
|
|
4013
|
-
multiFile: '允许上传多个文件',
|
|
4014
|
-
limitImgCount: '图片数量限制',
|
|
4015
|
-
limitImgSize: '图片大小限制',
|
|
4016
|
-
multiImg: '允许上传多张图片'
|
|
4017
|
-
}
|
|
4018
|
-
}
|
|
4019
|
-
},
|
|
4020
|
-
listDesign: {
|
|
4021
|
-
fieldSettingTab: '字段设置',
|
|
4022
|
-
listSettingTab: '参数设置',
|
|
4023
|
-
searchTitle: '查询条件',
|
|
4024
|
-
listTitle: '列表字段',
|
|
4025
|
-
searchField: '查询字段',
|
|
4026
|
-
listField: '列表字段',
|
|
4027
|
-
activeBtn: {
|
|
4028
|
-
ActionButtonUpdate: '编辑',
|
|
4029
|
-
ActionButtonDelete: '删除'
|
|
4030
|
-
},
|
|
4031
|
-
search: {
|
|
4032
|
-
addBtn: '编辑',
|
|
4033
|
-
emptyText: '未配置查询条件',
|
|
4034
|
-
editPopupTitle: '编辑查询字段'
|
|
4035
|
-
},
|
|
4036
|
-
searchPopup: {
|
|
4037
|
-
colTitle: '标题',
|
|
4038
|
-
saveBtn: '保存'
|
|
4039
|
-
}
|
|
4040
|
-
},
|
|
4041
|
-
text: {
|
|
4042
|
-
copySuccess: '已复制到剪贴板',
|
|
4043
|
-
copyError: '当前环境不支持该操作'
|
|
4044
|
-
},
|
|
4045
|
-
countdown: {
|
|
4046
|
-
formats: {
|
|
4047
|
-
yyyy: '年',
|
|
4048
|
-
MM: '月',
|
|
4049
|
-
dd: '天',
|
|
4050
|
-
HH: '时',
|
|
4051
|
-
mm: '分',
|
|
4052
|
-
ss: '秒'
|
|
4053
|
-
}
|
|
4054
|
-
},
|
|
4055
|
-
plugins: {
|
|
4056
|
-
extendCellArea: {
|
|
4057
|
-
area: {
|
|
4058
|
-
mergeErr: '无法对合并单元格进行该操作',
|
|
4059
|
-
multiErr: '无法对多重选择区域进行该操作',
|
|
4060
|
-
selectErr: '无法操作指定区域的单元格',
|
|
4061
|
-
extendErr: '如果延伸的区域包含被合并的单元格,所有合并的单元格需大小相同',
|
|
4062
|
-
pasteMultiErr: '无法粘贴,需要相同大小的复制的区域和粘贴的区域才能执行此操作',
|
|
4063
|
-
cpInvalidErr: '该操作无法进行,您选择的区域中存在被禁止的列({0})'
|
|
4064
|
-
},
|
|
4065
|
-
fnr: {
|
|
4066
|
-
title: '查找和替换',
|
|
4067
|
-
findLabel: '查找',
|
|
4068
|
-
replaceLabel: '替换',
|
|
4069
|
-
findTitle: '查找内容:',
|
|
4070
|
-
replaceTitle: '替换为:',
|
|
4071
|
-
tabs: {
|
|
4072
|
-
find: '查找',
|
|
4073
|
-
replace: '替换'
|
|
4074
|
-
},
|
|
4075
|
-
filter: {
|
|
4076
|
-
re: '正则表达式',
|
|
4077
|
-
whole: '全词匹配',
|
|
4078
|
-
sensitive: '区分大小写'
|
|
4079
|
-
},
|
|
4080
|
-
btns: {
|
|
4081
|
-
findNext: '查找下一个',
|
|
4082
|
-
findAll: '查找全部',
|
|
4083
|
-
replace: '替换',
|
|
4084
|
-
replaceAll: '替换全部',
|
|
4085
|
-
cancel: '取消'
|
|
4086
|
-
},
|
|
4087
|
-
header: {
|
|
4088
|
-
seq: '#',
|
|
4089
|
-
cell: '单元格',
|
|
4090
|
-
value: '值'
|
|
4091
|
-
},
|
|
4092
|
-
body: {
|
|
4093
|
-
row: '行:{0}',
|
|
4094
|
-
col: '列:{0}'
|
|
4095
|
-
},
|
|
4096
|
-
empty: '(空值)',
|
|
4097
|
-
reError: '无效的正则表达式',
|
|
4098
|
-
recordCount: '已找到 {0} 个单元格',
|
|
4099
|
-
notCell: '找不到匹配的单元格',
|
|
4100
|
-
replaceSuccess: '成功替换 {0} 个单元格'
|
|
4101
|
-
}
|
|
4102
|
-
},
|
|
4103
|
-
extendPivotTable: {
|
|
4104
|
-
aggregation: {
|
|
4105
|
-
grouping: '分组',
|
|
4106
|
-
values: '值',
|
|
4107
|
-
groupPlaceholder: '拖至此处进行分组',
|
|
4108
|
-
valuesPlaceholder: '拖至此处进行聚合',
|
|
4109
|
-
dragExistCol: '该列已存在',
|
|
4110
|
-
sortHelpTip: '点击并拖动图标可以调整顺序'
|
|
4111
|
-
},
|
|
4112
|
-
aggFuncs: {
|
|
4113
|
-
sum: '求和',
|
|
4114
|
-
count: '计数',
|
|
4115
|
-
avg: '平均值',
|
|
4116
|
-
min: '最小值',
|
|
4117
|
-
max: '最大值',
|
|
4118
|
-
first: '首个值',
|
|
4119
|
-
last: '末尾值'
|
|
4120
|
-
}
|
|
4121
|
-
},
|
|
4122
|
-
filterComplexInput: {
|
|
4123
|
-
menus: {
|
|
4124
|
-
fixedColumn: '冻结列',
|
|
4125
|
-
fixedGroup: '冻结分组',
|
|
4126
|
-
cancelFixed: '取消冻结',
|
|
4127
|
-
fixedLeft: '冻结左侧',
|
|
4128
|
-
fixedRight: '冻结右侧'
|
|
4129
|
-
},
|
|
4130
|
-
cases: {
|
|
4131
|
-
equal: '等于',
|
|
4132
|
-
gt: '大于',
|
|
4133
|
-
lt: '小于',
|
|
4134
|
-
begin: '开头是',
|
|
4135
|
-
endin: '结尾是',
|
|
4136
|
-
include: '包含',
|
|
4137
|
-
isSensitive: '区分大小写'
|
|
4138
|
-
}
|
|
4139
|
-
},
|
|
4140
|
-
filterCombination: {
|
|
4141
|
-
menus: {
|
|
4142
|
-
sort: '排序',
|
|
4143
|
-
clearSort: '清除排序',
|
|
4144
|
-
sortAsc: '升序',
|
|
4145
|
-
sortDesc: '降序',
|
|
4146
|
-
fixedColumn: '冻结列',
|
|
4147
|
-
fixedGroup: '冻结分组',
|
|
4148
|
-
cancelFixed: '取消冻结',
|
|
4149
|
-
fixedLeft: '冻结左侧',
|
|
4150
|
-
fixedRight: '冻结右侧',
|
|
4151
|
-
clearFilter: '清除筛选',
|
|
4152
|
-
textOption: '文本筛选',
|
|
4153
|
-
numberOption: '数值筛选'
|
|
4154
|
-
},
|
|
4155
|
-
popup: {
|
|
4156
|
-
title: '自定义筛选的方式',
|
|
4157
|
-
currColumnTitle: '当前列:',
|
|
4158
|
-
and: '与',
|
|
4159
|
-
or: '或',
|
|
4160
|
-
describeHtml: '可用 ? 代表单个字符<br/>用 * 代表任意多个字符'
|
|
4161
|
-
},
|
|
4162
|
-
cases: {
|
|
4163
|
-
equal: '等于',
|
|
4164
|
-
unequal: '不等于',
|
|
4165
|
-
gt: '大于',
|
|
4166
|
-
ge: '大于或等于',
|
|
4167
|
-
lt: '小于',
|
|
4168
|
-
le: '小于或等于',
|
|
4169
|
-
begin: '开头是',
|
|
4170
|
-
notbegin: '开头不是',
|
|
4171
|
-
endin: '结尾是',
|
|
4172
|
-
notendin: '结尾不是',
|
|
4173
|
-
include: '包含',
|
|
4174
|
-
exclude: '不包含',
|
|
4175
|
-
between: '介于',
|
|
4176
|
-
custom: '自定义筛选',
|
|
4177
|
-
insensitive: '不区分大小写',
|
|
4178
|
-
isSensitive: '区分大小写'
|
|
4179
|
-
},
|
|
4180
|
-
empty: '(空白)',
|
|
4181
|
-
notData: '无匹配项'
|
|
4182
|
-
}
|
|
4183
|
-
},
|
|
4184
|
-
pro: {
|
|
4185
|
-
area: {
|
|
4186
|
-
mergeErr: '无法对合并单元格进行该操作',
|
|
4187
|
-
multiErr: '无法对多重选择区域进行该操作',
|
|
4188
|
-
extendErr: '如果延伸的区域包含被合并的单元格,所有合并的单元格需大小相同',
|
|
4189
|
-
pasteMultiErr: '无法粘贴,需要相同大小的复制的区域和粘贴的区域才能执行此操作'
|
|
4190
|
-
},
|
|
4191
|
-
fnr: {
|
|
4192
|
-
title: '查找和替换',
|
|
4193
|
-
findLabel: '查找',
|
|
4194
|
-
replaceLabel: '替换',
|
|
4195
|
-
findTitle: '查找内容:',
|
|
4196
|
-
replaceTitle: '替换为:',
|
|
4197
|
-
tabs: {
|
|
4198
|
-
find: '查找',
|
|
4199
|
-
replace: '替换'
|
|
4572
|
+
unitPx: '像素',
|
|
4573
|
+
unitPct: '百分比'
|
|
4574
|
+
},
|
|
4575
|
+
widget: {
|
|
4576
|
+
group: {
|
|
4577
|
+
base: '基础控件',
|
|
4578
|
+
layout: '布局控件',
|
|
4579
|
+
system: '系统控件',
|
|
4580
|
+
module: '模块控件',
|
|
4581
|
+
chart: '图表控件',
|
|
4582
|
+
advanced: '高级控件'
|
|
4200
4583
|
},
|
|
4201
|
-
|
|
4202
|
-
|
|
4203
|
-
|
|
4204
|
-
|
|
4584
|
+
copyTitle: '副本_{0}',
|
|
4585
|
+
component: {
|
|
4586
|
+
input: '输入框',
|
|
4587
|
+
textarea: '文本域',
|
|
4588
|
+
select: '下拉选择',
|
|
4589
|
+
row: '一行多列',
|
|
4590
|
+
title: '标题',
|
|
4591
|
+
text: '文本',
|
|
4592
|
+
subtable: '子表',
|
|
4593
|
+
VxeSwitch: '是/否',
|
|
4594
|
+
VxeInput: '输入框',
|
|
4595
|
+
VxeNumberInput: '数字',
|
|
4596
|
+
VxeDatePicker: '日期',
|
|
4597
|
+
VxeTextarea: '文本域',
|
|
4598
|
+
VxeSelect: '下拉选择',
|
|
4599
|
+
VxeTreeSelect: '树形选择',
|
|
4600
|
+
VxeRadioGroup: '单选框',
|
|
4601
|
+
VxeCheckboxGroup: '复选框',
|
|
4602
|
+
VxeUploadFile: '文件',
|
|
4603
|
+
VxeUploadImage: '图片',
|
|
4604
|
+
VxeRate: '评分',
|
|
4605
|
+
VxeSlider: '滑块'
|
|
4606
|
+
}
|
|
4607
|
+
},
|
|
4608
|
+
widgetProp: {
|
|
4609
|
+
name: '控件名称',
|
|
4610
|
+
placeholder: '提示语',
|
|
4611
|
+
required: '必填校验',
|
|
4612
|
+
multiple: '允许多选',
|
|
4613
|
+
displaySetting: {
|
|
4614
|
+
name: '显示设置',
|
|
4615
|
+
pc: '电脑端',
|
|
4616
|
+
mobile: '手机端',
|
|
4617
|
+
visible: '显示',
|
|
4618
|
+
hidden: '隐藏'
|
|
4205
4619
|
},
|
|
4206
|
-
|
|
4207
|
-
|
|
4208
|
-
|
|
4209
|
-
|
|
4210
|
-
|
|
4211
|
-
|
|
4620
|
+
dataSource: {
|
|
4621
|
+
name: '数据源',
|
|
4622
|
+
defValue: '选项{0}',
|
|
4623
|
+
addOption: '添加选项',
|
|
4624
|
+
batchEditOption: '批量编辑',
|
|
4625
|
+
batchEditTip: '每行对应一个选项,支持从表格、Excel、WPS 中直接复制粘贴。',
|
|
4626
|
+
batchEditSubTip: '每行对应一个选项,如果是分组,子项可以是空格或制表键开头,支持从表格、Excel、WPS 中直接复制粘贴。',
|
|
4627
|
+
buildOption: '生成选项'
|
|
4212
4628
|
},
|
|
4213
|
-
|
|
4214
|
-
|
|
4215
|
-
|
|
4216
|
-
|
|
4629
|
+
rowProp: {
|
|
4630
|
+
colSize: '列数',
|
|
4631
|
+
col2: '两列',
|
|
4632
|
+
col3: '三列',
|
|
4633
|
+
col4: '四列',
|
|
4634
|
+
col6: '六列',
|
|
4635
|
+
layout: '布局'
|
|
4217
4636
|
},
|
|
4218
|
-
|
|
4219
|
-
|
|
4220
|
-
|
|
4221
|
-
|
|
4222
|
-
|
|
4223
|
-
|
|
4224
|
-
|
|
4225
|
-
|
|
4226
|
-
|
|
4227
|
-
|
|
4228
|
-
|
|
4229
|
-
unequal: '不等于',
|
|
4230
|
-
gt: '大于',
|
|
4231
|
-
ge: '大于或等于',
|
|
4232
|
-
lt: '小于',
|
|
4233
|
-
le: '小于或等于',
|
|
4234
|
-
begin: '开头是',
|
|
4235
|
-
notbegin: '开头不是',
|
|
4236
|
-
endin: '结尾是',
|
|
4237
|
-
notendin: '结尾不是',
|
|
4238
|
-
include: '包含',
|
|
4239
|
-
exclude: '不包含',
|
|
4240
|
-
between: '介于',
|
|
4241
|
-
custom: '自定义筛选',
|
|
4242
|
-
insensitive: '不区分大小写',
|
|
4243
|
-
isSensitive: '区分大小写'
|
|
4244
|
-
},
|
|
4245
|
-
combination: {
|
|
4246
|
-
menus: {
|
|
4247
|
-
sort: '排序',
|
|
4248
|
-
clearSort: '清除排序',
|
|
4249
|
-
sortAsc: '升序',
|
|
4250
|
-
sortDesc: '降序',
|
|
4251
|
-
fixedColumn: '冻结列',
|
|
4252
|
-
fixedGroup: '冻结分组',
|
|
4253
|
-
cancelFixed: '取消冻结',
|
|
4254
|
-
fixedLeft: '冻结到左侧',
|
|
4255
|
-
fixedRight: '冻结到右侧',
|
|
4256
|
-
clearFilter: '清除筛选',
|
|
4257
|
-
textOption: '文本筛选',
|
|
4258
|
-
numberOption: '数值筛选'
|
|
4637
|
+
textProp: {
|
|
4638
|
+
name: '内容',
|
|
4639
|
+
alignTitle: '对齐方式',
|
|
4640
|
+
alignLeft: '居左',
|
|
4641
|
+
alignCenter: '居中',
|
|
4642
|
+
alignRight: '居右',
|
|
4643
|
+
colorTitle: '字体颜色',
|
|
4644
|
+
sizeTitle: '字体大小',
|
|
4645
|
+
boldTitle: '字体加粗',
|
|
4646
|
+
fontNormal: '常规',
|
|
4647
|
+
fontBold: '加粗'
|
|
4259
4648
|
},
|
|
4260
|
-
|
|
4261
|
-
|
|
4262
|
-
|
|
4263
|
-
|
|
4264
|
-
|
|
4265
|
-
|
|
4649
|
+
subtableProp: {
|
|
4650
|
+
seqTitle: '序号',
|
|
4651
|
+
showSeq: '显示序号',
|
|
4652
|
+
showCheckbox: '允许多选',
|
|
4653
|
+
errSubDrag: '子表不支持该控件,请使用其他控件',
|
|
4654
|
+
colPlace: '将控件拖拽进来'
|
|
4266
4655
|
},
|
|
4267
|
-
|
|
4268
|
-
|
|
4656
|
+
uploadProp: {
|
|
4657
|
+
limitFileCount: '文件数量限制',
|
|
4658
|
+
limitFileSize: '文件大小限制',
|
|
4659
|
+
multiFile: '允许上传多个文件',
|
|
4660
|
+
limitImgCount: '图片数量限制',
|
|
4661
|
+
limitImgSize: '图片大小限制',
|
|
4662
|
+
multiImg: '允许上传多张图片'
|
|
4663
|
+
}
|
|
4269
4664
|
}
|
|
4270
|
-
}
|
|
4271
|
-
}
|
|
4272
|
-
});
|
|
4273
|
-
;// CONCATENATED MODULE: ./packages/ui/src/comp.ts
|
|
4274
|
-
|
|
4275
|
-
const defineVxeComponent = external_commonjs_vue_commonjs2_vue_root_Vue_.defineComponent;
|
|
4276
|
-
;// CONCATENATED MODULE: ./packages/dynamics/index.ts
|
|
4277
|
-
|
|
4278
|
-
|
|
4279
|
-
|
|
4280
|
-
let dynamicContainerElem;
|
|
4281
|
-
const dynamicStore = (0,external_commonjs_vue_commonjs2_vue_root_Vue_.reactive)({
|
|
4282
|
-
modals: [],
|
|
4283
|
-
drawers: [],
|
|
4284
|
-
globalLoading: null,
|
|
4285
|
-
globalWatermark: null
|
|
4286
|
-
});
|
|
4287
|
-
/**
|
|
4288
|
-
* 动态组件
|
|
4289
|
-
*/
|
|
4290
|
-
const VxeDynamics = defineVxeComponent({
|
|
4291
|
-
setup() {
|
|
4292
|
-
const VxeUIModalComponent = index_esm_VxeUI.getComponent('vxe-modal');
|
|
4293
|
-
const VxeUIDrawerComponent = index_esm_VxeUI.getComponent('vxe-drawer');
|
|
4294
|
-
const VxeUILoadingComponent = index_esm_VxeUI.getComponent('vxe-loading');
|
|
4295
|
-
const VxeUIWatermarkComponent = index_esm_VxeUI.getComponent('vxe-watermark');
|
|
4296
|
-
return () => {
|
|
4297
|
-
const {
|
|
4298
|
-
modals,
|
|
4299
|
-
drawers,
|
|
4300
|
-
globalWatermark,
|
|
4301
|
-
globalLoading
|
|
4302
|
-
} = dynamicStore;
|
|
4303
|
-
return [modals.length ? (0,external_commonjs_vue_commonjs2_vue_root_Vue_.h)('div', {
|
|
4304
|
-
key: 1,
|
|
4305
|
-
class: 'vxe-dynamics--modal'
|
|
4306
|
-
}, modals.map(item => (0,external_commonjs_vue_commonjs2_vue_root_Vue_.h)(VxeUIModalComponent, item))) : (0,external_commonjs_vue_commonjs2_vue_root_Vue_.createCommentVNode)(), drawers.length ? (0,external_commonjs_vue_commonjs2_vue_root_Vue_.h)('div', {
|
|
4307
|
-
key: 2,
|
|
4308
|
-
class: 'vxe-dynamics--drawer'
|
|
4309
|
-
}, drawers.map(item => (0,external_commonjs_vue_commonjs2_vue_root_Vue_.h)(VxeUIDrawerComponent, item))) : (0,external_commonjs_vue_commonjs2_vue_root_Vue_.createCommentVNode)(), globalWatermark ? (0,external_commonjs_vue_commonjs2_vue_root_Vue_.h)(VxeUIWatermarkComponent, globalWatermark) : (0,external_commonjs_vue_commonjs2_vue_root_Vue_.createCommentVNode)(), globalLoading ? (0,external_commonjs_vue_commonjs2_vue_root_Vue_.h)(VxeUILoadingComponent, globalLoading) : (0,external_commonjs_vue_commonjs2_vue_root_Vue_.createCommentVNode)()];
|
|
4310
|
-
};
|
|
4311
|
-
}
|
|
4312
|
-
});
|
|
4313
|
-
const dynamicApp = (0,external_commonjs_vue_commonjs2_vue_root_Vue_.createApp)(VxeDynamics);
|
|
4314
|
-
function checkDynamic() {
|
|
4315
|
-
if (!dynamicContainerElem) {
|
|
4316
|
-
dynamicContainerElem = document.createElement('div');
|
|
4317
|
-
dynamicContainerElem.className = 'vxe-dynamics';
|
|
4318
|
-
document.body.appendChild(dynamicContainerElem);
|
|
4319
|
-
dynamicApp.mount(dynamicContainerElem);
|
|
4320
|
-
}
|
|
4321
|
-
}
|
|
4322
|
-
;// CONCATENATED MODULE: ./packages/ui/src/log.ts
|
|
4323
|
-
|
|
4324
|
-
const log_version = `ui v${"4.8.13"}`;
|
|
4325
|
-
const warnLog = log.create('warn', log_version);
|
|
4326
|
-
const errLog = log.create('error', log_version);
|
|
4327
|
-
;// CONCATENATED MODULE: ./packages/ui/index.ts
|
|
4328
|
-
|
|
4329
|
-
|
|
4330
|
-
|
|
4331
|
-
const ui_version = "4.8.13";
|
|
4332
|
-
index_esm_VxeUI.uiVersion = ui_version;
|
|
4333
|
-
index_esm_VxeUI.dynamicApp = dynamicApp;
|
|
4334
|
-
function config(options) {
|
|
4335
|
-
warnLog('vxe.error.delFunc', ['config', 'setConfig']);
|
|
4336
|
-
return setConfig(options);
|
|
4337
|
-
}
|
|
4338
|
-
function setup(options) {
|
|
4339
|
-
warnLog('vxe.error.delFunc', ['setup', 'setConfig']);
|
|
4340
|
-
return setConfig(options);
|
|
4341
|
-
}
|
|
4342
|
-
index_esm_VxeUI.config = config;
|
|
4343
|
-
index_esm_VxeUI.setup = setup;
|
|
4344
|
-
setConfig({
|
|
4345
|
-
alert: {},
|
|
4346
|
-
anchor: {},
|
|
4347
|
-
anchorLink: {},
|
|
4348
|
-
avatar: {},
|
|
4349
|
-
badge: {},
|
|
4350
|
-
breadcrumb: {
|
|
4351
|
-
separator: '/'
|
|
4352
|
-
},
|
|
4353
|
-
breadcrumbItem: {},
|
|
4354
|
-
button: {
|
|
4355
|
-
trigger: 'hover',
|
|
4356
|
-
prefixTooltip: {
|
|
4357
|
-
enterable: true
|
|
4358
|
-
},
|
|
4359
|
-
suffixTooltip: {
|
|
4360
|
-
enterable: true
|
|
4361
|
-
}
|
|
4362
|
-
},
|
|
4363
|
-
buttonGroup: {},
|
|
4364
|
-
calendar: {
|
|
4365
|
-
minDate: new Date(1900, 0, 1),
|
|
4366
|
-
maxDate: new Date(2100, 0, 1),
|
|
4367
|
-
startDay: 1,
|
|
4368
|
-
selectDay: 1
|
|
4369
|
-
},
|
|
4370
|
-
card: {
|
|
4371
|
-
border: true,
|
|
4372
|
-
padding: true
|
|
4373
|
-
},
|
|
4374
|
-
carousel: {
|
|
4375
|
-
height: 200,
|
|
4376
|
-
loop: true,
|
|
4377
|
-
interval: 5000
|
|
4378
|
-
},
|
|
4379
|
-
carouselItem: {},
|
|
4380
|
-
checkbox: {},
|
|
4381
|
-
checkboxButton: {},
|
|
4382
|
-
checkboxGroup: {},
|
|
4383
|
-
col: {},
|
|
4384
|
-
collapse: {
|
|
4385
|
-
padding: true,
|
|
4386
|
-
expandConfig: {
|
|
4387
|
-
showIcon: true
|
|
4388
|
-
}
|
|
4389
|
-
},
|
|
4390
|
-
collapsePane: {},
|
|
4391
|
-
countdown: {},
|
|
4392
|
-
colorPicker: {
|
|
4393
|
-
type: 'rgb',
|
|
4394
|
-
clearable: true,
|
|
4395
|
-
showAlpha: true,
|
|
4396
|
-
clickToCopy: true,
|
|
4397
|
-
showColorExtractor: true,
|
|
4398
|
-
showQuick: true
|
|
4399
|
-
},
|
|
4400
|
-
datePanel: {
|
|
4401
|
-
// parseFormat: 'yyyy-MM-dd HH:mm:ss.SSS',
|
|
4402
|
-
// labelFormat: '',
|
|
4403
|
-
// valueFormat: '',
|
|
4404
|
-
startDate: new Date(1900, 0, 1),
|
|
4405
|
-
endDate: new Date(2100, 0, 1),
|
|
4406
|
-
startDay: 1,
|
|
4407
|
-
selectDay: 1
|
|
4408
|
-
},
|
|
4409
|
-
datePicker: {
|
|
4410
|
-
// size: null,
|
|
4411
|
-
// transfer: false,
|
|
4412
|
-
shortcutConfig: {
|
|
4413
|
-
// position: 'left',
|
|
4414
|
-
align: 'left',
|
|
4415
|
-
mode: 'text',
|
|
4416
|
-
autoClose: true
|
|
4417
|
-
},
|
|
4418
|
-
startDay: 1,
|
|
4419
|
-
selectDay: 1,
|
|
4420
|
-
autoClose: true,
|
|
4421
|
-
showClearButton: null,
|
|
4422
|
-
showConfirmButton: null
|
|
4423
|
-
},
|
|
4424
|
-
dateRangePicker: {
|
|
4425
|
-
// size: null,
|
|
4426
|
-
// transfer: false,
|
|
4427
|
-
shortcutConfig: {
|
|
4428
|
-
// position: 'left',
|
|
4429
|
-
align: 'left',
|
|
4430
|
-
mode: 'text',
|
|
4431
|
-
autoClose: true
|
|
4432
|
-
},
|
|
4433
|
-
startDay: 1,
|
|
4434
|
-
selectDay: 1,
|
|
4435
|
-
separator: ' ~ ',
|
|
4436
|
-
autoClose: true,
|
|
4437
|
-
showClearButton: null,
|
|
4438
|
-
showConfirmButton: null
|
|
4439
|
-
},
|
|
4440
|
-
drawer: {
|
|
4441
|
-
// size: null,
|
|
4442
|
-
position: 'right',
|
|
4443
|
-
showHeader: true,
|
|
4444
|
-
lockView: true,
|
|
4445
|
-
mask: true,
|
|
4446
|
-
showTitleOverflow: true,
|
|
4447
|
-
showClose: true,
|
|
4448
|
-
padding: true,
|
|
4449
|
-
cancelClosable: true,
|
|
4450
|
-
confirmClosable: true
|
|
4451
|
-
},
|
|
4452
|
-
empty: {},
|
|
4453
|
-
form: {
|
|
4454
|
-
// preventSubmit: false,
|
|
4455
|
-
// size: null,
|
|
4456
|
-
// colon: false,
|
|
4457
|
-
validConfig: {
|
|
4458
|
-
showMessage: true,
|
|
4459
|
-
autoPos: true,
|
|
4460
|
-
theme: 'beautify'
|
|
4461
|
-
},
|
|
4462
|
-
tooltipConfig: {
|
|
4463
|
-
enterable: true
|
|
4464
4665
|
},
|
|
4465
|
-
|
|
4466
|
-
|
|
4467
|
-
|
|
4468
|
-
|
|
4469
|
-
|
|
4470
|
-
|
|
4471
|
-
|
|
4472
|
-
|
|
4473
|
-
|
|
4474
|
-
|
|
4475
|
-
formGroup: {},
|
|
4476
|
-
formItem: {},
|
|
4477
|
-
formView: {},
|
|
4478
|
-
icon: {},
|
|
4479
|
-
iconPicker: {
|
|
4480
|
-
icons: ['home', 'company', 'comment', 'setting', 'send', 'envelope', 'envelope-open', 'bell', 'search', 'print', 'pc', 'goods', 'chart-line', 'edit', 'delete', 'save', 'folder', 'microphone', 'flag', 'link', 'location', 'sunny', 'rmb', 'usd', 'user', 'add-user', 'add-users', 'star', 'unlock', 'time', 'text', 'feedback', 'calendar', 'association-form', 'cloud-download', 'cloud-upload', 'file', 'subtable', 'chart-bar-x', 'chart-bar-y', 'chart-line', 'chart-pie', 'chart-radar']
|
|
4481
|
-
},
|
|
4482
|
-
image: {
|
|
4483
|
-
showPreview: true,
|
|
4484
|
-
showPrintButton: true,
|
|
4485
|
-
maskClosable: true
|
|
4486
|
-
},
|
|
4487
|
-
imageGroup: {
|
|
4488
|
-
showPreview: true,
|
|
4489
|
-
showPrintButton: true
|
|
4490
|
-
},
|
|
4491
|
-
imagePreview: {
|
|
4492
|
-
showPrintButton: true
|
|
4493
|
-
},
|
|
4494
|
-
input: {
|
|
4495
|
-
// size: null,
|
|
4496
|
-
// transfer: false
|
|
4497
|
-
// parseFormat: 'yyyy-MM-dd HH:mm:ss.SSS',
|
|
4498
|
-
// labelFormat: '',
|
|
4499
|
-
// valueFormat: '',
|
|
4500
|
-
startDate: new Date(1900, 0, 1),
|
|
4501
|
-
endDate: new Date(2100, 0, 1),
|
|
4502
|
-
startDay: 1,
|
|
4503
|
-
selectDay: 1,
|
|
4504
|
-
digits: 2,
|
|
4505
|
-
controls: true
|
|
4506
|
-
},
|
|
4507
|
-
layoutAside: {},
|
|
4508
|
-
layoutBody: {},
|
|
4509
|
-
layoutContainer: {},
|
|
4510
|
-
layoutFooter: {},
|
|
4511
|
-
layoutHeader: {},
|
|
4512
|
-
link: {
|
|
4513
|
-
underline: true
|
|
4514
|
-
},
|
|
4515
|
-
listDesign: {
|
|
4516
|
-
height: 400,
|
|
4517
|
-
showPc: true
|
|
4518
|
-
},
|
|
4519
|
-
listView: {},
|
|
4520
|
-
list: {
|
|
4521
|
-
// size: null,
|
|
4522
|
-
virtualYConfig: {
|
|
4523
|
-
enabled: true,
|
|
4524
|
-
gt: 100
|
|
4525
|
-
// oSize: 0
|
|
4526
|
-
}
|
|
4527
|
-
},
|
|
4528
|
-
loading: {
|
|
4529
|
-
showIcon: true,
|
|
4530
|
-
showText: true
|
|
4531
|
-
},
|
|
4532
|
-
menu: {},
|
|
4533
|
-
modal: {
|
|
4534
|
-
// size: null,
|
|
4535
|
-
top: 16,
|
|
4536
|
-
showHeader: true,
|
|
4537
|
-
minWidth: 340,
|
|
4538
|
-
minHeight: 140,
|
|
4539
|
-
lockView: true,
|
|
4540
|
-
mask: true,
|
|
4541
|
-
duration: 3000,
|
|
4542
|
-
marginSize: 0,
|
|
4543
|
-
dblclickZoom: true,
|
|
4544
|
-
showTitleOverflow: true,
|
|
4545
|
-
animat: true,
|
|
4546
|
-
showClose: true,
|
|
4547
|
-
padding: true,
|
|
4548
|
-
draggable: true,
|
|
4549
|
-
showConfirmButton: null,
|
|
4550
|
-
cancelClosable: true,
|
|
4551
|
-
confirmClosable: true,
|
|
4552
|
-
zoomConfig: {
|
|
4553
|
-
minimizeMaxSize: 10,
|
|
4554
|
-
minimizeVerticalOffset: {
|
|
4555
|
-
top: -24,
|
|
4556
|
-
left: 0
|
|
4666
|
+
listDesign: {
|
|
4667
|
+
fieldSettingTab: '字段设置',
|
|
4668
|
+
listSettingTab: '参数设置',
|
|
4669
|
+
searchTitle: '查询条件',
|
|
4670
|
+
listTitle: '列表字段',
|
|
4671
|
+
searchField: '查询字段',
|
|
4672
|
+
listField: '列表字段',
|
|
4673
|
+
activeBtn: {
|
|
4674
|
+
ActionButtonUpdate: '编辑',
|
|
4675
|
+
ActionButtonDelete: '删除'
|
|
4557
4676
|
},
|
|
4558
|
-
|
|
4559
|
-
|
|
4560
|
-
|
|
4677
|
+
search: {
|
|
4678
|
+
addBtn: '编辑',
|
|
4679
|
+
emptyText: '未配置查询条件',
|
|
4680
|
+
editPopupTitle: '编辑查询字段'
|
|
4681
|
+
},
|
|
4682
|
+
searchPopup: {
|
|
4683
|
+
colTitle: '标题',
|
|
4684
|
+
saveBtn: '保存'
|
|
4561
4685
|
}
|
|
4562
4686
|
},
|
|
4563
|
-
|
|
4564
|
-
|
|
4565
|
-
|
|
4566
|
-
},
|
|
4567
|
-
noticeBar: {},
|
|
4568
|
-
numberInput: {
|
|
4569
|
-
// size: null,
|
|
4570
|
-
// transfer: false
|
|
4571
|
-
digits: 2,
|
|
4572
|
-
autoFill: true,
|
|
4573
|
-
controlConfig: {
|
|
4574
|
-
enabled: true,
|
|
4575
|
-
layout: 'right',
|
|
4576
|
-
showButton: true,
|
|
4577
|
-
isWheel: true,
|
|
4578
|
-
isArrow: true
|
|
4579
|
-
}
|
|
4580
|
-
},
|
|
4581
|
-
optgroup: {},
|
|
4582
|
-
option: {},
|
|
4583
|
-
pager: {
|
|
4584
|
-
pageSizePlacement: 'top'
|
|
4585
|
-
// size: null,
|
|
4586
|
-
// autoHidden: false,
|
|
4587
|
-
// perfect: true,
|
|
4588
|
-
// pageSize: 10,
|
|
4589
|
-
// pagerCount: 7,
|
|
4590
|
-
// pageSizes: [10, 15, 20, 50, 100],
|
|
4591
|
-
// layouts: ['PrevJump', 'PrevPage', 'Jump', 'PageCount', 'NextPage', 'NextJump', 'Sizes', 'Total']
|
|
4592
|
-
},
|
|
4593
|
-
print: {
|
|
4594
|
-
pageStyle: {}
|
|
4595
|
-
},
|
|
4596
|
-
passwordInput: {
|
|
4597
|
-
controls: true
|
|
4598
|
-
},
|
|
4599
|
-
printPageBreak: {},
|
|
4600
|
-
pulldown: {
|
|
4601
|
-
destroyOnClose: true
|
|
4602
|
-
},
|
|
4603
|
-
radio: {
|
|
4604
|
-
strict: true
|
|
4605
|
-
},
|
|
4606
|
-
radioButton: {
|
|
4607
|
-
strict: true
|
|
4608
|
-
},
|
|
4609
|
-
radioGroup: {
|
|
4610
|
-
strict: true
|
|
4611
|
-
},
|
|
4612
|
-
rate: {},
|
|
4613
|
-
result: {},
|
|
4614
|
-
row: {},
|
|
4615
|
-
select: {
|
|
4616
|
-
multiCharOverflow: 8,
|
|
4617
|
-
remoteConfig: {
|
|
4618
|
-
enabled: true,
|
|
4619
|
-
autoLoad: true
|
|
4687
|
+
text: {
|
|
4688
|
+
copySuccess: '已复制到剪贴板',
|
|
4689
|
+
copyError: '当前环境不支持该操作'
|
|
4620
4690
|
},
|
|
4621
|
-
|
|
4622
|
-
|
|
4623
|
-
|
|
4624
|
-
|
|
4625
|
-
|
|
4626
|
-
|
|
4627
|
-
|
|
4628
|
-
|
|
4629
|
-
|
|
4630
|
-
|
|
4631
|
-
|
|
4632
|
-
|
|
4633
|
-
|
|
4634
|
-
|
|
4635
|
-
|
|
4636
|
-
|
|
4637
|
-
|
|
4638
|
-
|
|
4639
|
-
|
|
4640
|
-
|
|
4641
|
-
|
|
4642
|
-
|
|
4643
|
-
|
|
4644
|
-
|
|
4645
|
-
|
|
4646
|
-
|
|
4647
|
-
|
|
4648
|
-
|
|
4691
|
+
countdown: {
|
|
4692
|
+
formats: {
|
|
4693
|
+
yyyy: '年',
|
|
4694
|
+
MM: '月',
|
|
4695
|
+
dd: '天',
|
|
4696
|
+
HH: '时',
|
|
4697
|
+
mm: '分',
|
|
4698
|
+
ss: '秒'
|
|
4699
|
+
}
|
|
4700
|
+
},
|
|
4701
|
+
plugins: {
|
|
4702
|
+
extendCellArea: {
|
|
4703
|
+
area: {
|
|
4704
|
+
mergeErr: '无法对合并单元格进行该操作',
|
|
4705
|
+
multiErr: '无法对多重选择区域进行该操作',
|
|
4706
|
+
selectErr: '无法操作指定区域的单元格',
|
|
4707
|
+
extendErr: '如果延伸的区域包含被合并的单元格,所有合并的单元格需大小相同',
|
|
4708
|
+
pasteMultiErr: '无法粘贴,需要相同大小的复制的区域和粘贴的区域才能执行此操作',
|
|
4709
|
+
cpInvalidErr: '该操作无法进行,您选择的区域中存在被禁止的列({0})'
|
|
4710
|
+
},
|
|
4711
|
+
fnr: {
|
|
4712
|
+
title: '查找和替换',
|
|
4713
|
+
findLabel: '查找',
|
|
4714
|
+
replaceLabel: '替换',
|
|
4715
|
+
findTitle: '查找内容:',
|
|
4716
|
+
replaceTitle: '替换为:',
|
|
4717
|
+
tabs: {
|
|
4718
|
+
find: '查找',
|
|
4719
|
+
replace: '替换'
|
|
4720
|
+
},
|
|
4721
|
+
filter: {
|
|
4722
|
+
re: '正则表达式',
|
|
4723
|
+
whole: '全词匹配',
|
|
4724
|
+
sensitive: '区分大小写'
|
|
4725
|
+
},
|
|
4726
|
+
btns: {
|
|
4727
|
+
findNext: '查找下一个',
|
|
4728
|
+
findAll: '查找全部',
|
|
4729
|
+
replace: '替换',
|
|
4730
|
+
replaceAll: '替换全部',
|
|
4731
|
+
cancel: '取消'
|
|
4732
|
+
},
|
|
4733
|
+
header: {
|
|
4734
|
+
seq: '#',
|
|
4735
|
+
cell: '单元格',
|
|
4736
|
+
value: '值'
|
|
4737
|
+
},
|
|
4738
|
+
body: {
|
|
4739
|
+
row: '行:{0}',
|
|
4740
|
+
col: '列:{0}'
|
|
4741
|
+
},
|
|
4742
|
+
empty: '(空值)',
|
|
4743
|
+
reError: '无效的正则表达式',
|
|
4744
|
+
recordCount: '已找到 {0} 个单元格',
|
|
4745
|
+
notCell: '找不到匹配的单元格',
|
|
4746
|
+
replaceSuccess: '成功替换 {0} 个单元格'
|
|
4747
|
+
}
|
|
4649
4748
|
},
|
|
4650
|
-
|
|
4651
|
-
|
|
4652
|
-
|
|
4749
|
+
extendPivotTable: {
|
|
4750
|
+
aggregation: {
|
|
4751
|
+
grouping: '分组',
|
|
4752
|
+
values: '值',
|
|
4753
|
+
groupPlaceholder: '拖至此处进行分组',
|
|
4754
|
+
valuesPlaceholder: '拖至此处进行聚合',
|
|
4755
|
+
dragExistCol: '该列已存在',
|
|
4756
|
+
sortHelpTip: '点击并拖动图标可以调整顺序'
|
|
4757
|
+
},
|
|
4758
|
+
aggFuncs: {
|
|
4759
|
+
sum: '求和',
|
|
4760
|
+
count: '计数',
|
|
4761
|
+
avg: '平均值',
|
|
4762
|
+
min: '最小值',
|
|
4763
|
+
max: '最大值',
|
|
4764
|
+
first: '首个值',
|
|
4765
|
+
last: '末尾值'
|
|
4766
|
+
}
|
|
4653
4767
|
},
|
|
4654
|
-
|
|
4655
|
-
|
|
4656
|
-
|
|
4768
|
+
filterComplexInput: {
|
|
4769
|
+
menus: {
|
|
4770
|
+
fixedColumn: '冻结列',
|
|
4771
|
+
fixedGroup: '冻结分组',
|
|
4772
|
+
cancelFixed: '取消冻结',
|
|
4773
|
+
fixedLeft: '冻结左侧',
|
|
4774
|
+
fixedRight: '冻结右侧'
|
|
4775
|
+
},
|
|
4776
|
+
cases: {
|
|
4777
|
+
equal: '等于',
|
|
4778
|
+
gt: '大于',
|
|
4779
|
+
lt: '小于',
|
|
4780
|
+
begin: '开头是',
|
|
4781
|
+
endin: '结尾是',
|
|
4782
|
+
include: '包含',
|
|
4783
|
+
isSensitive: '区分大小写'
|
|
4784
|
+
}
|
|
4785
|
+
},
|
|
4786
|
+
filterCombination: {
|
|
4787
|
+
menus: {
|
|
4788
|
+
sort: '排序',
|
|
4789
|
+
clearSort: '清除排序',
|
|
4790
|
+
sortAsc: '升序',
|
|
4791
|
+
sortDesc: '降序',
|
|
4792
|
+
fixedColumn: '冻结列',
|
|
4793
|
+
fixedGroup: '冻结分组',
|
|
4794
|
+
cancelFixed: '取消冻结',
|
|
4795
|
+
fixedLeft: '冻结左侧',
|
|
4796
|
+
fixedRight: '冻结右侧',
|
|
4797
|
+
clearFilter: '清除筛选',
|
|
4798
|
+
textOption: '文本筛选',
|
|
4799
|
+
numberOption: '数值筛选'
|
|
4800
|
+
},
|
|
4801
|
+
popup: {
|
|
4802
|
+
title: '自定义筛选的方式',
|
|
4803
|
+
currColumnTitle: '当前列:',
|
|
4804
|
+
and: '与',
|
|
4805
|
+
or: '或',
|
|
4806
|
+
describeHtml: '可用 ? 代表单个字符<br/>用 * 代表任意多个字符'
|
|
4807
|
+
},
|
|
4808
|
+
cases: {
|
|
4809
|
+
equal: '等于',
|
|
4810
|
+
unequal: '不等于',
|
|
4811
|
+
gt: '大于',
|
|
4812
|
+
ge: '大于或等于',
|
|
4813
|
+
lt: '小于',
|
|
4814
|
+
le: '小于或等于',
|
|
4815
|
+
begin: '开头是',
|
|
4816
|
+
notbegin: '开头不是',
|
|
4817
|
+
endin: '结尾是',
|
|
4818
|
+
notendin: '结尾不是',
|
|
4819
|
+
include: '包含',
|
|
4820
|
+
exclude: '不包含',
|
|
4821
|
+
between: '介于',
|
|
4822
|
+
custom: '自定义筛选',
|
|
4823
|
+
insensitive: '不区分大小写',
|
|
4824
|
+
isSensitive: '区分大小写'
|
|
4825
|
+
},
|
|
4826
|
+
empty: '(空白)',
|
|
4827
|
+
notData: '无匹配项'
|
|
4657
4828
|
}
|
|
4658
|
-
}
|
|
4659
|
-
},
|
|
4660
|
-
tabs: {},
|
|
4661
|
-
tag: {},
|
|
4662
|
-
textEllipsis: {
|
|
4663
|
-
underline: true
|
|
4664
|
-
},
|
|
4665
|
-
text: {},
|
|
4666
|
-
textarea: {
|
|
4667
|
-
resize: 'none'
|
|
4668
|
-
},
|
|
4669
|
-
tip: {},
|
|
4670
|
-
tooltip: {
|
|
4671
|
-
// size: null,
|
|
4672
|
-
// enterable: false,
|
|
4673
|
-
trigger: 'hover',
|
|
4674
|
-
theme: 'dark',
|
|
4675
|
-
enterDelay: 500,
|
|
4676
|
-
leaveDelay: 300,
|
|
4677
|
-
isArrow: true
|
|
4678
|
-
},
|
|
4679
|
-
tree: {
|
|
4680
|
-
// autoResize: false,
|
|
4681
|
-
indent: 20,
|
|
4682
|
-
minHeight: 60,
|
|
4683
|
-
radioConfig: {
|
|
4684
|
-
strict: true
|
|
4685
4829
|
},
|
|
4686
|
-
|
|
4687
|
-
|
|
4688
|
-
|
|
4689
|
-
|
|
4690
|
-
|
|
4691
|
-
|
|
4692
|
-
|
|
4693
|
-
|
|
4694
|
-
|
|
4695
|
-
|
|
4696
|
-
|
|
4697
|
-
|
|
4830
|
+
pro: {
|
|
4831
|
+
area: {
|
|
4832
|
+
mergeErr: '无法对合并单元格进行该操作',
|
|
4833
|
+
multiErr: '无法对多重选择区域进行该操作',
|
|
4834
|
+
extendErr: '如果延伸的区域包含被合并的单元格,所有合并的单元格需大小相同',
|
|
4835
|
+
pasteMultiErr: '无法粘贴,需要相同大小的复制的区域和粘贴的区域才能执行此操作'
|
|
4836
|
+
},
|
|
4837
|
+
fnr: {
|
|
4838
|
+
title: '查找和替换',
|
|
4839
|
+
findLabel: '查找',
|
|
4840
|
+
replaceLabel: '替换',
|
|
4841
|
+
findTitle: '查找内容:',
|
|
4842
|
+
replaceTitle: '替换为:',
|
|
4843
|
+
tabs: {
|
|
4844
|
+
find: '查找',
|
|
4845
|
+
replace: '替换'
|
|
4846
|
+
},
|
|
4847
|
+
filter: {
|
|
4848
|
+
re: '正则表达式',
|
|
4849
|
+
whole: '全词匹配',
|
|
4850
|
+
sensitive: '区分大小写'
|
|
4851
|
+
},
|
|
4852
|
+
btns: {
|
|
4853
|
+
findNext: '查找下一个',
|
|
4854
|
+
findAll: '查找全部',
|
|
4855
|
+
replace: '替换',
|
|
4856
|
+
replaceAll: '替换全部',
|
|
4857
|
+
cancel: '取消'
|
|
4858
|
+
},
|
|
4859
|
+
header: {
|
|
4860
|
+
seq: '#',
|
|
4861
|
+
cell: '单元格',
|
|
4862
|
+
value: '值'
|
|
4863
|
+
},
|
|
4864
|
+
empty: '(空值)',
|
|
4865
|
+
reError: '无效的正则表达式',
|
|
4866
|
+
recordCount: '已找到 {0} 个单元格',
|
|
4867
|
+
notCell: '找不到匹配的单元格',
|
|
4868
|
+
replaceSuccess: '成功替换 {0} 个单元格'
|
|
4869
|
+
}
|
|
4698
4870
|
},
|
|
4699
|
-
|
|
4700
|
-
|
|
4701
|
-
|
|
4702
|
-
|
|
4703
|
-
|
|
4704
|
-
|
|
4871
|
+
renderer: {
|
|
4872
|
+
search: '搜索',
|
|
4873
|
+
cases: {
|
|
4874
|
+
equal: '等于',
|
|
4875
|
+
unequal: '不等于',
|
|
4876
|
+
gt: '大于',
|
|
4877
|
+
ge: '大于或等于',
|
|
4878
|
+
lt: '小于',
|
|
4879
|
+
le: '小于或等于',
|
|
4880
|
+
begin: '开头是',
|
|
4881
|
+
notbegin: '开头不是',
|
|
4882
|
+
endin: '结尾是',
|
|
4883
|
+
notendin: '结尾不是',
|
|
4884
|
+
include: '包含',
|
|
4885
|
+
exclude: '不包含',
|
|
4886
|
+
between: '介于',
|
|
4887
|
+
custom: '自定义筛选',
|
|
4888
|
+
insensitive: '不区分大小写',
|
|
4889
|
+
isSensitive: '区分大小写'
|
|
4890
|
+
},
|
|
4891
|
+
combination: {
|
|
4892
|
+
menus: {
|
|
4893
|
+
sort: '排序',
|
|
4894
|
+
clearSort: '清除排序',
|
|
4895
|
+
sortAsc: '升序',
|
|
4896
|
+
sortDesc: '降序',
|
|
4897
|
+
fixedColumn: '冻结列',
|
|
4898
|
+
fixedGroup: '冻结分组',
|
|
4899
|
+
cancelFixed: '取消冻结',
|
|
4900
|
+
fixedLeft: '冻结到左侧',
|
|
4901
|
+
fixedRight: '冻结到右侧',
|
|
4902
|
+
clearFilter: '清除筛选',
|
|
4903
|
+
textOption: '文本筛选',
|
|
4904
|
+
numberOption: '数值筛选'
|
|
4905
|
+
},
|
|
4906
|
+
popup: {
|
|
4907
|
+
title: '自定义筛选的方式',
|
|
4908
|
+
currColumnTitle: '当前列:',
|
|
4909
|
+
and: '与',
|
|
4910
|
+
or: '或',
|
|
4911
|
+
describeHtml: '可用 ? 代表单个字符<br/>用 * 代表任意多个字符'
|
|
4912
|
+
},
|
|
4913
|
+
empty: '(空白)',
|
|
4914
|
+
notData: '无匹配项'
|
|
4705
4915
|
}
|
|
4706
4916
|
}
|
|
4707
|
-
}
|
|
4708
|
-
upload: {
|
|
4709
|
-
mode: 'all',
|
|
4710
|
-
imageTypes: ['jpg', 'jpeg', 'png', 'gif'],
|
|
4711
|
-
showList: true,
|
|
4712
|
-
showUploadButton: true,
|
|
4713
|
-
showButtonText: true,
|
|
4714
|
-
showRemoveButton: true,
|
|
4715
|
-
showButtonIcon: true,
|
|
4716
|
-
showPreview: true,
|
|
4717
|
-
dragToUpload: true,
|
|
4718
|
-
// imageConfig: {},
|
|
4719
|
-
showLimitSize: true,
|
|
4720
|
-
showLimitCount: true,
|
|
4721
|
-
autoSubmit: true,
|
|
4722
|
-
maxSimultaneousUploads: 5
|
|
4723
|
-
},
|
|
4724
|
-
watermark: {
|
|
4725
|
-
rotate: -30,
|
|
4726
|
-
gap: [100, 100]
|
|
4727
|
-
},
|
|
4728
|
-
table: {},
|
|
4729
|
-
colgroup: {},
|
|
4730
|
-
column: {},
|
|
4731
|
-
toolbar: {},
|
|
4732
|
-
grid: {},
|
|
4733
|
-
gantt: {}
|
|
4734
|
-
});
|
|
4735
|
-
const iconPrefix = 'vxe-icon-';
|
|
4736
|
-
setIcon({
|
|
4737
|
-
// loading
|
|
4738
|
-
LOADING: iconPrefix + 'spinner roll vxe-loading--default-icon',
|
|
4739
|
-
// button
|
|
4740
|
-
BUTTON_DROPDOWN: iconPrefix + 'arrow-down',
|
|
4741
|
-
BUTTON_LOADING: iconPrefix + 'spinner roll',
|
|
4742
|
-
BUTTON_TOOLTIP_ICON: iconPrefix + 'question-circle-fill',
|
|
4743
|
-
// menu
|
|
4744
|
-
MENU_ITEM_EXPAND_OPEN: iconPrefix + 'arrow-down rotate180',
|
|
4745
|
-
MENU_ITEM_EXPAND_CLOSE: iconPrefix + 'arrow-down',
|
|
4746
|
-
// select
|
|
4747
|
-
SELECT_LOADED: iconPrefix + 'spinner roll',
|
|
4748
|
-
SELECT_OPEN: iconPrefix + 'caret-down rotate180',
|
|
4749
|
-
SELECT_CLOSE: iconPrefix + 'caret-down',
|
|
4750
|
-
SELECT_ADD_OPTION: iconPrefix + 'add',
|
|
4751
|
-
// icon-picker
|
|
4752
|
-
ICON_PICKER_OPEN: iconPrefix + 'caret-down rotate180',
|
|
4753
|
-
ICON_PICKER_CLOSE: iconPrefix + 'caret-down',
|
|
4754
|
-
// pager
|
|
4755
|
-
PAGER_HOME: iconPrefix + 'home-page',
|
|
4756
|
-
PAGER_END: iconPrefix + 'end-page',
|
|
4757
|
-
PAGER_JUMP_PREV: iconPrefix + 'arrow-double-left',
|
|
4758
|
-
PAGER_JUMP_NEXT: iconPrefix + 'arrow-double-right',
|
|
4759
|
-
PAGER_PREV_PAGE: iconPrefix + 'arrow-left',
|
|
4760
|
-
PAGER_NEXT_PAGE: iconPrefix + 'arrow-right',
|
|
4761
|
-
PAGER_JUMP_MORE: iconPrefix + 'ellipsis-h',
|
|
4762
|
-
// radio
|
|
4763
|
-
RADIO_CHECKED: iconPrefix + 'radio-checked-fill',
|
|
4764
|
-
RADIO_UNCHECKED: iconPrefix + 'radio-unchecked',
|
|
4765
|
-
RADIO_DISABLED_UNCHECKED: iconPrefix + 'radio-unchecked-fill',
|
|
4766
|
-
// checkbox
|
|
4767
|
-
CHECKBOX_INDETERMINATE: iconPrefix + 'checkbox-indeterminate-fill',
|
|
4768
|
-
CHECKBOX_CHECKED: iconPrefix + 'checkbox-checked-fill',
|
|
4769
|
-
CHECKBOX_UNCHECKED: iconPrefix + 'checkbox-unchecked',
|
|
4770
|
-
CHECKBOX_DISABLED_UNCHECKED: iconPrefix + 'checkbox-unchecked-fill',
|
|
4771
|
-
// input
|
|
4772
|
-
INPUT_CLEAR: iconPrefix + 'error-circle-fill',
|
|
4773
|
-
INPUT_SEARCH: iconPrefix + 'search',
|
|
4774
|
-
INPUT_PLUS_NUM: iconPrefix + 'caret-up',
|
|
4775
|
-
INPUT_MINUS_NUM: iconPrefix + 'caret-down',
|
|
4776
|
-
// number-picker
|
|
4777
|
-
NUMBER_INPUT_MINUS_NUM: iconPrefix + 'minus',
|
|
4778
|
-
NUMBER_INPUT_PLUS_NUM: iconPrefix + 'add',
|
|
4779
|
-
// date-picker
|
|
4780
|
-
DATE_PICKER_DATE: iconPrefix + 'calendar',
|
|
4781
|
-
// password-input
|
|
4782
|
-
PASSWORD_INPUT_SHOW_PWD: iconPrefix + 'eye-fill-close',
|
|
4783
|
-
PASSWORD_INPUT_HIDE_PWD: iconPrefix + 'eye-fill',
|
|
4784
|
-
// modal
|
|
4785
|
-
MODAL_ZOOM_MIN: iconPrefix + 'minus',
|
|
4786
|
-
MODAL_ZOOM_REVERT: iconPrefix + 'recover',
|
|
4787
|
-
MODAL_ZOOM_IN: iconPrefix + 'square',
|
|
4788
|
-
MODAL_ZOOM_OUT: iconPrefix + 'maximize',
|
|
4789
|
-
MODAL_CLOSE: iconPrefix + 'close',
|
|
4790
|
-
MODAL_INFO: iconPrefix + 'info-circle-fill',
|
|
4791
|
-
MODAL_SUCCESS: iconPrefix + 'success-circle-fill',
|
|
4792
|
-
MODAL_WARNING: iconPrefix + 'warning-circle-fill',
|
|
4793
|
-
MODAL_ERROR: iconPrefix + 'error-circle-fill',
|
|
4794
|
-
MODAL_QUESTION: iconPrefix + 'question-circle-fill',
|
|
4795
|
-
MODAL_LOADING: iconPrefix + 'spinner roll',
|
|
4796
|
-
// drawer
|
|
4797
|
-
DRAWER_CLOSE: iconPrefix + 'close',
|
|
4798
|
-
// form
|
|
4799
|
-
FORM_PREFIX: iconPrefix + 'question-circle-fill',
|
|
4800
|
-
FORM_SUFFIX: iconPrefix + 'question-circle-fill',
|
|
4801
|
-
FORM_FOLDING: iconPrefix + 'arrow-up rotate180',
|
|
4802
|
-
FORM_UNFOLDING: iconPrefix + 'arrow-up',
|
|
4803
|
-
// form-design
|
|
4804
|
-
FORM_DESIGN_STYLE_SETTING: iconPrefix + 'layout',
|
|
4805
|
-
FORM_DESIGN_PROPS_PC: iconPrefix + 'pc',
|
|
4806
|
-
FORM_DESIGN_PROPS_MOBILE: iconPrefix + 'mobile',
|
|
4807
|
-
FORM_DESIGN_PROPS_ADD: iconPrefix + 'add',
|
|
4808
|
-
FORM_DESIGN_PROPS_EDIT: iconPrefix + 'edit',
|
|
4809
|
-
FORM_DESIGN_WIDGET_ADD: iconPrefix + 'square-plus-fill',
|
|
4810
|
-
FORM_DESIGN_WIDGET_COPY: iconPrefix + 'copy',
|
|
4811
|
-
FORM_DESIGN_WIDGET_DELETE: iconPrefix + 'delete',
|
|
4812
|
-
FORM_DESIGN_WIDGET_SWAP_LR: iconPrefix + 'swap',
|
|
4813
|
-
FORM_DESIGN_WIDGET_OPTION_DELETE: iconPrefix + 'delete',
|
|
4814
|
-
FORM_DESIGN_WIDGET_OPTION_EXPAND_OPEN: iconPrefix + 'square-plus',
|
|
4815
|
-
FORM_DESIGN_WIDGET_OPTION_EXPAND_CLOSE: iconPrefix + 'square-minus',
|
|
4816
|
-
// list-design
|
|
4817
|
-
LIST_DESIGN_FIELD_SETTING: iconPrefix + 'custom-column',
|
|
4818
|
-
LIST_DESIGN_LIST_SETTING: iconPrefix + 'menu',
|
|
4819
|
-
LIST_DESIGN_LIST_SETTING_SEARCH_DELETE: iconPrefix + 'delete',
|
|
4820
|
-
LIST_DESIGN_LIST_SETTING_ACTIVE_DELETE: iconPrefix + 'delete',
|
|
4821
|
-
// upload
|
|
4822
|
-
UPLOAD_FILE_ERROR: iconPrefix + 'warning-circle-fill',
|
|
4823
|
-
UPLOAD_FILE_ADD: iconPrefix + 'upload',
|
|
4824
|
-
UPLOAD_FILE_REMOVE: iconPrefix + 'delete',
|
|
4825
|
-
UPLOAD_FILE_DOWNLOAD: iconPrefix + 'download',
|
|
4826
|
-
UPLOAD_IMAGE_UPLOAD: iconPrefix + 'upload',
|
|
4827
|
-
UPLOAD_IMAGE_RE_UPLOAD: iconPrefix + 'repeat',
|
|
4828
|
-
UPLOAD_IMAGE_ADD: iconPrefix + 'add',
|
|
4829
|
-
UPLOAD_IMAGE_REMOVE: iconPrefix + 'close',
|
|
4830
|
-
UPLOAD_LOADING: iconPrefix + 'spinner roll vxe-loading--default-icon',
|
|
4831
|
-
UPLOAD_FILE_TYPE_DEFAULT: iconPrefix + 'file',
|
|
4832
|
-
UPLOAD_FILE_TYPE_XLSX: iconPrefix + 'file-excel',
|
|
4833
|
-
UPLOAD_FILE_TYPE_XLS: iconPrefix + 'file-excel',
|
|
4834
|
-
UPLOAD_FILE_TYPE_PDF: iconPrefix + 'file-pdf',
|
|
4835
|
-
UPLOAD_FILE_TYPE_PNG: iconPrefix + 'file-image',
|
|
4836
|
-
UPLOAD_FILE_TYPE_GIF: iconPrefix + 'file-image',
|
|
4837
|
-
UPLOAD_FILE_TYPE_JPG: iconPrefix + 'file-image',
|
|
4838
|
-
UPLOAD_FILE_TYPE_JPEG: iconPrefix + 'file-image',
|
|
4839
|
-
UPLOAD_FILE_TYPE_MD: iconPrefix + 'file-markdown',
|
|
4840
|
-
UPLOAD_FILE_TYPE_PPD: iconPrefix + 'file-ppt',
|
|
4841
|
-
UPLOAD_FILE_TYPE_DOCX: iconPrefix + 'file-word',
|
|
4842
|
-
UPLOAD_FILE_TYPE_DOC: iconPrefix + 'file-word',
|
|
4843
|
-
UPLOAD_FILE_TYPE_ZIP: iconPrefix + 'file-zip',
|
|
4844
|
-
UPLOAD_FILE_TYPE_TXT: iconPrefix + 'file-txt',
|
|
4845
|
-
// image-preview
|
|
4846
|
-
IMAGE_PREVIEW_CLOSE: iconPrefix + 'close',
|
|
4847
|
-
IMAGE_PREVIEW_PREVIOUS: iconPrefix + 'arrow-left',
|
|
4848
|
-
IMAGE_PREVIEW_NEXT: iconPrefix + 'arrow-right',
|
|
4849
|
-
IMAGE_PREVIEW_PCT_FULL: iconPrefix + 'pct-full',
|
|
4850
|
-
IMAGE_PREVIEW_PCT_1_1: iconPrefix + 'pct-1-1',
|
|
4851
|
-
IMAGE_PREVIEW_ZOOM_OUT: iconPrefix + 'search-zoom-out',
|
|
4852
|
-
IMAGE_PREVIEW_ZOOM_IN: iconPrefix + 'search-zoom-in',
|
|
4853
|
-
IMAGE_PREVIEW_ROTATE_LEFT: iconPrefix + 'rotate-left',
|
|
4854
|
-
IMAGE_PREVIEW_ROTATE_RIGHT: iconPrefix + 'rotate-right',
|
|
4855
|
-
IMAGE_PREVIEW_PRINT: iconPrefix + 'print',
|
|
4856
|
-
IMAGE_PREVIEW_DOWNLOAD: iconPrefix + 'download',
|
|
4857
|
-
// alert
|
|
4858
|
-
ALERT_CLOSE: iconPrefix + 'close',
|
|
4859
|
-
ALERT_INFO: iconPrefix + 'info-circle-fill',
|
|
4860
|
-
ALERT_SUCCESS: iconPrefix + 'success-circle-fill',
|
|
4861
|
-
ALERT_WARNING: iconPrefix + 'warning-circle-fill',
|
|
4862
|
-
ALERT_ERROR: iconPrefix + 'error-circle-fill',
|
|
4863
|
-
// tree
|
|
4864
|
-
TREE_NODE_OPEN: iconPrefix + 'caret-right rotate90',
|
|
4865
|
-
TREE_NODE_CLOSE: iconPrefix + 'caret-right',
|
|
4866
|
-
TREE_NODE_LOADED: iconPrefix + 'spinner roll',
|
|
4867
|
-
// tree-select
|
|
4868
|
-
TREE_SELECT_LOADED: iconPrefix + 'spinner roll',
|
|
4869
|
-
TREE_SELECT_OPEN: iconPrefix + 'caret-down rotate180',
|
|
4870
|
-
TREE_SELECT_CLOSE: iconPrefix + 'caret-down',
|
|
4871
|
-
// table-select
|
|
4872
|
-
TABLE_SELECT_LOADED: iconPrefix + 'spinner roll',
|
|
4873
|
-
TABLE_SELECT_OPEN: iconPrefix + 'caret-down rotate180',
|
|
4874
|
-
TABLE_SELECT_CLOSE: iconPrefix + 'caret-down',
|
|
4875
|
-
// tabs
|
|
4876
|
-
TABS_TAB_BUTTON_TOP: iconPrefix + 'arrow-up',
|
|
4877
|
-
TABS_TAB_BUTTON_BOTTOM: iconPrefix + 'arrow-down',
|
|
4878
|
-
TABS_TAB_BUTTON_LEFT: iconPrefix + 'arrow-left',
|
|
4879
|
-
TABS_TAB_BUTTON_RIGHT: iconPrefix + 'arrow-right',
|
|
4880
|
-
TABS_TAB_CLOSE: iconPrefix + 'close',
|
|
4881
|
-
TABS_TAB_REFRESH: iconPrefix + 'refresh',
|
|
4882
|
-
TABS_TAB_REFRESH_LOADING: iconPrefix + 'refresh roll',
|
|
4883
|
-
// text
|
|
4884
|
-
TEXT_COPY: iconPrefix + 'copy',
|
|
4885
|
-
TEXT_LOADING: iconPrefix + 'spinner roll',
|
|
4886
|
-
// carousel
|
|
4887
|
-
CAROUSEL_HORIZONTAL_PREVIOUS: iconPrefix + 'arrow-left',
|
|
4888
|
-
CAROUSEL_HORIZONTAL_NEXT: iconPrefix + 'arrow-right',
|
|
4889
|
-
CAROUSEL_VERTICAL_PREVIOUS: iconPrefix + 'arrow-up',
|
|
4890
|
-
CAROUSEL_VERTICAL_NEXT: iconPrefix + 'arrow-down',
|
|
4891
|
-
// collapse
|
|
4892
|
-
COLLAPSE_OPEN: iconPrefix + 'arrow-right rotate90',
|
|
4893
|
-
COLLAPSE_CLOSE: iconPrefix + 'arrow-right',
|
|
4894
|
-
// empty
|
|
4895
|
-
EMPTY_DEFAULT: iconPrefix + 'empty',
|
|
4896
|
-
// result
|
|
4897
|
-
RESULT_INFO: iconPrefix + 'info-circle-fill',
|
|
4898
|
-
RESULT_SUCCESS: iconPrefix + 'success-circle-fill',
|
|
4899
|
-
RESULT_WARNING: iconPrefix + 'warning-circle-fill',
|
|
4900
|
-
RESULT_ERROR: iconPrefix + 'error-circle-fill',
|
|
4901
|
-
RESULT_QUESTION: iconPrefix + 'question-circle-fill',
|
|
4902
|
-
RESULT_LOADING: iconPrefix + 'spinner roll',
|
|
4903
|
-
// rate
|
|
4904
|
-
RATE_CHECKED: iconPrefix + 'star-fill',
|
|
4905
|
-
RATE_UNCHECKED: iconPrefix + 'star',
|
|
4906
|
-
// color-picker
|
|
4907
|
-
COLOR_PICKER_COLOR_COPY: iconPrefix + 'copy',
|
|
4908
|
-
COLOR_PICKER_EYE_DROPPER: iconPrefix + 'dropper',
|
|
4909
|
-
COLOR_PICKER_TPTY_OPEN: iconPrefix + 'arrow-down rotate180',
|
|
4910
|
-
COLOR_PICKER_TPTY_CLOSE: iconPrefix + 'arrow-down',
|
|
4911
|
-
// split
|
|
4912
|
-
SPLIT_TOP_ACTION: iconPrefix + 'arrow-up',
|
|
4913
|
-
SPLIT_BOTTOM_ACTION: iconPrefix + 'arrow-down',
|
|
4914
|
-
SPLIT_LEFT_ACTION: iconPrefix + 'arrow-left',
|
|
4915
|
-
SPLIT_RIGHT_ACTION: iconPrefix + 'arrow-right'
|
|
4917
|
+
}
|
|
4916
4918
|
});
|
|
4917
|
-
|
|
4918
|
-
/* harmony default export */ var ui = ((/* unused pure expression or super */ null && (VxeUI)));
|
|
4919
4919
|
;// CONCATENATED MODULE: ./packages/ui/src/vn.ts
|
|
4920
4920
|
|
|
4921
4921
|
function getOnName(type) {
|
|
@@ -43214,16 +43214,22 @@ const Watermark = VxeWatermark;
|
|
|
43214
43214
|
|
|
43215
43215
|
|
|
43216
43216
|
|
|
43217
|
+
const {
|
|
43218
|
+
setI18n: components_setI18n,
|
|
43219
|
+
setLanguage: components_setLanguage,
|
|
43220
|
+
setTheme: components_setTheme,
|
|
43221
|
+
setConfig: components_setConfig
|
|
43222
|
+
} = index_esm_VxeUI;
|
|
43217
43223
|
const components_components = [packages_alert, packages_anchor, packages_anchor_link, packages_avatar, packages_badge, packages_breadcrumb, packages_breadcrumb_item, packages_button, packages_button_group, packages_calendar, packages_card, packages_carousel, packages_carousel_item, packages_checkbox, checkbox_button, checkbox_group, packages_col, packages_collapse, packages_collapse_pane, packages_color_picker, packages_countdown, packages_date_panel, packages_date_picker, packages_date_range_picker, packages_drawer, packages_empty, packages_form, form_gather, packages_form_group, packages_form_item, packages_icon, packages_icon_picker, packages_image, image_group, image_preview, packages_input, packages_layout_aside, packages_layout_body, packages_layout_container, packages_layout_footer, packages_layout_header, packages_link, packages_list, loading, packages_menu, packages_modal, packages_notice_bar, packages_number_input, packages_optgroup, packages_option, packages_pager, packages_password_input, print_page_break, packages_print, packages_pulldown, packages_radio, radio_button, radio_group, packages_rate, packages_result, packages_row, packages_select, packages_split, packages_split_pane, packages_slider, packages_steps, packages_switch, packages_tab_pane, packages_table_select, packages_tabs, packages_tag, packages_text_ellipsis, packages_text, packages_textarea, packages_tip, packages_tooltip, packages_tree, packages_tree_select, packages_upload, packages_watermark];
|
|
43218
43224
|
function install(app, options) {
|
|
43219
|
-
|
|
43225
|
+
components_setConfig(options);
|
|
43220
43226
|
components_components.forEach(component => app.use(component));
|
|
43221
43227
|
}
|
|
43222
43228
|
// 默认中文
|
|
43223
43229
|
const defaultLanguage = 'zh-CN';
|
|
43224
|
-
|
|
43225
|
-
|
|
43226
|
-
|
|
43230
|
+
components_setI18n(defaultLanguage, zh_CN);
|
|
43231
|
+
components_setLanguage(defaultLanguage);
|
|
43232
|
+
components_setTheme('light');
|
|
43227
43233
|
// 兼容老版本
|
|
43228
43234
|
const components_loading = LoadingController;
|
|
43229
43235
|
const components_modal = ModalController;
|