From e2dbe4d9fc18fcf5dc34efad37b3949ebb3f8ef7 Mon Sep 17 00:00:00 2001 From: Wei Bo <53268471+Calvester@users.noreply.github.com> Date: Thu, 7 Jan 2021 12:51:58 +0800 Subject: [PATCH] docs: update the url of mini program development document (#3941) --- README.md | 8 ++++---- docs/markdown/quickstart.md | 2 +- packages/action-sheet/README.md | 2 +- packages/button/README.md | 2 +- packages/dialog/README.md | 4 ++-- packages/goods-action/README.md | 4 ++-- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 789be5aa..b72b107e 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,7 @@ npm install npm run dev ``` -打开[微信开发者工具](https://mp.weixin.qq.com/debug/wxadoc/dev/devtools/download.html),把`vant-weapp/example`目录添加进去就可以预览示例了。 +打开[微信开发者工具](https://developers.weixin.qq.com/miniprogram/dev/devtools/download.html),把`vant-weapp/example`目录添加进去就可以预览示例了。 PS:关于 `van-area` Area 省市区选择组件,地区数据初始化可以直接在云开发环境中导入`vant-weapp/example/database_area.JSON`文件使用 @@ -130,6 +130,6 @@ Vant Weapp 最低支持到小程序基础库 2.2.3 版本 [issue]: https://github.com/youzan/vant-weapp/issues/new [PR]: https://github.com/youzan/vant-weapp/compare [MIT]: http://opensource.org/licenses/MIT -[小程序简易教程]: https://mp.weixin.qq.com/debug/wxadoc/dev/ -[小程序框架介绍]: https://mp.weixin.qq.com/debug/wxadoc/dev/framework/MINA.html -[微信开发者工具]: https://mp.weixin.qq.com/debug/wxadoc/dev/devtools/download.html +[小程序简易教程]: https://developers.weixin.qq.com/miniprogram/dev/framework/ +[小程序框架介绍]: https://developers.weixin.qq.com/miniprogram/dev/framework/MINA.html +[微信开发者工具]: https://developers.weixin.qq.com/miniprogram/dev/devtools/download.html diff --git a/docs/markdown/quickstart.md b/docs/markdown/quickstart.md index e006b1e5..fd7f6a2c 100644 --- a/docs/markdown/quickstart.md +++ b/docs/markdown/quickstart.md @@ -2,7 +2,7 @@ ### 背景知识 -使用 Vant Weapp 前,请确保你已经学习过微信官方的 [小程序简易教程](https://mp.weixin.qq.com/debug/wxadoc/dev/) 和 [自定义组件介绍](https://developers.weixin.qq.com/miniprogram/dev/framework/custom-component/)。 +使用 Vant Weapp 前,请确保你已经学习过微信官方的 [小程序简易教程](https://developers.weixin.qq.com/miniprogram/dev/framework/) 和 [自定义组件介绍](https://developers.weixin.qq.com/miniprogram/dev/framework/custom-component/)。 ## 安装 diff --git a/packages/action-sheet/README.md b/packages/action-sheet/README.md index 867c9944..3155c06f 100644 --- a/packages/action-sheet/README.md +++ b/packages/action-sheet/README.md @@ -189,7 +189,7 @@ Page({ | loading | 是否为加载状态 | _boolean_ | - | | disabled | 是否为禁用状态 | _boolean_ | - | | className | 为对应列添加额外的 class 类名 | _string_ | - | -| openType | 微信开放能力,具体支持可参考 [微信官方文档](https://mp.weixin.qq.com/debug/wxadoc/dev/component/button.html) | _string_ | - | +| openType | 微信开放能力,具体支持可参考 [微信官方文档](https://developers.weixin.qq.com/miniprogram/dev/component/button.html) | _string_ | - | | lang | 指定返回用户信息的语言,zh_CN 简体中文,zh_TW 繁体中文,en 英文 | _string_ | `en` | | sessionFrom | 会话来源,openType="contact"时有效 | _string_ | - | | sendMessageTitle | 会话内消息卡片标题,openType="contact"时有效 | _string_ | 当前标题 | diff --git a/packages/button/README.md b/packages/button/README.md index 8935c8e0..dca183ec 100644 --- a/packages/button/README.md +++ b/packages/button/README.md @@ -132,7 +132,7 @@ | loading-type | 加载状态图标类型,可选值为 `spinner` | _string_ | `circular` | - | | loading-size | 加载图标大小 | _string_ | `20px` | - | | custom-style | 自定义样式 | _string_ | - | - | -| open-type | 微信开放能力,具体支持可参考 [微信官方文档](https://mp.weixin.qq.com/debug/wxadoc/dev/component/button.html) | _string_ | - | - | +| open-type | 微信开放能力,具体支持可参考 [微信官方文档](https://developers.weixin.qq.com/miniprogram/dev/component/button.html) | _string_ | - | - | | app-parameter | 打开 APP 时,向 APP 传递的参数 | _string_ | - | - | | lang | 指定返回用户信息的语言,zh_CN 简体中文,
zh_TW 繁体中文,en 英文 | _string_ | `en` | - | - | | session-from | 会话来源 | _string_ | - | - | diff --git a/packages/dialog/README.md b/packages/dialog/README.md index 3f6f13e5..2492c03a 100644 --- a/packages/dialog/README.md +++ b/packages/dialog/README.md @@ -196,7 +196,7 @@ Page({ | beforeClose | 关闭前的回调函数,返回 `false` 可阻止关闭,支持返回 Promise | _(action) => boolean \| Promise_ | - | | context | 选择器的选择范围,可以传入自定义组件的 this 作为上下文 | _object_ | 当前页面 | | transition | 动画名称,可选值为`fade` `none` | _string_ | `scale` | -| confirmButtonOpenType | 确认按钮的微信开放能力,具体支持可参考 [微信官方文档](https://mp.weixin.qq.com/debug/wxadoc/dev/component/button.html) | _string_ | - | +| confirmButtonOpenType | 确认按钮的微信开放能力,具体支持可参考 [微信官方文档](https://developers.weixin.qq.com/miniprogram/dev/component/button.html) | _string_ | - | ### OpenType Options @@ -242,7 +242,7 @@ Page({ | async-close | 已废弃,将在 2.0.0 移除,请使用 `beforeClose` 属性代替 | _boolean_ | `false` | | before-close | 关闭前的回调函数,返回 `false` 可阻止关闭,支持返回 Promise | _(action) => boolean \| Promise_ | - | | transition | 动画名称,可选值为`fade` | _string_ | `scale` | -| confirm-button-open-type | 确认按钮的微信开放能力,具体支持可参考 [微信官方文档](https://mp.weixin.qq.com/debug/wxadoc/dev/component/button.html) | _string_ | - | +| confirm-button-open-type | 确认按钮的微信开放能力,具体支持可参考 [微信官方文档](https://developers.weixin.qq.com/miniprogram/dev/component/button.html) | _string_ | - | ### OpenType Props diff --git a/packages/goods-action/README.md b/packages/goods-action/README.md index e276e058..5c506065 100644 --- a/packages/goods-action/README.md +++ b/packages/goods-action/README.md @@ -105,7 +105,7 @@ Page({ | id | 标识符 | _string_ | - | - | | disabled | 是否禁用按钮 | _boolean_ | `false` | - | | loading | 是否显示为加载状态 | _boolean_ | `false` | - | -| open-type | 微信开放能力,具体支持可参考 [微信官方文档](https://mp.weixin.qq.com/debug/wxadoc/dev/component/button.html) | _string_ | - | - | +| open-type | 微信开放能力,具体支持可参考 [微信官方文档](https://developers.weixin.qq.com/miniprogram/dev/component/button.html) | _string_ | - | - | | app-parameter | 打开 APP 时,向 APP 传递的参数 | _string_ | - | - | | lang | 指定返回用户信息的语言,zh_CN 简体中文,
zh_TW 繁体中文,en 英文 | _string_ | `en` | - | | session-from | 会话来源 | _string_ | - | - | @@ -128,7 +128,7 @@ Page({ | size | 按钮尺寸,可选值为 `normal` `large` `small` `mini` | _string_ | `normal` | - | | disabled | 是否禁用按钮 | _boolean_ | `false` | - | | loading | 是否显示为加载状态 | _boolean_ | `false` | - | -| open-type | 微信开放能力,具体支持可参考 [微信官方文档](https://mp.weixin.qq.com/debug/wxadoc/dev/component/button.html) | _string_ | - | - | +| open-type | 微信开放能力,具体支持可参考 [微信官方文档](https://developers.weixin.qq.com/miniprogram/dev/component/button.html) | _string_ | - | - | | app-parameter | 打开 APP 时,向 APP 传递的参数 | _string_ | - | - | | lang | 指定返回用户信息的语言,zh_CN 简体中文,
zh_TW 繁体中文,en 英文 | _string_ | `en` | - | | session-from | 会话来源 | _string_ | - | - |