From e244800e7e6497553cf21857bbd6695a9cb71c1f Mon Sep 17 00:00:00 2001 From: taohebin Date: Tue, 14 Nov 2023 17:24:35 +0800 Subject: [PATCH 1/6] =?UTF-8?q?=E5=B7=A6=E4=BE=A7=E6=A0=8F:=20=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=20push=E5=85=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/uni-app-x/_sidebar.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/uni-app-x/_sidebar.md b/docs/uni-app-x/_sidebar.md index cb2c3ae19..d46829bc8 100644 --- a/docs/uni-app-x/_sidebar.md +++ b/docs/uni-app-x/_sidebar.md @@ -95,6 +95,8 @@ * [保存图片到相册](api/save-image-to-photos-album.md) * 位置 * [获取当前位置](api/get-location.md) + * 推送 + * [推送](api/push.md) * 数据存储 * [storage(key-value存储)](api/storage.md) * 组件上下文对象 -- Gitee From a7a318f9b45fa314bc3f0750f8e3fe8c582ef9c6 Mon Sep 17 00:00:00 2001 From: wangzhitong Date: Wed, 15 Nov 2023 17:55:54 +0800 Subject: [PATCH 2/6] update app-splashscreen.md --- docs/tutorial/app-splashscreen.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/tutorial/app-splashscreen.md b/docs/tutorial/app-splashscreen.md index 07aec8b6e..47228df5b 100644 --- a/docs/tutorial/app-splashscreen.md +++ b/docs/tutorial/app-splashscreen.md @@ -171,6 +171,7 @@ HBuilderX需要的自定义storyboard文件格式为zip压缩包,里面要求 - 为了避免png文件名称与应用中内置的文件名冲突,建议以dc_launchscreen开头 - 制作 storyboard 时,**请将图片资源直接拖到放工程中,不要放到 imageset 里面,并且图片命名要保证一定的唯一性可参考附件中的示例** - XCode中创建 storyboard 文件时,**页面元素添加约束时一定要相对于** `Superview`,不然启动图到 loading页面过渡时页面会跳动或者变形 +- 更新启动页图片必须改名字,否则覆盖安装可能出现闪一下旧图片才展示新图片的问题 ![](https://img.cdn.aliyun.dcloud.net.cn/client/ask/pkg/splash/xcode.png) ##### 使用storyboard文件 -- Gitee From ff22ecb766d319d5ad616bb15ebcd4eaf6e12477 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E7=A3=8A?= <1633537611@qq.com> Date: Tue, 21 Nov 2023 18:50:34 +0800 Subject: [PATCH 3/6] =?UTF-8?q?=E8=A1=A5=E5=85=85=20pointer-events=20?= =?UTF-8?q?=E5=B9=B3=E5=8F=B0=E5=B7=AE=E5=BC=82=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/uni-app-x/css/pointer-events.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/uni-app-x/css/pointer-events.md b/docs/uni-app-x/css/pointer-events.md index 16f8fb7e1..33684a70f 100644 --- a/docs/uni-app-x/css/pointer-events.md +++ b/docs/uni-app-x/css/pointer-events.md @@ -13,4 +13,10 @@ +#### App平台 +如果当前元素设置 pointer-events 为 none ,当前元素不会响应事件和默认行为;如果同时子元素设置 pointer-events 为 auto,子元素和当前元素不会响应事件和默认行为。 + +#### Web规范 +如果当前元素设置 pointer-events 为 none ,当前元素不会响应事件和默认行为;如果同时子元素设置 pointer-events 为 auto,子元素和当前元素会响应事件和默认行为。 + \ No newline at end of file -- Gitee From 455be3154704e2ad9e37cb49413b61318ec255ff Mon Sep 17 00:00:00 2001 From: wangzhitong Date: Sat, 27 Jan 2024 16:06:38 +0800 Subject: [PATCH 4/6] update univerify.md --- docs/univerify.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/univerify.md b/docs/univerify.md index 2464022d1..e4716e5e6 100644 --- a/docs/univerify.md +++ b/docs/univerify.md @@ -195,7 +195,9 @@ univerifyStyle 数据结构: "height": "60px" //图标高度 默认值:60px }, "closeIcon": { - "path": "static/xxx.png" // 自定义关闭按钮,仅支持本地图片。 HBuilderX3.3.7+版本支持 + "path": "static/xxx.png", // 自定义关闭按钮,仅支持本地图片。HBuilderX3.3.7+版本支持 + "width": "30px", //图标宽度 默认值:30px HBuilderX4.0+版本支持 + "height": "30px" //图标高度 默认值:30px HBuilderX4.0+版本支持 }, "phoneNum": { "color": "#202020" // 手机号文字颜色 默认值:#202020 @@ -626,7 +628,7 @@ exports.main = async(event) => { ## 运行基座和打包 -- 使用`uni一键登录`,不需要制作自定义基座,使用HBuilder标准真机运行基座即可。在云函数中配置好apiKey、apiSecret后,一样从你的账户充值中扣费。 +- 使用`uni一键登录`,安卓平台不需要制作自定义基座,使用HBuilder标准真机运行基座即可,在云函数中配置好apiKey、apiSecret后,一样从你的账户充值中扣费。iOS平台使用标准基座必须要用`io.dcloud.HBuilder`这个bundleId重签,其他bundleId重签无法登录。 - 云端打包 在项目manifest.json页面“App模块配置”项的“OAuth(登录鉴权)”下勾选“一键登录(uni-verify)”。 -- Gitee From be30653926d1627e73799d10e9ebd370b069dfd2 Mon Sep 17 00:00:00 2001 From: wangzhitong Date: Sat, 27 Jan 2024 19:53:33 +0800 Subject: [PATCH 5/6] update app-paypment-paypal.md --- docs/tutorial/app-payment-paypal.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/app-payment-paypal.md b/docs/tutorial/app-payment-paypal.md index 6f1aca785..37cab7252 100644 --- a/docs/tutorial/app-payment-paypal.md +++ b/docs/tutorial/app-payment-paypal.md @@ -8,7 +8,7 @@ 更多信息详见 [申请开通Paypal操作指南](https://uniapp.dcloud.io/app-payment-paypal-open) **注意** -- iOS系统仅支持iOS11.0及以上版本 +- iOS系统仅支持iOS13.0及以上版本 ### 配置 在manifest.json文件“App模块配置”项的“Payment(支付)”下,勾选“paypal支付”项并配置相关参数 -- Gitee From 101214ba0ba197f1f8027950358037936321c5ad Mon Sep 17 00:00:00 2001 From: z Z <1904314465@qq.com> Date: Thu, 4 Jul 2024 05:20:27 +0000 Subject: [PATCH 6/6] =?UTF-8?q?=E2=80=9C=E4=BA=8B=E4=BB=B6=E5=90=8D?= =?UTF-8?q?=E7=A7=B0=E2=80=9D=E5=86=99=E6=88=90=E4=BA=86=E2=80=9C=E4=BA=8B?= =?UTF-8?q?=E4=BB=B6=E7=A7=B0=E5=90=8D=E2=80=9D=EF=BC=8C=E8=BF=9B=E8=A1=8C?= =?UTF-8?q?=E4=BF=AE=E8=AE=A2=20component/uniui/uni-file-picker.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit “事件名称”写成了“事件称名”,进行修订 Signed-off-by: z Z ... <1904314465@qq.com> --- docs/component/uniui/uni-file-picker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/component/uniui/uni-file-picker.md b/docs/component/uniui/uni-file-picker.md index 40cee2eed..7e8004c55 100644 --- a/docs/component/uniui/uni-file-picker.md +++ b/docs/component/uniui/uni-file-picker.md @@ -284,7 +284,7 @@ 通过 `$ref` 调用 -| 方法称名| 说明|参数| +| 方法名称| 说明|参数| | :-:| :-:|:-:| | upload()| 手动上传 ,如`autoUpload`为`false` ,必须调用此方法| - | | clearFiles(index:Number) | 清除选择结果| 传入 Number 为删除指定下标的文件 ,不传为删除所有| -- Gitee