diff --git a/docs/tutorial/harmony/dev.md b/docs/tutorial/harmony/dev.md
index bdaa6a4e1b39d7037801fa45df45bf0bb3587b5e..4053f52bc3c0e26c8528b6ff7d3f49ea4d22d4ce 100644
--- a/docs/tutorial/harmony/dev.md
+++ b/docs/tutorial/harmony/dev.md
@@ -124,7 +124,7 @@
这里以打开华为应用市场详情页为例
-定义API名称为:uni.openAppProduct
+定义API名称为:openAppProduct
1. 右键 uni_modules 目录(没有则新建目录)点击 `新建uni_modules插件`
@@ -132,6 +132,9 @@
2. 插件名称为 `uni-openAppProduct`(注意,开发者自己创建时,不可以使用 `uni-` 开头,应以自己名字或昵称的缩写命令,如:`wq-openAppProduct`
3. 修改插件根目录的 `package.json` 中的 `uni_modules` 节点,新增如下配置,arkts 为 true 代表支持鸿蒙
+
+**注意:下方的属性名中包含的 `uni` 请勿更改成自己的名字或昵称缩写,只能用 `uni`**
+
```js
{
...其他属性
@@ -293,10 +296,12 @@ export function openAppProduct(options : OpenAppProductOptions) {
6. 编写演示页面,项目根目录下 `/pages/index/index.vue` 内容如下
+**方式一(挂载到uni全局对象)**
+
```vue
-
+
@@ -311,7 +316,7 @@ export function openAppProduct(options : OpenAppProductOptions) {
},
methods: {
- openAppProduct() {
+ openAppProductBtn() {
uni.openAppProduct({
success: (res) => {
console.log('success: ', JSON.stringify(res));
@@ -335,6 +340,63 @@ export function openAppProduct(options : OpenAppProductOptions) {
align-items: center;
justify-content: center;
}
+
+ .button{
+ width: 100%;
+ margin: 10px;
+ }
+
+```
+
+**方式二(使用import引入)**
+
+```vue
+
+
+
+
+
+
+
+
+
```