@10yun/cv-mobile-ui 0.5.29 → 0.5.31
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/package.json +5 -1
- package/plugins/luch-request/adapters/index.js +131 -0
- package/plugins/luch-request/core/InterceptorManager.js +50 -0
- package/plugins/luch-request/core/Request.js +199 -0
- package/plugins/luch-request/core/buildFullPath.js +20 -0
- package/plugins/luch-request/core/defaults.js +32 -0
- package/plugins/luch-request/core/dispatchRequest.js +5 -0
- package/plugins/luch-request/core/mergeConfig.js +125 -0
- package/plugins/luch-request/core/settle.js +16 -0
- package/plugins/luch-request/helpers/buildURL.js +71 -0
- package/plugins/luch-request/helpers/combineURLs.js +12 -0
- package/plugins/luch-request/helpers/isAbsoluteURL.js +14 -0
- package/plugins/luch-request/index.d.ts +197 -0
- package/plugins/luch-request/index.js +2 -0
- package/plugins/luch-request/readme.md +3 -0
- package/plugins/luch-request/utils/clone.js +264 -0
- package/plugins/luch-request/utils.js +131 -0
- package/plugins/request.js +2 -2
- package/ui-cv/components/cv-btn-base/cv-btn-base.vue +1 -1
- package/ui-cv/components/cv-form-item/cv-form-item.vue +1 -1
- package/ui-fireui/fui-actionsheet/fui-actionsheet.vue +202 -0
- package/ui-fireui/fui-alert/fui-alert.vue +141 -0
- package/ui-fireui/fui-badge/fui-badge.vue +158 -0
- package/ui-fireui/fui-bottom-navigation/fui-bottom-navigation.vue +390 -0
- package/ui-fireui/fui-bottom-popup/fui-bottom-popup.vue +100 -0
- package/ui-fireui/fui-bubble-popup/fui-bubble-popup.vue +236 -0
- package/ui-fireui/fui-button/fui-button.vue +424 -0
- package/ui-fireui/fui-calendar/fui-calendar.js +915 -0
- package/ui-fireui/fui-calendar/fui-calendar.vue +868 -0
- package/ui-fireui/fui-card/fui-card.vue +231 -0
- package/ui-fireui/fui-cascade-selection/fui-cascade-selection.vue +538 -0
- package/ui-fireui/fui-circular-progress/fui-circular-progress.vue +261 -0
- package/ui-fireui/fui-collapse/fui-collapse.vue +179 -0
- package/ui-fireui/fui-countdown/fui-countdown.vue +301 -0
- package/ui-fireui/fui-datetime/fui-datetime.vue +570 -0
- package/ui-fireui/fui-divider/fui-divider.vue +118 -0
- package/ui-fireui/fui-drawer/fui-drawer.vue +103 -0
- package/ui-fireui/fui-dropdown-list/fui-dropdown-list.vue +70 -0
- package/ui-fireui/fui-fab/fui-fab.vue +284 -0
- package/ui-fireui/fui-footer/fui-footer.vue +131 -0
- package/ui-fireui/fui-grid/fui-grid.vue +42 -0
- package/ui-fireui/fui-grid-item/fui-grid-item.vue +142 -0
- package/ui-fireui/fui-icon/fui-icon.vue +820 -0
- package/ui-fireui/fui-image-cropper/fui-image-cropper.vue +1058 -0
- package/ui-fireui/fui-image-group/fui-image-group.vue +149 -0
- package/ui-fireui/fui-keyboard/fui-keyboard.vue +254 -0
- package/ui-fireui/fui-keyboard-input/fui-keyboard-input.vue +78 -0
- package/ui-fireui/fui-list-cell/fui-list-cell.vue +178 -0
- package/ui-fireui/fui-list-view/fui-list-view.vue +87 -0
- package/ui-fireui/fui-loading/fui-loading.vue +78 -0
- package/ui-fireui/fui-loadmore/fui-loadmore.vue +163 -0
- package/ui-fireui/fui-modal/fui-modal.vue +392 -0
- package/ui-fireui/fui-navigation-bar/fui-navigation-bar.vue +180 -0
- package/ui-fireui/fui-no-data/fui-no-data.vue +116 -0
- package/ui-fireui/fui-nomore/fui-nomore.vue +116 -0
- package/ui-fireui/fui-numberbox/fui-numberbox.vue +234 -0
- package/ui-fireui/fui-numberbox-border/fui-numberbox-border.vue +232 -0
- package/ui-fireui/fui-picture-cropper/fui-picture-cropper.vue +682 -0
- package/ui-fireui/fui-picture-cropper/fui-picture-cropper.wxs +560 -0
- package/ui-fireui/fui-rate/fui-rate.vue +167 -0
- package/ui-fireui/fui-round-progress/fui-round-progress.vue +306 -0
- package/ui-fireui/fui-scroll-top/fui-scroll-top.vue +189 -0
- package/ui-fireui/fui-sharemodel/fui-sharemodel.vue +181 -0
- package/ui-fireui/fui-skeleton/fui-skeleton.vue +248 -0
- package/ui-fireui/fui-steps/fui-steps.vue +214 -0
- package/ui-fireui/fui-sticky/fui-sticky.vue +155 -0
- package/ui-fireui/fui-sticky-wxs/fui-sticky-wxs.vue +133 -0
- package/ui-fireui/fui-sticky-wxs/fui-sticky.wxs +44 -0
- package/ui-fireui/fui-swipe-action/fui-swipe-action.vue +301 -0
- package/ui-fireui/fui-tabbar/fui-tabbar.vue +283 -0
- package/ui-fireui/fui-tabs/fui-tabs.vue +284 -0
- package/ui-fireui/fui-tabs2/fui-tabs2.vue +284 -0
- package/ui-fireui/fui-tag/fui-tag.vue +374 -0
- package/ui-fireui/fui-time-axis/fui-time-axis.vue +36 -0
- package/ui-fireui/fui-timeaxis-item/fui-timeaxis-item.vue +48 -0
- package/ui-fireui/fui-tips/fui-tips.vue +161 -0
- package/ui-fireui/fui-toast/fui-toast.vue +117 -0
- package/ui-fireui/fui-top-dropdown/fui-top-dropdown.vue +129 -0
- package/ui-fireui/fui-upload/fui-upload.vue +446 -0
- package/ui-fireui/fui-uploadsamll/fui-uploadsamll.vue +472 -0
- package/uview-plus/README.md +2 -2
- package/uview-plus/changelog-wu-tool.md +21 -0
- package/uview-plus/changelog-wu.md +91 -0
- package/uview-plus/components/u-action-sheet/_doc/changelog.md +12 -0
- package/uview-plus/components/u-action-sheet/_doc/package.json +92 -0
- package/uview-plus/components/u-action-sheet/_doc/readme.md +16 -0
- package/uview-plus/components/u-action-sheet/u-action-sheet.vue +8 -8
- package/uview-plus/components/u-album/u-album.vue +1 -1
- package/uview-plus/components/u-alert/u-alert.vue +5 -5
- package/uview-plus/components/u-app-update/_doc/changelog.md +26 -0
- package/uview-plus/components/u-app-update/_doc/package.json +89 -0
- package/uview-plus/components/u-app-update/_doc/readme.md +16 -0
- package/uview-plus/components/u-app-update/config.js +120 -0
- package/uview-plus/components/u-app-update/img/act.png +0 -0
- package/uview-plus/components/u-app-update/img/appUploadAlertBoxBg.png +0 -0
- package/uview-plus/components/u-app-update/img/close.png +0 -0
- package/uview-plus/components/u-app-update/js-sdk/checkVersion.js +81 -0
- package/uview-plus/components/u-app-update/js-sdk/silentlyAppUpdate.js +41 -0
- package/uview-plus/components/u-app-update/pages/index.vue +8 -0
- package/uview-plus/components/u-app-update/u-app-update.vue +583 -0
- package/uview-plus/components/u-avatar/u-avatar.vue +2 -2
- package/uview-plus/components/u-avatar-group/u-avatar-group.vue +79 -3
- package/uview-plus/components/u-back-top/u-back-top.vue +4 -4
- package/uview-plus/components/u-badge/u-badge.vue +1 -1
- package/uview-plus/components/u-button/u-button.vue +8 -8
- package/uview-plus/components/u-button-wu/_doc/changelog.md +6 -0
- package/uview-plus/components/u-button-wu/_doc/package.json +89 -0
- package/uview-plus/components/u-button-wu/_doc/readme.md +16 -0
- package/uview-plus/components/u-button-wu/u-button-wu.vue +522 -0
- package/uview-plus/components/u-button-wu/vue.scss +81 -0
- package/uview-plus/components/u-calendar/u-calendar.vue +5 -6
- package/uview-plus/components/u-calendar-wu/_doc/changelog.md +145 -0
- package/uview-plus/components/u-calendar-wu/_doc/package.json +90 -0
- package/uview-plus/components/u-calendar-wu/_doc/readme.md +16 -0
- package/uview-plus/components/u-calendar-wu/calendar.js +664 -0
- package/uview-plus/components/u-calendar-wu/i18n/en.json +14 -0
- package/uview-plus/components/u-calendar-wu/i18n/index.js +8 -0
- package/uview-plus/components/u-calendar-wu/i18n/zh-Hans.json +14 -0
- package/uview-plus/components/u-calendar-wu/i18n/zh-Hant.json +14 -0
- package/uview-plus/components/u-calendar-wu/props.js +166 -0
- package/uview-plus/components/u-calendar-wu/style.css +196 -0
- package/uview-plus/components/u-calendar-wu/u-calendar-wu.vue +921 -0
- package/uview-plus/components/u-calendar-wu/util.js +552 -0
- package/uview-plus/components/u-calendar-wu/wu-calendar-block/props.js +73 -0
- package/uview-plus/components/u-calendar-wu/wu-calendar-block/wu-calendar-block.vue +122 -0
- package/uview-plus/components/u-calendar-wu/wu-calendar-item/props.js +55 -0
- package/uview-plus/components/u-calendar-wu/wu-calendar-item/wu-calendar-item.vue +293 -0
- package/uview-plus/components/u-car-keyboard/u-car-keyboard.vue +2 -2
- package/uview-plus/components/u-card/u-card.vue +139 -3
- package/uview-plus/components/u-cell/_doc/changelog.md +6 -0
- package/uview-plus/components/u-cell/_doc/package.json +89 -0
- package/uview-plus/components/u-cell/_doc/readme.md +25 -0
- package/uview-plus/components/u-cell/u-cell.vue +4 -4
- package/uview-plus/components/u-cell-group/u-cell-group.vue +2 -2
- package/uview-plus/components/u-checkbox/_doc/changelog.md +8 -0
- package/uview-plus/components/u-checkbox/_doc/package.json +88 -0
- package/uview-plus/components/u-checkbox/_doc/readme.md +25 -0
- package/uview-plus/components/u-checkbox/u-checkbox.vue +4 -4
- package/uview-plus/components/u-checkbox-group/u-checkbox-group.vue +1 -1
- package/uview-plus/components/u-code/_doc/changelog.md +6 -0
- package/uview-plus/components/u-code/_doc/package.json +86 -0
- package/uview-plus/components/u-code/_doc/readme.md +16 -0
- package/uview-plus/components/u-code/u-code.vue +1 -1
- package/uview-plus/components/u-code-input/u-code-input.vue +1 -1
- package/uview-plus/components/u-col/u-col.vue +1 -1
- package/uview-plus/components/u-collapse/u-collapse.vue +2 -2
- package/uview-plus/components/u-collapse-item/u-collapse-item.vue +218 -3
- package/uview-plus/components/u-column-notice/u-column-notice.vue +3 -3
- package/uview-plus/components/u-count-down/u-count-down.vue +1 -1
- package/uview-plus/components/u-count-to/u-count-to.vue +1 -1
- package/uview-plus/components/u-datetime-picker/u-datetime-picker.vue +3 -3
- package/uview-plus/components/u-divider/u-divider.vue +3 -3
- package/uview-plus/components/u-drag-sort/_doc/changelog.md +0 -0
- package/uview-plus/components/u-drag-sort/_doc/package.json +85 -0
- package/uview-plus/components/u-drag-sort/_doc/readme.md +16 -0
- package/uview-plus/components/u-drag-sort/u-drag-sort.vue +3 -0
- package/uview-plus/components/u-dropdown/u-dropdown.vue +3 -3
- package/uview-plus/components/u-dropdown-item/u-dropdown-item.vue +1 -1
- package/uview-plus/components/u-empty/u-empty.vue +30 -4
- package/uview-plus/components/u-form-item/u-form-item.vue +4 -4
- package/uview-plus/components/u-gap/_doc/changelog.md +4 -0
- package/uview-plus/components/u-gap/_doc/package.json +86 -0
- package/uview-plus/components/u-gap/_doc/readme.md +22 -0
- package/uview-plus/components/u-gap/u-gap.vue +1 -1
- package/uview-plus/components/u-grid/u-grid.vue +1 -1
- package/uview-plus/components/u-grid-item/u-grid-item.vue +1 -1
- package/uview-plus/components/u-icon/_doc/changelog.md +10 -0
- package/uview-plus/components/u-icon/_doc/package.json +85 -0
- package/uview-plus/components/u-icon/_doc/readme.md +10 -0
- package/uview-plus/components/u-icon/icon.js +23 -25
- package/uview-plus/components/u-icon/icons.js +213 -213
- package/uview-plus/components/u-icon/style.css +3 -3
- package/uview-plus/components/u-icon/u-icon.vue +1 -1
- package/uview-plus/components/u-icon/u-icon2.vue +149 -0
- package/uview-plus/components/u-image/u-image.vue +5 -5
- package/uview-plus/components/u-image-wu/_doc/changelog.md +21 -0
- package/uview-plus/components/u-image-wu/_doc/package.json +88 -0
- package/uview-plus/components/u-image-wu/_doc/readme.md +11 -0
- package/uview-plus/components/u-image-wu/props.js +94 -0
- package/uview-plus/components/u-image-wu/u-image-wu.vue +243 -0
- package/uview-plus/components/u-index-anchor/u-index-anchor.vue +1 -1
- package/uview-plus/components/u-index-list/u-index-list.vue +2 -2
- package/uview-plus/components/u-input/_doc/changelog.md +6 -0
- package/uview-plus/components/u-input/_doc/package.json +88 -0
- package/uview-plus/components/u-input/_doc/readme.md +16 -0
- package/uview-plus/components/u-input/u-input.vue +4 -4
- package/uview-plus/components/u-keyboard/u-keyboard.vue +6 -6
- package/uview-plus/components/u-lazy-load/u-lazy-load.vue +257 -3
- package/uview-plus/components/u-line/_doc/changelog.md +8 -0
- package/uview-plus/components/u-line/_doc/package.json +86 -0
- package/uview-plus/components/u-line/_doc/readme.md +16 -0
- package/uview-plus/components/u-line/u-line.vue +1 -1
- package/uview-plus/components/u-line-progress/u-line-progress.vue +1 -1
- package/uview-plus/components/u-link/_doc/changelog.md +8 -0
- package/uview-plus/components/u-link/_doc/package.json +86 -0
- package/uview-plus/components/u-link/_doc/readme.md +20 -0
- package/uview-plus/components/u-link/u-link.vue +1 -1
- package/uview-plus/components/u-list/u-list.vue +1 -1
- package/uview-plus/components/u-list-item/u-list-item.vue +1 -1
- package/uview-plus/components/u-loading-icon/_doc/changelog.md +12 -0
- package/uview-plus/components/u-loading-icon/_doc/package.json +86 -0
- package/uview-plus/components/u-loading-icon/_doc/readme.md +16 -0
- package/uview-plus/components/u-loading-icon/props.js +1 -1
- package/uview-plus/components/u-loading-icon/u-loading-icon.vue +191 -3
- package/uview-plus/components/u-loading-page/u-loading-page.vue +4 -4
- package/uview-plus/components/u-loadmore/u-loadmore.vue +4 -4
- package/uview-plus/components/u-mask/u-mask.vue +120 -113
- package/uview-plus/components/u-message-input/u-message-input.vue +1 -1
- package/uview-plus/components/u-modal/u-modal.vue +6 -6
- package/uview-plus/components/u-navbar/_doc/changelog.md +6 -0
- package/uview-plus/components/u-navbar/_doc/package.json +89 -0
- package/uview-plus/components/u-navbar/_doc/readme.md +16 -0
- package/uview-plus/components/u-navbar/u-navbar.vue +4 -4
- package/uview-plus/components/u-navbar-mini/u-navbar-mini.vue +2 -2
- package/uview-plus/components/u-navbar-wu/props.js +102 -0
- package/uview-plus/components/u-navbar-wu/u-navbar-wu.vue +196 -0
- package/uview-plus/components/u-no-network/u-no-network.vue +5 -5
- package/uview-plus/components/u-notice-bar/u-notice-bar.vue +5 -5
- package/uview-plus/components/u-notify/u-notify.vue +6 -6
- package/uview-plus/components/u-number-box/_doc/changelog.md +19 -0
- package/uview-plus/components/u-number-box/_doc/package.json +88 -0
- package/uview-plus/components/u-number-box/_doc/readme.md +16 -0
- package/uview-plus/components/u-number-box/u-number-box.vue +9 -3
- package/uview-plus/components/u-number-keyboard/u-number-keyboard.vue +1 -1
- package/uview-plus/components/u-overlay/_doc/changelog.md +4 -0
- package/uview-plus/components/u-overlay/_doc/package.json +88 -0
- package/uview-plus/components/u-overlay/_doc/readme.md +16 -0
- package/uview-plus/components/u-overlay/u-overlay.vue +3 -3
- package/uview-plus/components/u-picker/u-picker.vue +5 -5
- package/uview-plus/components/u-popup/_doc/changelog.md +4 -0
- package/uview-plus/components/u-popup/_doc/package.json +92 -0
- package/uview-plus/components/u-popup/_doc/readme.md +16 -0
- package/uview-plus/components/u-popup/u-popup.vue +8 -8
- package/uview-plus/components/u-popup-wu/keypress.js +45 -0
- package/uview-plus/components/u-popup-wu/u-popup-wu.vue +519 -0
- package/uview-plus/components/u-radio/_doc/changelog.md +6 -0
- package/uview-plus/components/u-radio/_doc/package.json +88 -0
- package/uview-plus/components/u-radio/_doc/readme.md +25 -0
- package/uview-plus/components/u-radio/u-radio.vue +4 -4
- package/uview-plus/components/u-radio-group/u-radio-group.vue +1 -1
- package/uview-plus/components/u-rate/u-rate.vue +5 -5
- package/uview-plus/components/u-read-more/u-read-more.vue +126 -3
- package/uview-plus/components/u-row/_doc/changelog.md +8 -0
- package/uview-plus/components/u-row/_doc/package.json +86 -0
- package/uview-plus/components/u-row/_doc/readme.md +16 -0
- package/uview-plus/components/u-row/u-row.vue +1 -1
- package/uview-plus/components/u-row-notice/u-row-notice.vue +3 -3
- package/uview-plus/components/u-safe-bottom/_doc/changelog.md +6 -0
- package/uview-plus/components/u-safe-bottom/_doc/package.json +86 -0
- package/uview-plus/components/u-safe-bottom/_doc/readme.md +16 -0
- package/uview-plus/components/u-safe-bottom/u-safe-bottom.vue +48 -3
- package/uview-plus/components/u-search/u-search.vue +4 -4
- package/uview-plus/components/u-select/u-select.vue +175 -3
- package/uview-plus/components/u-skeleton/u-skeleton.vue +3 -3
- package/uview-plus/components/u-sku-wu/_doc/changelog.md +27 -0
- package/uview-plus/components/u-sku-wu/_doc/package.json +93 -0
- package/uview-plus/components/u-sku-wu/_doc/readme.md +16 -0
- package/uview-plus/components/u-sku-wu/props.js +86 -0
- package/uview-plus/components/u-sku-wu/style.css +271 -0
- package/uview-plus/components/u-sku-wu/u-sku-wu.vue +864 -0
- package/uview-plus/components/u-status-bar/_doc/changelog.md +4 -0
- package/uview-plus/components/u-status-bar/_doc/package.json +86 -0
- package/uview-plus/components/u-status-bar/_doc/readme.md +16 -0
- package/uview-plus/components/u-status-bar/u-status-bar.vue +1 -1
- package/uview-plus/components/u-steps/u-steps.vue +1 -1
- package/uview-plus/components/u-steps-item/u-steps-item.vue +7 -7
- package/uview-plus/components/u-sticky/u-sticky.vue +1 -1
- package/uview-plus/components/u-subsection/u-subsection.vue +1 -1
- package/uview-plus/components/u-swipe-action/u-swipe-action.vue +1 -1
- package/uview-plus/components/u-swipe-action-item/u-swipe-action-item.vue +3 -3
- package/uview-plus/components/u-swiper/u-swiper.vue +1 -1
- package/uview-plus/components/u-swiper-indicator/u-swiper-indicator.vue +1 -1
- package/uview-plus/components/u-switch/u-switch.vue +2 -2
- package/uview-plus/components/u-tabbar/u-tabbar.vue +2 -2
- package/uview-plus/components/u-tabbar-item/u-tabbar-item.vue +9 -4
- package/uview-plus/components/u-table/u-table.vue +1 -1
- package/uview-plus/components/u-tabs/u-tabs.vue +3 -3
- package/uview-plus/components/u-tag/u-tag.vue +5 -5
- package/uview-plus/components/u-text/_doc/changelog.md +10 -0
- package/uview-plus/components/u-text/_doc/package.json +89 -0
- package/uview-plus/components/u-text/_doc/readme.md +20 -0
- package/uview-plus/components/u-text/u-text.vue +159 -3
- package/uview-plus/components/u-textarea/_doc/changelog.md +6 -0
- package/uview-plus/components/u-textarea/_doc/package.json +86 -0
- package/uview-plus/components/u-textarea/_doc/readme.md +25 -0
- package/uview-plus/components/u-toast/u-toast.vue +8 -8
- package/uview-plus/components/u-tooltip/u-tooltip.vue +6 -6
- package/uview-plus/components/u-transition/_doc/changelog.md +14 -0
- package/uview-plus/components/u-transition/_doc/package.json +86 -0
- package/uview-plus/components/u-transition/_doc/readme.md +16 -0
- package/uview-plus/components/u-transition-wu/createAnimation.js +148 -0
- package/uview-plus/components/u-transition-wu/props.js +32 -0
- package/uview-plus/components/u-transition-wu/u-transition.vue +300 -0
- package/uview-plus/components/u-upload/u-upload.vue +10 -10
- package/uview-plus/components/u-verification-code/u-verification-code.vue +161 -0
- package/uview-plus/components/u-waterfall/u-waterfall.vue +221 -3
- package/uview-plus/index.js +109 -94
- package/uview-plus/libs/config/config.js +46 -48
- package/uview-plus/libs/css/color.scss +32 -311
- package/uview-plus/libs/css/components-wu.scss +30 -0
- package/uview-plus/libs/css/vue.scss +10 -10
- package/uview-plus/libs/ctocode/index.js +120 -0
- package/uview-plus/libs/function/calc.js +61 -55
- package/uview-plus/libs/function/color/color-convert/CHANGELOG.md +54 -0
- package/uview-plus/libs/function/color/color-convert/LICENSE +21 -0
- package/uview-plus/libs/function/color/color-convert/README.md +68 -0
- package/uview-plus/libs/function/color/color-convert/conversions.js +839 -0
- package/uview-plus/libs/function/color/color-convert/index.js +81 -0
- package/uview-plus/libs/function/color/color-convert/package.json +48 -0
- package/uview-plus/libs/function/color/color-convert/route.js +97 -0
- package/uview-plus/libs/function/color/color-name/LICENSE +8 -0
- package/uview-plus/libs/function/color/color-name/README.md +11 -0
- package/uview-plus/libs/function/color/color-name/index.js +152 -0
- package/uview-plus/libs/function/color/color-name/package.json +28 -0
- package/uview-plus/libs/function/color/color-string/LICENSE +21 -0
- package/uview-plus/libs/function/color/color-string/README.md +62 -0
- package/uview-plus/libs/function/color/color-string/index.js +244 -0
- package/uview-plus/libs/function/color/color-string/package.json +39 -0
- package/uview-plus/libs/function/color/color.js +496 -0
- package/uview-plus/libs/function/color/index.js +158 -0
- package/uview-plus/libs/function/color/is-arrayish/LICENSE +21 -0
- package/uview-plus/libs/function/color/is-arrayish/README.md +16 -0
- package/uview-plus/libs/function/color/is-arrayish/index.js +9 -0
- package/uview-plus/libs/function/color/is-arrayish/package.json +45 -0
- package/uview-plus/libs/function/color/is-arrayish/yarn-error.log +1443 -0
- package/uview-plus/libs/function/color/simple-swizzle/LICENSE +21 -0
- package/uview-plus/libs/function/color/simple-swizzle/README.md +39 -0
- package/uview-plus/libs/function/color/simple-swizzle/index.js +29 -0
- package/uview-plus/libs/function/color/simple-swizzle/package.json +36 -0
- package/uview-plus/libs/function/colorGradient.js +108 -106
- package/uview-plus/libs/function/debounce.js +17 -17
- package/uview-plus/libs/function/digit.js +1 -3
- package/uview-plus/libs/function/http.js +3 -3
- package/uview-plus/libs/function/index-wu.js +198 -0
- package/uview-plus/libs/function/index.js +579 -566
- package/uview-plus/libs/function/platform.js +18 -18
- package/uview-plus/libs/function/test.js +135 -137
- package/uview-plus/libs/function/throttle.js +17 -17
- package/uview-plus/libs/luch-request/core/Request.js +199 -199
- package/uview-plus/libs/mixin/mpMixin.js +1 -0
- package/uview-plus/libs/mixin/openType.js +33 -0
- package/uview-plus/libs/util/async-validator.js +1343 -1343
- package/uview-plus/libs/util/dayjs.js +404 -0
- package/uview-plus/libs/util/route.js +101 -105
- package/uview-plus/package-wu-tool.json +84 -0
- package/uview-plus/package-wu.json +112 -0
- package/uview-plus/package.json +106 -95
- package/uview-plus/readme-wu.md +148 -0
- package/uview-ui/index.js +51 -52
- package/plugins/uni-upgrade.js +0 -294
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<
|
|
2
|
+
<up-transition
|
|
3
3
|
:show="loading"
|
|
4
4
|
:custom-style="{
|
|
5
5
|
position: 'fixed',
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
height: addUnit(iconSize)
|
|
27
27
|
}"
|
|
28
28
|
></image>
|
|
29
|
-
<
|
|
29
|
+
<up-loading-icon v-else :mode="loadingMode" :size="addUnit(iconSize)" :color="loadingColor"></up-loading-icon>
|
|
30
30
|
</view>
|
|
31
31
|
<slot>
|
|
32
32
|
<text
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
</slot>
|
|
42
42
|
</view>
|
|
43
43
|
</view>
|
|
44
|
-
</
|
|
44
|
+
</up-transition>
|
|
45
45
|
</template>
|
|
46
46
|
<script>
|
|
47
47
|
import { props } from './props';
|
|
@@ -63,7 +63,7 @@ import { addUnit } from '../../libs/function/index';
|
|
|
63
63
|
* @property {String} loadingColor 加载中图标的颜色,只能rgb或者十六进制颜色值 (默认 '#C8C8C8' )
|
|
64
64
|
* @property {Number} zIndex z-index层级 (默认10 )
|
|
65
65
|
* @property {Object} customStyle 自定义样式
|
|
66
|
-
* @example <
|
|
66
|
+
* @example <up-loading mode="circle"></up-loading>
|
|
67
67
|
*/
|
|
68
68
|
export default {
|
|
69
69
|
name: 'u-loading-page',
|
|
@@ -11,11 +11,11 @@
|
|
|
11
11
|
}
|
|
12
12
|
]"
|
|
13
13
|
>
|
|
14
|
-
<
|
|
14
|
+
<up-line length="140rpx" :color="lineColor" :hairline="false" :dashed="dashed" v-if="line"></up-line>
|
|
15
15
|
<!-- 加载中和没有更多的状态才显示两边的横线 -->
|
|
16
16
|
<view :class="status == 'loadmore' || status == 'nomore' ? 'u-more' : ''" class="u-loadmore__content">
|
|
17
17
|
<view class="u-loadmore__content__icon-wrap" v-if="status === 'loading' && icon">
|
|
18
|
-
<
|
|
18
|
+
<up-loading-icon :color="iconColor" :size="iconSize" :mode="loadingIcon"></up-loading-icon>
|
|
19
19
|
</view>
|
|
20
20
|
<!-- 如果没有更多的状态下,显示内容为dot(粗点),加载特定样式 -->
|
|
21
21
|
<text
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
{{ showText }}
|
|
28
28
|
</text>
|
|
29
29
|
</view>
|
|
30
|
-
<
|
|
30
|
+
<up-line length="140rpx" :color="lineColor" :hairline="false" :dashed="dashed" v-if="line"></up-line>
|
|
31
31
|
</view>
|
|
32
32
|
</template>
|
|
33
33
|
<script>
|
|
@@ -58,7 +58,7 @@ import { addUnit, addStyle } from '../../libs/function/index';
|
|
|
58
58
|
* @property {Boolean} line 是否显示左边分割线 (默认 false )
|
|
59
59
|
* @property {Boolean} dashed // 是否虚线,true-虚线,false-实线 (默认 false )
|
|
60
60
|
* @event {Function} loadmore status为loadmore时,点击组件会发出此事件
|
|
61
|
-
* @example <
|
|
61
|
+
* @example <up-loadmore :status="status" icon-type="iconType" load-text="loadText" />
|
|
62
62
|
*/
|
|
63
63
|
export default {
|
|
64
64
|
name: 'u-loadmore',
|
|
@@ -1,122 +1,129 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
2
|
+
<view
|
|
3
|
+
class="u-mask"
|
|
4
|
+
hover-stop-propagation
|
|
5
|
+
:style="[maskStyle, zoomStyle]"
|
|
6
|
+
@tap="click"
|
|
7
|
+
@touchmove.stop.prevent="() => {}"
|
|
8
|
+
:class="{
|
|
9
|
+
'u-mask-zoom': zoom,
|
|
10
|
+
'u-mask-show': show
|
|
11
|
+
}"
|
|
12
|
+
>
|
|
13
|
+
<slot />
|
|
14
|
+
</view>
|
|
8
15
|
</template>
|
|
9
16
|
|
|
10
17
|
<script>
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
18
|
+
/**
|
|
19
|
+
* mask 遮罩
|
|
20
|
+
* @description 创建一个遮罩层,用于强调特定的页面元素,并阻止用户对遮罩下层的内容进行操作,一般用于弹窗场景
|
|
21
|
+
* @tutorial https://www.uviewui.com/components/mask.html
|
|
22
|
+
* @property {Boolean} show 是否显示遮罩(默认false)
|
|
23
|
+
* @property {String Number} z-index z-index 层级(默认1070)
|
|
24
|
+
* @property {Object} custom-style 自定义样式对象,见上方说明
|
|
25
|
+
* @property {String Number} duration 动画时长,单位毫秒(默认300)
|
|
26
|
+
* @property {Boolean} zoom 是否使用scale对遮罩进行缩放(默认true)
|
|
27
|
+
* @property {Boolean} mask-click-able 遮罩是否可点击,为false时点击不会发送click事件(默认true)
|
|
28
|
+
* @event {Function} click mask-click-able为true时,点击遮罩发送此事件
|
|
29
|
+
* @example <up-mask :show="show" @click="show = false"></up-mask>
|
|
30
|
+
*/
|
|
31
|
+
export default {
|
|
32
|
+
name: 'u-mask',
|
|
33
|
+
props: {
|
|
34
|
+
// 是否显示遮罩
|
|
35
|
+
show: {
|
|
36
|
+
type: Boolean,
|
|
37
|
+
default: false
|
|
38
|
+
},
|
|
39
|
+
// 层级z-index
|
|
40
|
+
zIndex: {
|
|
41
|
+
type: [Number, String],
|
|
42
|
+
default: ''
|
|
43
|
+
},
|
|
44
|
+
// 用户自定义样式
|
|
45
|
+
customStyle: {
|
|
46
|
+
type: Object,
|
|
47
|
+
default() {
|
|
48
|
+
return {};
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
// 遮罩的动画样式, 是否使用使用zoom进行scale进行缩放
|
|
52
|
+
zoom: {
|
|
53
|
+
type: Boolean,
|
|
54
|
+
default: true
|
|
55
|
+
},
|
|
56
|
+
// 遮罩的过渡时间,单位为ms
|
|
57
|
+
duration: {
|
|
58
|
+
type: [Number, String],
|
|
59
|
+
default: 300
|
|
60
|
+
},
|
|
61
|
+
// 是否可以通过点击遮罩进行关闭
|
|
62
|
+
maskClickAble: {
|
|
63
|
+
type: Boolean,
|
|
64
|
+
default: true
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
data() {
|
|
68
|
+
return {
|
|
69
|
+
zoomStyle: {
|
|
70
|
+
transform: ''
|
|
71
|
+
},
|
|
72
|
+
scale: 'scale(1.2, 1.2)'
|
|
73
|
+
};
|
|
74
|
+
},
|
|
75
|
+
watch: {
|
|
76
|
+
show(n) {
|
|
77
|
+
if (n && this.zoom) {
|
|
78
|
+
// 当展示遮罩的时候,设置scale为1,达到缩小(原来为1.2)的效果
|
|
79
|
+
this.zoomStyle.transform = 'scale(1, 1)';
|
|
80
|
+
} else if (!n && this.zoom) {
|
|
81
|
+
// 当隐藏遮罩的时候,设置scale为1.2,达到放大(因为显示遮罩时已重置为1)的效果
|
|
82
|
+
this.zoomStyle.transform = this.scale;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
computed: {
|
|
87
|
+
maskStyle() {
|
|
88
|
+
let style = {};
|
|
89
|
+
style.backgroundColor = 'rgba(0, 0, 0, 0.6)';
|
|
90
|
+
if (this.show) style.zIndex = this.zIndex ? this.zIndex : this.$u.zIndex.mask;
|
|
91
|
+
else style.zIndex = -1;
|
|
92
|
+
style.transition = `all ${this.duration / 1000}s ease-in-out`;
|
|
93
|
+
// 判断用户传递的对象是否为空,不为空就进行合并
|
|
94
|
+
if (Object.keys(this.customStyle).length)
|
|
95
|
+
style = {
|
|
96
|
+
...style,
|
|
97
|
+
...this.customStyle
|
|
98
|
+
};
|
|
99
|
+
return style;
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
methods: {
|
|
103
|
+
click() {
|
|
104
|
+
if (!this.maskClickAble) return;
|
|
105
|
+
this.$emit('click');
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
};
|
|
101
109
|
</script>
|
|
102
110
|
|
|
103
111
|
<style scoped>
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
}
|
|
112
|
+
.u-mask {
|
|
113
|
+
position: fixed;
|
|
114
|
+
top: 0;
|
|
115
|
+
left: 0;
|
|
116
|
+
right: 0;
|
|
117
|
+
bottom: 0;
|
|
118
|
+
opacity: 0;
|
|
119
|
+
transition: transform 0.3s;
|
|
120
|
+
}
|
|
114
121
|
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
+
.u-mask-show {
|
|
123
|
+
opacity: 1;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.u-mask-zoom {
|
|
127
|
+
transform: scale(1.2, 1.2);
|
|
128
|
+
}
|
|
122
129
|
</style>
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
* @property {Boolean} disabled-keyboard 禁止点击输入框唤起系统键盘(默认false)
|
|
76
76
|
* @event {Function} change 输入内容发生改变时触发,具体见官网说明
|
|
77
77
|
* @event {Function} finish 输入字符个数达maxlength值时触发,见官网说明
|
|
78
|
-
* @example <
|
|
78
|
+
* @example <up-message-input mode="bottomLine"></up-message-input>
|
|
79
79
|
*/
|
|
80
80
|
export default {
|
|
81
81
|
name: 'u-message-input',
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<
|
|
2
|
+
<up-popup
|
|
3
3
|
mode="center"
|
|
4
4
|
:zoom="zoom"
|
|
5
5
|
:show="show"
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
<slot name="confirmButton"></slot>
|
|
33
33
|
</view>
|
|
34
34
|
<template v-else>
|
|
35
|
-
<
|
|
35
|
+
<up-line></up-line>
|
|
36
36
|
<view
|
|
37
37
|
class="u-modal__button-group"
|
|
38
38
|
:style="{
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
{{ cancelText }}
|
|
57
57
|
</text>
|
|
58
58
|
</view>
|
|
59
|
-
<
|
|
59
|
+
<up-line direction="column" v-if="showConfirmButton && showCancelButton"></up-line>
|
|
60
60
|
<view
|
|
61
61
|
class="u-modal__button-group__wrapper u-modal__button-group__wrapper--confirm"
|
|
62
62
|
:hover-stay-time="150"
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
v-if="showConfirmButton"
|
|
66
66
|
@tap="confirmHandler"
|
|
67
67
|
>
|
|
68
|
-
<
|
|
68
|
+
<up-loading-icon v-if="loading"></up-loading-icon>
|
|
69
69
|
<text
|
|
70
70
|
v-else
|
|
71
71
|
class="u-modal__button-group__wrapper__text"
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
</view>
|
|
80
80
|
</template>
|
|
81
81
|
</view>
|
|
82
|
-
</
|
|
82
|
+
</up-popup>
|
|
83
83
|
</template>
|
|
84
84
|
<script>
|
|
85
85
|
import { props } from './props';
|
|
@@ -109,7 +109,7 @@ import { addUnit } from '../../libs/function/index';
|
|
|
109
109
|
* @event {Function} confirm 点击确认按钮时触发
|
|
110
110
|
* @event {Function} cancel 点击取消按钮时触发
|
|
111
111
|
* @event {Function} close 点击遮罩关闭出发,closeOnClickOverlay为true有效
|
|
112
|
-
* @example <
|
|
112
|
+
* @example <up-modal :show="show" />
|
|
113
113
|
*/
|
|
114
114
|
export default {
|
|
115
115
|
name: 'u-modal',
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "u-navbar",
|
|
3
|
+
"displayName": "u-navbar 自定义状态栏、背景色、自动计算状态栏高度 小程序预留胶囊位置等 全端兼容,无论平台,一致体验。",
|
|
4
|
+
"version": "1.0.2",
|
|
5
|
+
"description": "u-navbar 此组件一般用于在特殊情况下,需要自定义导航栏的时候用到,自动状态栏高度、小程序胶囊预留位置等,一般建议使用uni-app带的导航栏",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"u-ui",
|
|
8
|
+
"wuui",
|
|
9
|
+
"u-navbar",
|
|
10
|
+
"navbar",
|
|
11
|
+
"自定义导航栏"
|
|
12
|
+
],
|
|
13
|
+
"repository": "",
|
|
14
|
+
"engines": {
|
|
15
|
+
"HBuilderX": "^3.4.15"
|
|
16
|
+
},
|
|
17
|
+
"dcloudext": {
|
|
18
|
+
"type": "component-vue",
|
|
19
|
+
"sale": {
|
|
20
|
+
"regular": {
|
|
21
|
+
"price": "0.00"
|
|
22
|
+
},
|
|
23
|
+
"sourcecode": {
|
|
24
|
+
"price": "0.00"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"contact": {
|
|
28
|
+
"qq": ""
|
|
29
|
+
},
|
|
30
|
+
"declaration": {
|
|
31
|
+
"ads": "无",
|
|
32
|
+
"data": "插件不采集任何数据",
|
|
33
|
+
"permissions": "无"
|
|
34
|
+
},
|
|
35
|
+
"npmurl": ""
|
|
36
|
+
},
|
|
37
|
+
"uni_modules": {
|
|
38
|
+
"dependencies": [
|
|
39
|
+
"u-status-bar",
|
|
40
|
+
"u-icon"
|
|
41
|
+
],
|
|
42
|
+
"encrypt": [],
|
|
43
|
+
"platforms": {
|
|
44
|
+
"cloud": {
|
|
45
|
+
"tcb": "y",
|
|
46
|
+
"aliyun": "y",
|
|
47
|
+
"alipay": "n"
|
|
48
|
+
},
|
|
49
|
+
"client": {
|
|
50
|
+
"Vue": {
|
|
51
|
+
"vue2": "y",
|
|
52
|
+
"vue3": "y"
|
|
53
|
+
},
|
|
54
|
+
"App": {
|
|
55
|
+
"app-vue": "y",
|
|
56
|
+
"app-nvue": "y"
|
|
57
|
+
},
|
|
58
|
+
"H5-mobile": {
|
|
59
|
+
"Safari": "y",
|
|
60
|
+
"Android Browser": "y",
|
|
61
|
+
"微信浏览器(Android)": "y",
|
|
62
|
+
"QQ浏览器(Android)": "y"
|
|
63
|
+
},
|
|
64
|
+
"H5-pc": {
|
|
65
|
+
"Chrome": "y",
|
|
66
|
+
"IE": "y",
|
|
67
|
+
"Edge": "y",
|
|
68
|
+
"Firefox": "y",
|
|
69
|
+
"Safari": "y"
|
|
70
|
+
},
|
|
71
|
+
"小程序": {
|
|
72
|
+
"微信": "y",
|
|
73
|
+
"阿里": "y",
|
|
74
|
+
"百度": "y",
|
|
75
|
+
"字节跳动": "y",
|
|
76
|
+
"QQ": "y",
|
|
77
|
+
"钉钉": "n",
|
|
78
|
+
"快手": "n",
|
|
79
|
+
"飞书": "n",
|
|
80
|
+
"京东": "n"
|
|
81
|
+
},
|
|
82
|
+
"快应用": {
|
|
83
|
+
"华为": "n",
|
|
84
|
+
"联盟": "n"
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
## u-navbar 按钮
|
|
2
|
+
|
|
3
|
+
> **组件名:u-navbar**
|
|
4
|
+
|
|
5
|
+
此组件一般用于在特殊情况下,需要自定义导航栏的时候用到,自动状态栏高度、小程序胶囊预留位置等,一般建议使用 `uni-app` 带的导航栏。
|
|
6
|
+
|
|
7
|
+
## [查看文档](https://ijry.github.io/uview-plus/components/navbar.html)
|
|
8
|
+
|
|
9
|
+
## [更多组件, 请查看 `u-ui` 组件库](https://ext.dcloud.net.cn/plugin?name=u--ui)
|
|
10
|
+
(请勿下载插件zip)
|
|
11
|
+
|
|
12
|
+
<a href="https://ext.dcloud.net.cn/plugin?name=u--ui">
|
|
13
|
+
<img src="https://wuui.cn/intr.png">
|
|
14
|
+
</a>
|
|
15
|
+
|
|
16
|
+
**如使用过程中有任何问题,或者您对u-ui有一些好的建议。<br>欢迎加入 [u-ui 交流群](https://ijry.github.io/uview-plus/components/qqFeedBack.html)**
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
}"
|
|
9
9
|
></view>
|
|
10
10
|
<view :class="[fixed && 'u-navbar--fixed']">
|
|
11
|
-
<
|
|
11
|
+
<up-status-bar v-if="safeAreaInsetTop" :bgColor="bgColor"></up-status-bar>
|
|
12
12
|
<view
|
|
13
13
|
class="u-navbar__content"
|
|
14
14
|
:class="[border && 'u-border-bottom']"
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
@tap="leftClick"
|
|
25
25
|
>
|
|
26
26
|
<slot name="left">
|
|
27
|
-
<
|
|
27
|
+
<up-icon v-if="leftIcon" :name="leftIcon" :size="leftIconSize" :color="leftIconColor"></up-icon>
|
|
28
28
|
<text
|
|
29
29
|
v-if="leftText"
|
|
30
30
|
:style="{
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
</slot>
|
|
53
53
|
<view class="u-navbar__content__right" v-if="$slots.right || rightIcon || rightText" @tap="rightClick">
|
|
54
54
|
<slot name="right">
|
|
55
|
-
<
|
|
55
|
+
<up-icon v-if="rightIcon" :name="rightIcon" size="20"></up-icon>
|
|
56
56
|
<text v-if="rightText" class="u-navbar__content__right__text">{{ rightText }}</text>
|
|
57
57
|
</slot>
|
|
58
58
|
</view>
|
|
@@ -89,7 +89,7 @@ import { addUnit, addStyle, getPx, getWindowInfo } from '../../libs/function/ind
|
|
|
89
89
|
* @property {Object | String} titleStyle 标题的样式,对象或字符串
|
|
90
90
|
* @event {Function} leftClick 点击左侧区域
|
|
91
91
|
* @event {Function} rightClick 点击右侧区域
|
|
92
|
-
* @example <
|
|
92
|
+
* @example <up-navbar title="剑未配妥,出门已是江湖" left-text="返回" right-text="帮助" @click-left="onClickBack" @click-right="onClickRight"></up-navbar>
|
|
93
93
|
*/
|
|
94
94
|
export default {
|
|
95
95
|
name: 'u-navbar',
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<view class="u-navbar-mini" :class="[customClass]">
|
|
3
3
|
<view class="u-navbar-mini__inner" :class="[fixed && 'u-navbar-mini--fixed']">
|
|
4
|
-
<
|
|
4
|
+
<up-status-bar v-if="safeAreaInsetTop"></up-status-bar>
|
|
5
5
|
<view
|
|
6
6
|
class="u-navbar-mini__content"
|
|
7
7
|
:style="{
|
|
@@ -53,7 +53,7 @@ import { addUnit, addStyle, getPx, sys } from '../../libs/function/index';
|
|
|
53
53
|
* @property {Object | String} titleStyle 标题的样式,对象或字符串
|
|
54
54
|
* @event {Function} leftClick 点击左侧区域
|
|
55
55
|
* @event {Function} rightClick 点击右侧区域
|
|
56
|
-
* @example <
|
|
56
|
+
* @example <up-navbar-mini @click-left="onClickBack"></up-navbar-mini>
|
|
57
57
|
*/
|
|
58
58
|
export default {
|
|
59
59
|
name: 'u-navbar-mini',
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
props: {
|
|
3
|
+
// 是否开启顶部安全区适配
|
|
4
|
+
safeAreaInsetTop: {
|
|
5
|
+
type: Boolean,
|
|
6
|
+
default: true
|
|
7
|
+
},
|
|
8
|
+
// 固定在顶部时,是否生成一个等高元素,以防止塌陷
|
|
9
|
+
placeholder: {
|
|
10
|
+
type: Boolean,
|
|
11
|
+
default: false
|
|
12
|
+
},
|
|
13
|
+
// 是否固定在顶部
|
|
14
|
+
fixed: {
|
|
15
|
+
type: Boolean,
|
|
16
|
+
default: true
|
|
17
|
+
},
|
|
18
|
+
// 是否显示下边框
|
|
19
|
+
border: {
|
|
20
|
+
type: Boolean,
|
|
21
|
+
default: false
|
|
22
|
+
},
|
|
23
|
+
// 左边的图标
|
|
24
|
+
leftIcon: {
|
|
25
|
+
type: String,
|
|
26
|
+
default: 'arrow-left'
|
|
27
|
+
},
|
|
28
|
+
// 左边的提示文字
|
|
29
|
+
leftText: {
|
|
30
|
+
type: String,
|
|
31
|
+
default: ''
|
|
32
|
+
},
|
|
33
|
+
// 左边的提示文字
|
|
34
|
+
rightText: {
|
|
35
|
+
type: String,
|
|
36
|
+
default: ''
|
|
37
|
+
},
|
|
38
|
+
// 右边的图标
|
|
39
|
+
rightIcon: {
|
|
40
|
+
type: String,
|
|
41
|
+
default: ''
|
|
42
|
+
},
|
|
43
|
+
// 标题
|
|
44
|
+
title: {
|
|
45
|
+
type: [String, Number],
|
|
46
|
+
default: ''
|
|
47
|
+
},
|
|
48
|
+
// 背景颜色
|
|
49
|
+
bgColor: {
|
|
50
|
+
type: String,
|
|
51
|
+
default: '#ffffff'
|
|
52
|
+
},
|
|
53
|
+
// 标题的宽度
|
|
54
|
+
titleWidth: {
|
|
55
|
+
type: [String, Number],
|
|
56
|
+
default: '400rpx'
|
|
57
|
+
},
|
|
58
|
+
// 导航栏高度
|
|
59
|
+
height: {
|
|
60
|
+
type: [String, Number],
|
|
61
|
+
default: '44px'
|
|
62
|
+
},
|
|
63
|
+
// 左侧返回图标的大小
|
|
64
|
+
leftIconSize: {
|
|
65
|
+
type: [String, Number],
|
|
66
|
+
default: '20px'
|
|
67
|
+
},
|
|
68
|
+
// 左侧返回图标的颜色
|
|
69
|
+
leftIconColor: {
|
|
70
|
+
type: String,
|
|
71
|
+
default: '#303133'
|
|
72
|
+
},
|
|
73
|
+
// 点击左侧区域(返回图标),是否自动返回上一页
|
|
74
|
+
autoBack: {
|
|
75
|
+
type: Boolean,
|
|
76
|
+
default: false
|
|
77
|
+
},
|
|
78
|
+
// 标题的样式,对象或字符串
|
|
79
|
+
titleStyle: {
|
|
80
|
+
type: [String, Object],
|
|
81
|
+
default: ''
|
|
82
|
+
},
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
// 是否显示左边
|
|
86
|
+
showLeft: {
|
|
87
|
+
type: Boolean,
|
|
88
|
+
default: true
|
|
89
|
+
},
|
|
90
|
+
// 小程序端导航栏右侧是否预留胶囊位置
|
|
91
|
+
mpRightReserveCapsule: {
|
|
92
|
+
type: Boolean,
|
|
93
|
+
default: true
|
|
94
|
+
},
|
|
95
|
+
// 键盘高度
|
|
96
|
+
keyboardHeight: {
|
|
97
|
+
type: String,
|
|
98
|
+
default: '0rpx'
|
|
99
|
+
},
|
|
100
|
+
...uni.$w?.props?.navbar
|
|
101
|
+
}
|
|
102
|
+
};
|