@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
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "u-status-bar",
|
|
3
|
+
"displayName": "u-status-bar 占位状态栏,自动计算状态栏高度,全端兼容,无论平台,一致体验。",
|
|
4
|
+
"version": "1.0.1",
|
|
5
|
+
"description": "本组件主要用于状态填充,比如在自定导航栏的时候,它会自动适配一个恰当的状态栏高度。",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"u-ui",
|
|
8
|
+
"wuui",
|
|
9
|
+
"u-status-bar",
|
|
10
|
+
"status-bar",
|
|
11
|
+
"状态栏"
|
|
12
|
+
],
|
|
13
|
+
"repository": "",
|
|
14
|
+
"engines": {
|
|
15
|
+
"HBuilderX": "^3.1.0"
|
|
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
|
+
"encrypt": [],
|
|
40
|
+
"platforms": {
|
|
41
|
+
"cloud": {
|
|
42
|
+
"tcb": "y",
|
|
43
|
+
"aliyun": "y",
|
|
44
|
+
"alipay": "n"
|
|
45
|
+
},
|
|
46
|
+
"client": {
|
|
47
|
+
"Vue": {
|
|
48
|
+
"vue2": "y",
|
|
49
|
+
"vue3": "y"
|
|
50
|
+
},
|
|
51
|
+
"App": {
|
|
52
|
+
"app-vue": "y",
|
|
53
|
+
"app-nvue": "y"
|
|
54
|
+
},
|
|
55
|
+
"H5-mobile": {
|
|
56
|
+
"Safari": "y",
|
|
57
|
+
"Android Browser": "y",
|
|
58
|
+
"微信浏览器(Android)": "y",
|
|
59
|
+
"QQ浏览器(Android)": "y"
|
|
60
|
+
},
|
|
61
|
+
"H5-pc": {
|
|
62
|
+
"Chrome": "y",
|
|
63
|
+
"IE": "y",
|
|
64
|
+
"Edge": "y",
|
|
65
|
+
"Firefox": "y",
|
|
66
|
+
"Safari": "y"
|
|
67
|
+
},
|
|
68
|
+
"小程序": {
|
|
69
|
+
"微信": "y",
|
|
70
|
+
"阿里": "y",
|
|
71
|
+
"百度": "y",
|
|
72
|
+
"字节跳动": "y",
|
|
73
|
+
"QQ": "y",
|
|
74
|
+
"钉钉": "n",
|
|
75
|
+
"快手": "n",
|
|
76
|
+
"飞书": "n",
|
|
77
|
+
"京东": "n"
|
|
78
|
+
},
|
|
79
|
+
"快应用": {
|
|
80
|
+
"华为": "n",
|
|
81
|
+
"联盟": "n"
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
## u-status-bar 按钮
|
|
2
|
+
|
|
3
|
+
> **组件名:u-status-bar**
|
|
4
|
+
|
|
5
|
+
本组件主要用于状态填充,比如在自定导航栏的时候,它会自动适配一个恰当的状态栏高度。
|
|
6
|
+
|
|
7
|
+
## [查看文档](https://ijry.github.io/uview-plus/components/safeAreaInset.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)**
|
|
@@ -14,7 +14,7 @@ import { addUnit, addStyle, deepMerge, getWindowInfo } from '../../libs/function
|
|
|
14
14
|
* @tutorial https://uview-plus.jiangruyi.com/components/statusBar.html
|
|
15
15
|
* @property {String} bgColor 背景色 (默认 'transparent' )
|
|
16
16
|
* @property {String | Object} customStyle 自定义样式
|
|
17
|
-
* @example <
|
|
17
|
+
* @example <up-status-bar></up-status-bar>
|
|
18
18
|
*/
|
|
19
19
|
export default {
|
|
20
20
|
name: 'u-status-bar',
|
|
@@ -19,7 +19,7 @@ import test from '../../libs/function/test';
|
|
|
19
19
|
* @property {String} activeIcon 激活状态的图标
|
|
20
20
|
* @property {String} inactiveIcon 未激活状态图标
|
|
21
21
|
* @property {Boolean} dot 是否显示点类型 (默认 false )
|
|
22
|
-
* @example <
|
|
22
|
+
* @example <up-steps current="0"><up-steps-item title="已出库" desc="10:35" ></up-steps-item></up-steps>
|
|
23
23
|
*/
|
|
24
24
|
export default {
|
|
25
25
|
name: 'u-steps',
|
|
@@ -23,11 +23,11 @@
|
|
|
23
23
|
}"
|
|
24
24
|
></view>
|
|
25
25
|
<view class="u-steps-item__wrapper__icon" v-else-if="parentData.activeIcon || parentData.inactiveIcon">
|
|
26
|
-
<
|
|
26
|
+
<up-icon
|
|
27
27
|
:name="index <= parentData.current ? parentData.activeIcon : parentData.inactiveIcon"
|
|
28
28
|
:size="iconSize"
|
|
29
29
|
:color="index <= parentData.current ? parentData.activeColor : parentData.inactiveColor"
|
|
30
|
-
></
|
|
30
|
+
></up-icon>
|
|
31
31
|
</view>
|
|
32
32
|
<view
|
|
33
33
|
v-else
|
|
@@ -46,12 +46,12 @@
|
|
|
46
46
|
>
|
|
47
47
|
{{ index + 1 }}
|
|
48
48
|
</text>
|
|
49
|
-
<
|
|
49
|
+
<up-icon
|
|
50
50
|
v-else
|
|
51
51
|
:color="statusClass === 'error' ? 'error' : parentData.activeColor"
|
|
52
52
|
size="12"
|
|
53
53
|
:name="statusClass === 'error' ? 'close' : 'checkmark'"
|
|
54
|
-
></
|
|
54
|
+
></up-icon>
|
|
55
55
|
</view>
|
|
56
56
|
</slot>
|
|
57
57
|
</view>
|
|
@@ -106,7 +106,7 @@ const dom = uni.requireNativePlugin('dom');
|
|
|
106
106
|
* @property {String} current 描述文本
|
|
107
107
|
* @property {String | Number} iconSize 图标大小 (默认 17 )
|
|
108
108
|
* @property {Boolean} error 当前步骤是否处于失败状态 (默认 false )
|
|
109
|
-
* @example <
|
|
109
|
+
* @example <up-steps current="0"><up-steps-item title="已出库" desc="10:35" ></up-steps-item></up-steps>
|
|
110
110
|
*/
|
|
111
111
|
export default {
|
|
112
112
|
name: 'u-steps-item',
|
|
@@ -155,8 +155,8 @@ export default {
|
|
|
155
155
|
style.backgroundColor = this.parent.children?.[this.index + 1]?.error
|
|
156
156
|
? color.error
|
|
157
157
|
: this.index < this.parentData.current
|
|
158
|
-
|
|
159
|
-
|
|
158
|
+
? this.parentData.activeColor
|
|
159
|
+
: this.parentData.inactiveColor;
|
|
160
160
|
return style;
|
|
161
161
|
},
|
|
162
162
|
itemStyleInner() {
|
|
@@ -24,7 +24,7 @@ import zIndex from '../../libs/config/zIndex';
|
|
|
24
24
|
* @property {Object} customStyle 组件的样式,对象形式
|
|
25
25
|
* @event {Function} fixed 组件吸顶时触发
|
|
26
26
|
* @event {Function} unfixed 组件取消吸顶时触发
|
|
27
|
-
* @example <
|
|
27
|
+
* @example <up-sticky offsetTop="200"><view>塞下秋来风景异,衡阳雁去无留意</view></up-sticky>
|
|
28
28
|
*/
|
|
29
29
|
export default {
|
|
30
30
|
name: 'u-sticky',
|
|
@@ -54,7 +54,7 @@ import { addStyle, addUnit, sleep } from '../../libs/function/index';
|
|
|
54
54
|
* @property {String} keyName 从`list`元素对象中读取的键名(默认 'name' )
|
|
55
55
|
*
|
|
56
56
|
* @event {Function} change 分段器选项发生改变时触发 回调 index:选项的index索引值,从0开始
|
|
57
|
-
* @example <
|
|
57
|
+
* @example <up-subsection :list="list" :current="curNow" @change="sectionChange"></up-subsection>
|
|
58
58
|
*/
|
|
59
59
|
export default {
|
|
60
60
|
name: 'u-subsection',
|
|
@@ -13,7 +13,7 @@ import { mixin } from '../../libs/mixin/mixin';
|
|
|
13
13
|
* @tutorial https://ijry.github.io/uview-plus/components/swipeAction.html
|
|
14
14
|
* @property {Boolean} autoClose 是否自动关闭其他swipe按钮组
|
|
15
15
|
* @event {Function(index)} click 点击组件时触发
|
|
16
|
-
* @example <
|
|
16
|
+
* @example <up-swipe-action><up-swipe-action-item :rightOptions="options1" ></up-swipe-action-item></up-swipe-action>
|
|
17
17
|
*/
|
|
18
18
|
export default {
|
|
19
19
|
name: 'u-swipe-action',
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
item.style
|
|
29
29
|
]"
|
|
30
30
|
>
|
|
31
|
-
<
|
|
31
|
+
<up-icon
|
|
32
32
|
v-if="item.icon"
|
|
33
33
|
:name="item.icon"
|
|
34
34
|
:color="item.style && item.style.color ? item.style.color : '#ffffff'"
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
:customStyle="{
|
|
39
39
|
marginRight: item.text ? '2px' : 0
|
|
40
40
|
}"
|
|
41
|
-
></
|
|
41
|
+
></up-icon>
|
|
42
42
|
<text
|
|
43
43
|
v-if="item.text"
|
|
44
44
|
class="u-swipe-action-item__right__button__wrapper__text u-line-1"
|
|
@@ -124,7 +124,7 @@ import other from './other.js';
|
|
|
124
124
|
* @property {String | Number} duration 动画过渡时间,单位ms(默认 350 )
|
|
125
125
|
* @event {Function(index)} open 组件打开时触发
|
|
126
126
|
* @event {Function(index)} close 组件关闭时触发
|
|
127
|
-
* @example <
|
|
127
|
+
* @example <up-swipe-action><up-swipe-action-item :options="options1" ></up-swipe-action-item></up-swipe-action>
|
|
128
128
|
*/
|
|
129
129
|
export default {
|
|
130
130
|
name: 'u-swipe-action-item',
|
|
@@ -119,7 +119,7 @@ import test from '../../libs/function/test';
|
|
|
119
119
|
* @property {Boolean} showTitle 是否显示标题,要求数组对象中有title属性(默认 false )
|
|
120
120
|
* @event {Function(index)} click 点击轮播图时触发 index:点击了第几张图片,从0开始
|
|
121
121
|
* @event {Function(index)} change 轮播图切换时触发(自动或者手动切换) index:切换到了第几张图片,从0开始
|
|
122
|
-
* @example <
|
|
122
|
+
* @example <up-swiper :list="list4" keyName="url" :autoplay="false"></up-swiper>
|
|
123
123
|
*/
|
|
124
124
|
export default {
|
|
125
125
|
name: 'u-swiper',
|
|
@@ -36,7 +36,7 @@ import { addUnit } from '../../libs/function/index';
|
|
|
36
36
|
* @property {String} indicatorActiveColor 指示器非激活颜色
|
|
37
37
|
* @property {String} indicatorInactiveColor 指示器的激活颜色
|
|
38
38
|
* @property {String} indicatorMode 指示器模式(默认 'line' )
|
|
39
|
-
* @example <
|
|
39
|
+
* @example <up-swiper :list="list4" indicator keyName="url" :autoplay="false"></up-swiper>
|
|
40
40
|
*/
|
|
41
41
|
export default {
|
|
42
42
|
name: 'u-swiper-indicator',
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
:style="[nodeStyle]"
|
|
22
22
|
ref="u-switch__node"
|
|
23
23
|
>
|
|
24
|
-
<
|
|
24
|
+
<up-loading-icon
|
|
25
25
|
:show="loading"
|
|
26
26
|
mode="circle"
|
|
27
27
|
timingFunction='linear'
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
* @property {Object} customStyle 定义需要用到的外部样式
|
|
59
59
|
*
|
|
60
60
|
* @event {Function} change 在switch打开或关闭时触发
|
|
61
|
-
* @example <
|
|
61
|
+
* @example <up-switch v-model="checked" active-color="red" inactive-color="#eee"></up-switch>
|
|
62
62
|
*/
|
|
63
63
|
export default {
|
|
64
64
|
name: "u-switch",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
<view class="u-tabbar__content__item-wrapper">
|
|
11
11
|
<slot />
|
|
12
12
|
</view>
|
|
13
|
-
<
|
|
13
|
+
<up-safe-bottom v-if="safeAreaInsetBottom"></up-safe-bottom>
|
|
14
14
|
</view>
|
|
15
15
|
<view
|
|
16
16
|
class="u-tabbar__placeholder"
|
|
@@ -43,7 +43,7 @@ const dom = uni.requireNativePlugin('dom');
|
|
|
43
43
|
* @property {Boolean} placeholder fixed定位固定在底部时,是否生成一个等高元素防止塌陷(默认 true )
|
|
44
44
|
* @property {Object} customStyle 定义需要用到的外部样式
|
|
45
45
|
*
|
|
46
|
-
* @example <
|
|
46
|
+
* @example <up-tabbar :value="value2" :placeholder="false" @change="name => value2 = name" :fixed="false" :safeAreaInsetBottom="false"><up-tabbar-item text="首页" icon="home" dot ></up-tabbar-item></up-tabbar>
|
|
47
47
|
*/
|
|
48
48
|
export default {
|
|
49
49
|
name: 'u-tabbar',
|
|
@@ -1,19 +1,24 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<view class="u-tabbar-item" :style="[addStyle(customStyle)]" @tap="clickHandler">
|
|
3
3
|
<view class="u-tabbar-item__icon">
|
|
4
|
-
<
|
|
4
|
+
<up-icon
|
|
5
|
+
v-if="icon"
|
|
6
|
+
:name="icon"
|
|
7
|
+
:color="isActive ? parentData.activeColor : parentData.inactiveColor"
|
|
8
|
+
:size="20"
|
|
9
|
+
></up-icon>
|
|
5
10
|
<template v-else>
|
|
6
11
|
<slot v-if="isActive" name="active-icon" />
|
|
7
12
|
<slot v-else name="inactive-icon" />
|
|
8
13
|
</template>
|
|
9
|
-
<
|
|
14
|
+
<up-badge
|
|
10
15
|
absolute
|
|
11
16
|
:offset="[0, dot ? '34rpx' : badge > 9 ? '14rpx' : '20rpx']"
|
|
12
17
|
:customStyle="badgeStyle"
|
|
13
18
|
:isDot="dot"
|
|
14
19
|
:value="badge || (dot ? 1 : null)"
|
|
15
20
|
:show="dot || badge > 0"
|
|
16
|
-
></
|
|
21
|
+
></up-badge>
|
|
17
22
|
</view>
|
|
18
23
|
<slot name="text">
|
|
19
24
|
<text
|
|
@@ -44,7 +49,7 @@ import { addStyle, error } from '../../libs/function/index';
|
|
|
44
49
|
* @property {Object | String} badgeStyle 控制徽标的位置,对象或者字符串形式,可以设置top和right属性(默认 'top: 6px;right:2px;' )
|
|
45
50
|
* @property {Object} customStyle 定义需要用到的外部样式
|
|
46
51
|
*
|
|
47
|
-
* @example <
|
|
52
|
+
* @example <up-tabbar :value="value2" :placeholder="false" @change="name => value2 = name" :fixed="false" :safeAreaInsetBottom="false"><up-tabbar-item text="首页" icon="home" dot ></up-tabbar-item></up-tabbar>
|
|
48
53
|
*/
|
|
49
54
|
export default {
|
|
50
55
|
name: 'u-tabbar-item',
|
|
@@ -9,7 +9,7 @@ import { mixin } from '../../libs/mixin/mixin';
|
|
|
9
9
|
* Table 表格
|
|
10
10
|
* @description 表格组件一般用于展示大量结构化数据的场景 本组件标签类似HTML的table表格,由table、tr、th、td四个组件组成
|
|
11
11
|
* @tutorial https://ijry.github.io/uview-plus/components/table.html
|
|
12
|
-
* @example <
|
|
12
|
+
* @example <up-table><up-tr><up-th>学校</up-th </up-tr> <up-tr><up-td>浙江大学</up-td> </up-tr> <up-tr><up-td>清华大学</up-td> </up-tr></up-table>
|
|
13
13
|
*/
|
|
14
14
|
export default {
|
|
15
15
|
name: 'u-table',
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
>
|
|
48
48
|
{{ item[keyName] }}
|
|
49
49
|
</text>
|
|
50
|
-
<
|
|
50
|
+
<up-badge
|
|
51
51
|
:show="!!(item.badge && (item.badge.show || item.badge.isDot || item.badge.value))"
|
|
52
52
|
:isDot="(item.badge && item.badge.isDot) || propsBadge.isDot"
|
|
53
53
|
:value="(item.badge && item.badge.value) || propsBadge.value"
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
:numberType="(item.badge && item.badge.numberType) || propsBadge.numberType"
|
|
61
61
|
:inverted="(item.badge && item.badge.inverted) || propsBadge.inverted"
|
|
62
62
|
customStyle="margin-left: 4px;"
|
|
63
|
-
></
|
|
63
|
+
></up-badge>
|
|
64
64
|
</view>
|
|
65
65
|
<!-- #ifdef APP-NVUE -->
|
|
66
66
|
<view
|
|
@@ -119,7 +119,7 @@ import { addUnit, addStyle, deepMerge, getPx, sleep, getWindowInfo } from '../..
|
|
|
119
119
|
* @event {Function(index)} change 标签改变时触发 index: 点击了第几个tab,索引从0开始
|
|
120
120
|
* @event {Function(index)} click 点击标签时触发 index: 点击了第几个tab,索引从0开始
|
|
121
121
|
* @event {Function(index)} longPress 长按标签时触发 index: 点击了第几个tab,索引从0开始
|
|
122
|
-
* @example <
|
|
122
|
+
* @example <up-tabs :list="list" :is-scroll="false" :current="current" @change="change" @longPress="longPress"></up-tabs>
|
|
123
123
|
*/
|
|
124
124
|
export default {
|
|
125
125
|
name: 'u-tabs',
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<
|
|
2
|
+
<up-transition mode="fade" :show="show" style="display: inline-flex">
|
|
3
3
|
<view class="u-tag-wrapper cursor-pointer">
|
|
4
4
|
<view
|
|
5
5
|
class="u-tag"
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
<slot name="icon">
|
|
23
23
|
<view class="u-tag__icon" v-if="icon">
|
|
24
24
|
<image v-if="testImage(icon)" :src="icon" :style="[imgStyle]"></image>
|
|
25
|
-
<
|
|
25
|
+
<up-icon v-else :color="elIconColor" :name="icon" :size="iconSize"></up-icon>
|
|
26
26
|
</view>
|
|
27
27
|
</slot>
|
|
28
28
|
<view class="u-tag__content">
|
|
@@ -54,10 +54,10 @@
|
|
|
54
54
|
@tap.stop="closeHandler"
|
|
55
55
|
:style="{ backgroundColor: closeColor }"
|
|
56
56
|
>
|
|
57
|
-
<
|
|
57
|
+
<up-icon name="close" :size="closeSize" color="#ffffff"></up-icon>
|
|
58
58
|
</view>
|
|
59
59
|
</view>
|
|
60
|
-
</
|
|
60
|
+
</up-transition>
|
|
61
61
|
</template>
|
|
62
62
|
<script>
|
|
63
63
|
import { props } from './props';
|
|
@@ -86,7 +86,7 @@ import { addUnit, genLightColor } from '../../libs/function/index';
|
|
|
86
86
|
* @property {String} icon 内置图标,或绝对路径的图片
|
|
87
87
|
* @event {Function(index)} click 点击标签时触发 index: 传递的index参数值
|
|
88
88
|
* @event {Function(index)} close closable为true时,点击标签关闭按钮触发 index: 传递的index参数值
|
|
89
|
-
* @example <
|
|
89
|
+
* @example <up-tag text="标签" type="error" plain plainFill></up-tag>
|
|
90
90
|
*/
|
|
91
91
|
export default {
|
|
92
92
|
name: 'u-tag',
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "u-text",
|
|
3
|
+
"displayName": "u-text 文本,全端兼容,无论平台,一直体验",
|
|
4
|
+
"version": "1.0.4",
|
|
5
|
+
"description": "u-text 集成了文本类在项目中的常用功能,包括状态,拨打电话,格式化日期,*替换,超链接...等功能。 您大可不必在使用特殊文本时自己定义,text组件几乎涵盖您能使用的大部分场景。",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"u-text",
|
|
8
|
+
"wuui",
|
|
9
|
+
"u-ui",
|
|
10
|
+
"文本",
|
|
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-icon",
|
|
40
|
+
"u-link"
|
|
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
|
+
"钉钉": "u",
|
|
78
|
+
"快手": "u",
|
|
79
|
+
"飞书": "u",
|
|
80
|
+
"京东": "u"
|
|
81
|
+
},
|
|
82
|
+
"快应用": {
|
|
83
|
+
"华为": "u",
|
|
84
|
+
"联盟": "u"
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
## u-text 按钮
|
|
2
|
+
|
|
3
|
+
> **组件名:u-text**
|
|
4
|
+
|
|
5
|
+
u-text 集成了文本类在项目中的常用功能,包括状态,拨打电话,格式化日期,*替换,超链接...等功能。 您大可不必在使用特殊文本时自己定义,text组件几乎涵盖您能使用的大部分场景。
|
|
6
|
+
|
|
7
|
+
## [查看文档](https://ijry.github.io/uview-plus/components/text.html)
|
|
8
|
+
|
|
9
|
+
## [更多组件, 请查看 `u-ui` 组件库](https://ext.dcloud.net.cn/plugin?name=u--ui)
|
|
10
|
+
|
|
11
|
+
**如使用过程中有任何问题,或者您对u-ui有一些好的建议。<br>欢迎加入 [u-ui 交流群](https://ijry.github.io/uview-plus/components/qqFeedBack.html)**
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|