From 0a561f167e36a0856c5ecd78b984a1f02e01428d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?home=E5=AD=99?= <1162067978@qq.com> Date: Tue, 11 Mar 2025 14:55:18 +0800 Subject: [PATCH] 1 --- node_modules/uview-ui/LICENSE | 4 +- .../uview-ui/components/u-badge/u-badge.vue | 2 +- .../uview-ui/components/u-card/u-card.vue | 2 +- .../components/u-dropdown/u-dropdown.vue | 2 + .../uview-ui/components/u-image/u-image.vue | 2 +- .../uview-ui/components/u-input/u-input.vue | 3 +- .../u-line-progress/u-line-progress.vue | 6 +-- .../components/u-loading/u-loading.vue | 2 +- .../u-message-input/u-message-input.vue | 4 +- .../uview-ui/components/u-modal/u-modal.vue | 2 +- .../components/u-notice-bar/u-notice-bar.vue | 4 +- .../u-radio-group/u-radio-group.vue | 2 +- .../uview-ui/components/u-radio/u-radio.vue | 2 +- .../uview-ui/components/u-select/u-select.vue | 2 +- .../uview-ui/components/u-slider/u-slider.vue | 6 +-- .../u-tabs-swiper/u-tabs-swiper.vue | 6 +-- .../uview-ui/components/u-tabs/u-tabs.vue | 4 +- .../uview-ui/components/u-toast/u-toast.vue | 2 +- node_modules/uview-ui/libs/config/config.js | 4 +- .../uview-ui/libs/function/deepClone.js | 44 ++++++++++++------- .../uview-ui/libs/function/deepMerge.js | 37 ++++++++-------- node_modules/uview-ui/libs/function/route.js | 10 ++--- node_modules/uview-ui/package.json | 26 +++++------ package-lock.json | 18 ++++---- package.json | 4 +- pages/videoLive/video-webView.vue | 7 ++- 26 files changed, 112 insertions(+), 95 deletions(-) diff --git a/node_modules/uview-ui/LICENSE b/node_modules/uview-ui/LICENSE index 8e39ead..4db40ef 100644 --- a/node_modules/uview-ui/LICENSE +++ b/node_modules/uview-ui/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020 www.uviewui.com +Copyright (c) 2023 www.uviewui.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. \ No newline at end of file +SOFTWARE. diff --git a/node_modules/uview-ui/components/u-badge/u-badge.vue b/node_modules/uview-ui/components/u-badge/u-badge.vue index e85b133..1c15507 100644 --- a/node_modules/uview-ui/components/u-badge/u-badge.vue +++ b/node_modules/uview-ui/components/u-badge/u-badge.vue @@ -113,7 +113,7 @@ style.right = this.offset[1] + 'rpx'; style.transform = "translateY(0) translateX(0)"; } - // 如果尺寸为mini,后接上scal() + // 如果尺寸为mini,后接上scale() if(this.size == 'mini') { style.transform = style.transform + " scale(0.8)"; } diff --git a/node_modules/uview-ui/components/u-card/u-card.vue b/node_modules/uview-ui/components/u-card/u-card.vue index a3cb2aa..79fb726 100644 --- a/node_modules/uview-ui/components/u-card/u-card.vue +++ b/node_modules/uview-ui/components/u-card/u-card.vue @@ -23,7 +23,7 @@ diff --git a/node_modules/uview-ui/components/u-input/u-input.vue b/node_modules/uview-ui/components/u-input/u-input.vue index 301e800..94b05f2 100644 --- a/node_modules/uview-ui/components/u-input/u-input.vue +++ b/node_modules/uview-ui/components/u-input/u-input.vue @@ -28,6 +28,7 @@ :selection-start="uSelectionStart" :cursor-spacing="getCursorSpacing" :show-confirm-bar="showConfirmbar" + :adjust-position="adjustPosition" @input="handleInput" @blur="handleBlur" @focus="onFocus" @@ -250,7 +251,7 @@ export default { }, getStyle() { let style = {}; - // 如果没有自定义高度,就根据type为input还是textare来分配一个默认的高度 + // 如果没有自定义高度,就根据type为input还是textarea来分配一个默认的高度 style.minHeight = this.height ? this.height + 'rpx' : this.type == 'textarea' ? this.textareaHeight + 'rpx' : this.inputHeight + 'rpx'; style = Object.assign(style, this.customStyle); diff --git a/node_modules/uview-ui/components/u-line-progress/u-line-progress.vue b/node_modules/uview-ui/components/u-line-progress/u-line-progress.vue index 77e2da2..16c47a9 100644 --- a/node_modules/uview-ui/components/u-line-progress/u-line-progress.vue +++ b/node_modules/uview-ui/components/u-line-progress/u-line-progress.vue @@ -10,9 +10,9 @@ striped && stripedActive ? 'u-striped-active' : '' ]" class="u-active" :style="[progressStyle]"> - + @@ -102,7 +102,7 @@