diff --git a/doc/new_uts_plugin.jpg b/doc/new_uts_plugin.jpg
index c19248f612901da2e276fb19635687ad4c89ef4b..22a48d8ba79dc0f818f2e823dcce923b45717073 100644
Binary files a/doc/new_uts_plugin.jpg and b/doc/new_uts_plugin.jpg differ
diff --git a/doc/new_uts_plugin3.jpg b/doc/new_uts_plugin3.jpg
index 922c3650534279f7c75a2329aea0c8241c2a71a8..d62becfbf7c4967a2a6a9ae3e7844e6191726f65 100644
Binary files a/doc/new_uts_plugin3.jpg and b/doc/new_uts_plugin3.jpg differ
diff --git a/doc/uni_modules.jpg b/doc/uni_modules.jpg
index 0bbcbbb2e788deb98ff80b02d1a4518247b2dc07..7b03a66dc6168e9991f5e74d4bc9626398e457ed 100644
Binary files a/doc/uni_modules.jpg and b/doc/uni_modules.jpg differ
diff --git a/doc/uts_osapi_demo.jpg b/doc/uts_osapi_demo.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..f1fedf61efbe3f1bcd16be4a4900244791fec83d
Binary files /dev/null and b/doc/uts_osapi_demo.jpg differ
diff --git "a/doc/uts\346\217\222\344\273\266\345\274\200\345\217\221\346\226\207\346\241\243.md" "b/doc/uts\346\217\222\344\273\266\345\274\200\345\217\221\346\226\207\346\241\243.md"
deleted file mode 100644
index 4eceb832e8969476703f43444561f0757be5ece4..0000000000000000000000000000000000000000
--- "a/doc/uts\346\217\222\344\273\266\345\274\200\345\217\221\346\226\207\346\241\243.md"
+++ /dev/null
@@ -1,218 +0,0 @@
-## 1 前置条件
-
-+ 1 HX 3.5.6 之后版本
-
-## 2 uts原生插件介绍
-
-### 2.1 什么是uts原生插件
-
-UTS= Uni Type Script.
-
-UTS 插件是在uni原生插件的基础上,改用UTS作为插件开发语言。
-
-进一步降低插件开发门槛,平台差异,执行效率的新型插件形式
-
-
-
-
-### 2.2 uts原生插件与uni原生插件的区别
-
-|-|传统原生插件|uts原生插件|
-|-|-------|--------|
-|开发语言|java/oc|uts|
-|开发环境|Android studio/XCode|HBuilderX|
-|打包方式|外挂aar 等产出物|编译时生成原生代码|
-
-优点:
-
-1 减少原生环境搭建环节,降低插件开发难度
-
-2 进一步降低平台差异,一种语言开发两个平台插件
-
-2 编译时生成原生代码,提高代码执行效率
-
-## 3 UTS语法介绍
-
-
-
-## 4 开发UTS插件
-
-### 4.1 uni_modules
-
-确保项目根目录存在uni_modules文件夹
-
-
-
-`uni_modules`类似 NPM中的`node_modules`.是用来存放插件依赖的文件夹。
-
-如果项目中已存在此目录,则跳过。如果不存在,在需要手动创建一个。
-
-
-
-### 4.2 新建UTS插件
-
-选中uni_modules文件夹 --> 右键新建插件
-
-
-
-选择UTS原生插件
-
-
-
-插件目录结构
-
-
-
-
-### 4.3 清单文件package.json
-
-package.json为插件的清单文件,里面说明了整个UTS插件的配置信息,下面是一个完整的示例
-```
-{
- "id": "uts-helloworld",
- "displayName": "uts-helloworld",
- "version": "1.0.0",
- "description": "uts-helloworld",
- "keywords": [
- "uts-helloworld"
-],
- "repository": "",
- "engines": {
- "HBuilderX": "^3.1.0"
- },
- "dcloudext": {
- "type": "native-uts",
- "sale": {
- "regular": {
- "price": "0.00"
- },
- "sourcecode": {
- "price": "0.00"
- }
- },
- "contact": {
- "qq": ""
- },
- "declaration": {
- "ads": "",
- "data": "",
- "permissions": ""
- },
- "npmurl": ""
- },
- "uni_modules": {
- "dependencies": [],
- "encrypt": [],
- "platforms": {
- "cloud": {
- "tcb": "u",
- "aliyun": "u"
- },
- "client": {
- "Vue": {
- "vue2": "u",
- "vue3": "u"
- },
- "App": {
- "app-vue": "u",
- "app-nvue": "u"
- },
- "H5-mobile": {
- "Safari": "u",
- "Android Browser": "u",
- "微信浏览器(Android)": "u",
- "QQ浏览器(Android)": "u"
- },
- "H5-pc": {
- "Chrome": "u",
- "IE": "u",
- "Edge": "u",
- "Firefox": "u",
- "Safari": "u"
- },
- "小程序": {
- "微信": "u",
- "阿里": "u",
- "百度": "u",
- "字节跳动": "u",
- "QQ": "u",
- "钉钉": "u",
- "快手": "u",
- "飞书": "u",
- "京东": "u"
- },
- "快应用": {
- "华为": "u",
- "联盟": "u"
- }
- }
- },
- "type": "uts",
- "uts": {
- "android": {
- "libs": [],
- "dependencies": []
- },
- "ios": {
- "libs": []
- }
- }
- }
-}
-```
-
-## 5 使用插件
-
-### 5.1 引用UTS插件
-
-uts插件import有两种方式
-import {a,b} from 'xxx'
-
-```
-import {
- callWithoutParam,
- callWithStringParam,
- callWithJSONParam
-} from "../../../uni_modules/uts-helloworld";
-
-```
-
-import X from 'XXX'
-
-
-### 5.2 用法
-
-延迟操作
-```
-//执行延迟操作
-var timer = setTimeout(function, 1000);
-//取消延迟操作
-clearTimeout(timer);
-```
-定时操作
-```
-//执行定时操作
-var timer = setInterval(function, 1000);
-//取消定时操作
-clearInterval(timer);
-```
-
-## 6 测试
-
-### 5.1 真机运行
-
-直接运行
-
-### 5.2 云端打包
-
-
-
-### 5.3 示例项目
-
-### 一个简单的示例
-### 插件目录结构
-### 插件使用方法
-
-完整的示例项目地址:
-
-
diff --git a/pages/SystemAPI/battery/battery.vue b/pages/SystemAPI/battery/battery.vue
deleted file mode 100644
index a89e0f9eb6e009a603418cb6a675959e4032e6fe..0000000000000000000000000000000000000000
--- a/pages/SystemAPI/battery/battery.vue
+++ /dev/null
@@ -1,8 +0,0 @@
-
- 当前电量:{{ capacity }}
-
-
\ No newline at end of file
diff --git a/pages/tabBar/Primer/Primer.vue b/pages/tabBar/Primer/Primer.vue
index b9f9eb92fa5fed2779c70b7f905790a71738f600..6e1fbd42996a668ced46fcefc870fe9098fe2536 100644
--- a/pages/tabBar/Primer/Primer.vue
+++ b/pages/tabBar/Primer/Primer.vue
@@ -10,11 +10,12 @@