From 659d09ec24dab6c451220c8f3bb3943b0fdb3ba1 Mon Sep 17 00:00:00 2001
From: quanyawei <401863037@qq.com>
Date: Mon, 08 Jan 2024 16:16:12 +0800
Subject: [PATCH] fix:地图导航

---
 uni_modules/uview-ui/components/u-notice-bar/props.js |   70 +++++++++++++++++++++++++++++++++++
 1 files changed, 70 insertions(+), 0 deletions(-)

diff --git a/uni_modules/uview-ui/components/u-notice-bar/props.js b/uni_modules/uview-ui/components/u-notice-bar/props.js
new file mode 100644
index 0000000..7040c29
--- /dev/null
+++ b/uni_modules/uview-ui/components/u-notice-bar/props.js
@@ -0,0 +1,70 @@
+export default {
+    props: {
+        // ������������������������
+        text: {
+            type: [Array, String],
+            default: uni.$u.props.noticeBar.text
+        },
+        // ���������������������row-���������������column-������������
+        direction: {
+            type: String,
+            default: uni.$u.props.noticeBar.direction
+        },
+        // direction = row������������������������������������
+        step: {
+            type: Boolean,
+            default: uni.$u.props.noticeBar.step
+        },
+        // ���������������������������������
+        icon: {
+            type: String,
+            default: uni.$u.props.noticeBar.icon
+        },
+        // ���������������link-������������������closable-������������������������
+        mode: {
+            type: String,
+            default: uni.$u.props.noticeBar.mode
+        },
+        // ������������������������������������������������
+        color: {
+            type: String,
+            default: uni.$u.props.noticeBar.color
+        },
+        // ������������
+        bgColor: {
+            type: String,
+            default: uni.$u.props.noticeBar.bgColor
+        },
+        // ������������������������������������������������������px(px)���������������������������������������������������������������������������
+        speed: {
+            type: [String, Number],
+            default: uni.$u.props.noticeBar.speed
+        },
+        // ������������
+        fontSize: {
+            type: [String, Number],
+            default: uni.$u.props.noticeBar.fontSize
+        },
+        // ���������������������������������������ms
+        duration: {
+            type: [String, Number],
+            default: uni.$u.props.noticeBar.duration
+        },
+        // ������������������������������
+        // ������HX2.6.11������������App 2.5.5+���H5 2.5.5+���������������������������������������������
+        disableTouch: {
+            type: Boolean,
+            default: uni.$u.props.noticeBar.disableTouch
+        },
+        // ���������������������
+        url: {
+            type: String,
+            default: uni.$u.props.noticeBar.url
+        },
+        // ���������������������
+        linkType: {
+            type: String,
+            default: uni.$u.props.noticeBar.linkType
+        }
+    }
+}

--
Gitblit v1.8.0