diff --git a/sites/hualv.com/components/mip-hualv-fp/README.md b/sites/hualv.com/components/mip-hualv-fp/README.md
index 7461c2bb4..b6a93ec70 100644
--- a/sites/hualv.com/components/mip-hualv-fp/README.md
+++ b/sites/hualv.com/components/mip-hualv-fp/README.md
@@ -8,8 +8,10 @@
## 说明
-1、通过用户换机参数计算指纹(fingerprint)id,
+1、通过用户换机参数计算指纹(fingerprint)id
2、用户访问日志传输至sls服务进行存储
+3、无埋点统计(2020-06-05迭代 新增功能)
+4、自定义事件跟踪(2020-06-05迭代 新增功能)
## 示例
@@ -17,6 +19,7 @@
```
+ // FingerPrint数据接受容器,参数配置容器 必需!!!
- // 以下为示例用显示demo,使用时可忽略
- duration:
- fingerprint:
- sessionId:
- type:
- request:
- referrer:
- agent:
+ // demo开始 以下demo部分 仅为实例用,使用时可灵活改变使用位置,方式等(不局限于该组件内部使用)
+ // 页面交互按钮 写入事件队列 demo
+
+ // 使用脚本 写入事件队列 demo (使用mip-script组件需引用该组件引用方法见末尾)
+
+ setTimeout(() => {
+ MIP.setData({FingerPrint:{Hmga:['_trackEvent','test-event',{'questionId':111123}]}})
+ },2000)
+
+ // 指纹参数调用 demo
+ duration:
+ fingerprint:
+ sessionId:
+ type:
+ request:
+ referrer:
+ agent:
//demo结束
```
## 属性
-无
\ No newline at end of file
+无
+
+## 组件依赖
+
+若需使用mip-script组件需添加以下引用
+
diff --git a/sites/hualv.com/components/mip-hualv-fp/example/index.html b/sites/hualv.com/components/mip-hualv-fp/example/index.html
index 4292d30c6..111b23ff7 100644
--- a/sites/hualv.com/components/mip-hualv-fp/example/index.html
+++ b/sites/hualv.com/components/mip-hualv-fp/example/index.html
@@ -1,35 +1,47 @@
-
-
-
- MIP page
-
-
-
-
-
-
-
- duration:
- fingerprint:
- sessionId:
- type:
- request:
- referrer:
- agent:
-
-
-
-
-
-
-
-
-
+
+
+ setTimeout(() => {
+ MIP.setData({FingerPrint:{Hmga:['_trackEvent','test-event',{'questionId':111123}]}})
+ },2000)
+
+
+
+
+
+
+