diff --git a/README.md b/README.md
index 214b0e2..6f65602 100644
--- a/README.md
+++ b/README.md
@@ -19,3 +19,6 @@ npm run build --report
```
For a detailed explanation on how things work, check out the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader).
+
+## 注意事项
++ 接口线上地址: https://apifox.com/apidoc/shared-0bf1a292-c892-44d6-8e28-970c207af9e2
diff --git a/src/config/getData2.js b/src/config/getData2.js
index 8dabd47..ecfd7ad 100644
--- a/src/config/getData2.js
+++ b/src/config/getData2.js
@@ -169,3 +169,23 @@ export const createTask = (scode, ecode) => post('api/pda/createTask', {
start_point_code: scode,
end_point_code: ecode
})
+
+/**
+ * 点位管理
+ */
+export const getAllPointList = () => post('api/pda/getAllPointList', {})
+
+/**
+ * 呼叫搬运
+ */
+// 获取区域下拉框
+export const getAllRegionList = () => post('api/pda/getAllRegionList', {})
+// 根据区域获取点位列表
+export const getPointListByRegion = (code) => post('api/pda/getPointListByRegion', {
+ region_code: code
+})
+// 呼叫搬运
+export const createP2PTask = (scode, ecode) => post('api/pda/createP2PTask', {
+ start_point_code: scode,
+ end_point_code: ecode
+})
diff --git a/src/pages/login/Home.vue b/src/pages/login/Home.vue
index c42d245..40e54d1 100644
--- a/src/pages/login/Home.vue
+++ b/src/pages/login/Home.vue
@@ -30,6 +30,8 @@
人工拆垛
+ 点位管理
+ 呼叫搬运
diff --git a/src/pages/proj/CallCarry.vue b/src/pages/proj/CallCarry.vue
new file mode 100644
index 0000000..01ebfbc
--- /dev/null
+++ b/src/pages/proj/CallCarry.vue
@@ -0,0 +1,344 @@
+
+
+
+
+
diff --git a/src/pages/proj/PointManage.vue b/src/pages/proj/PointManage.vue
new file mode 100644
index 0000000..62c6c45
--- /dev/null
+++ b/src/pages/proj/PointManage.vue
@@ -0,0 +1,74 @@
+
+
+
+
+
+
+
+ | 载具号 |
+
+
+ | {{e.vehicle_code}} |
+
+
+
+
+
+
+ | 载具类型 |
+ 区域 |
+ 点位 |
+ 物料名称 |
+ 点位状态 |
+
+
+ | {{e.vehicle_type}} |
+ {{e.region_name}} |
+ {{e.point_name}} |
+ {{e.material_name}} |
+ {{e.point_status}} |
+
+
+
+
+
+
+
+
+
diff --git a/src/router/index.js b/src/router/index.js
index 8d07409..2b1f3ec 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -19,6 +19,8 @@ const VehicleUnbind = r => require.ensure([], () => r(require('../pages/proj/Veh
const CallDefective = r => require.ensure([], () => r(require('../pages/proj/CallDefective')), 'CallDefective')
const CreateChargingTask = r => require.ensure([], () => r(require('../pages/proj/CreateChargingTask')), 'CreateChargingTask')
const ManualUnstack = r => require.ensure([], () => r(require('../pages/proj/ManualUnstack')), 'ManualUnstack')
+const PointManage = r => require.ensure([], () => r(require('../pages/proj/PointManage')), 'PointManage')
+const CallCarry = r => require.ensure([], () => r(require('../pages/proj/CallCarry')), 'CallCarry')
Vue.use(Router)
@@ -102,6 +104,14 @@ export default new Router({
{
path: '/ManualUnstack', // 人工拆垛
component: ManualUnstack
+ },
+ {
+ path: '/PointManage', // 点位管理
+ component: PointManage
+ },
+ {
+ path: '/CallCarry', // 呼叫搬运
+ component: CallCarry
}
],
scrollBehavior (to, from, savedPosition) {