diff --git a/src/assets/images/logo_bee@3x.png b/src/assets/images/logo_bee@3x.png
new file mode 100644
index 0000000..d77e852
Binary files /dev/null and b/src/assets/images/logo_bee@3x.png differ
diff --git a/src/assets/images/logo_text@3x.png b/src/assets/images/logo_text@3x.png
new file mode 100644
index 0000000..ca7f4df
Binary files /dev/null and b/src/assets/images/logo_text@3x.png differ
diff --git a/src/components/HowToUse.vue b/src/components/HowToUse.vue
new file mode 100644
index 0000000..f435736
--- /dev/null
+++ b/src/components/HowToUse.vue
@@ -0,0 +1,198 @@
+
+
+
+
+
第一步
+
+
选择开通小区
+
→
+
小区未开通可申请
+
+
+
+
+
+
+
第二步
+
+
选择送达地址
+
→
+
填写收货地址使用
+
+
+
+
+
+
+
+
+
+
+
第四步
+
+
成功下单
+
→
+
订单详情查看配送状态
+
+
+
+
+
+
+
第五步
+
+
快递到家
+
→
+
领取包裹,先享后付费
+
+
+
+
+
+
![蜂快到家]()
+
![蜂快到家]()
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/router/index.js b/src/router/index.js
index 4ff04db..cc45c49 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -3,6 +3,7 @@ import Home from '../components/Home.vue'
import PrivacyAgreement from '../components/PrivacyAgreement.vue'
import UserAgreement from '../components/UserAgreement.vue'
import Dashboard from '../components/Dashboard.vue'
+import HowToUse from '../components/HowToUse.vue'
const routes = [
{
@@ -27,6 +28,11 @@ const routes = [
meta: {
title: '数据大屏'
}
+ },
+ {
+ path: '/how-to-use',
+ name: 'HowToUse',
+ component: HowToUse
}
]