diff --git a/src/components/Home.vue b/src/components/Home.vue
index 08edfa5..b43cd18 100644
--- a/src/components/Home.vue
+++ b/src/components/Home.vue
@@ -13,6 +13,8 @@
用户协议
|
隐私协议
+ |
+ 加价收费标准
diff --git a/src/router/index.js b/src/router/index.js
index b17f959..3896826 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -12,6 +12,7 @@ import PdfViewer from '../components/PdfViewer.vue'
import MarkdownViewer from '../components/MarkdownViewer.vue'
import PlatformOrderPage from '../views/PlatformOrderPage.vue'
import InviteFriendPage from '../views/InviteFriend/InviteFriendPage.vue'
+import PricingStandardsPage from '../views/PricingStandardsPage.vue'
const routes = [
{
@@ -123,6 +124,15 @@ const routes = [
title: '邀请好友送积分',
requiresAuth: false
}
+ },
+ {
+ path: '/pricing-standards',
+ name: 'PricingStandards',
+ component: PricingStandardsPage,
+ meta: {
+ title: '加价收费标准',
+ requiresAuth: false
+ }
}
]
diff --git a/src/views/PricingStandardsPage.vue b/src/views/PricingStandardsPage.vue
new file mode 100644
index 0000000..5b16b1f
--- /dev/null
+++ b/src/views/PricingStandardsPage.vue
@@ -0,0 +1,153 @@
+
+
+
+
体积收费标准
+
按物品最长单边尺寸计算:
+
+
+
+
35cm<尺寸≤70cm
+
中件,加 2 元
+
+
+
70cm<尺寸≤100cm
+
大件,加 4 元
+
+
+
+
+
+
重量收费标准
+
+
+
+
5 公斤<重量≤20 公斤
+
每公斤加收 2 元
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file