diff --git a/src/api/mes/cal/calplan.js b/src/api/mes/cal/calplan.js
new file mode 100644
index 0000000..4fed532
--- /dev/null
+++ b/src/api/mes/cal/calplan.js
@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询排班计划列表
+export function listCalplan(query) {
+ return request({
+ url: '/mes/cal/calplan/list',
+ method: 'get',
+ params: query
+ })
+}
+
+// 查询排班计划详细
+export function getCalplan(planId) {
+ return request({
+ url: '/mes/cal/calplan/' + planId,
+ method: 'get'
+ })
+}
+
+// 新增排班计划
+export function addCalplan(data) {
+ return request({
+ url: '/mes/cal/calplan',
+ method: 'post',
+ data: data
+ })
+}
+
+// 修改排班计划
+export function updateCalplan(data) {
+ return request({
+ url: '/mes/cal/calplan',
+ method: 'put',
+ data: data
+ })
+}
+
+// 删除排班计划
+export function delCalplan(planId) {
+ return request({
+ url: '/mes/cal/calplan/' + planId,
+ method: 'delete'
+ })
+}
diff --git a/src/views/mes/cal/plan/index.vue b/src/views/mes/cal/plan/index.vue
new file mode 100644
index 0000000..1ba1866
--- /dev/null
+++ b/src/views/mes/cal/plan/index.vue
@@ -0,0 +1,436 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+ 新增
+
+
+ 修改
+
+
+ 删除
+
+
+ 导出
+
+
+
+
+
+
+
+
+ {{scope.row.planCode}}
+
+
+
+
+
+ {{ parseTime(scope.row.startDate, '{y}-{m}-{d}') }}
+
+
+
+
+ {{ parseTime(scope.row.endDate, '{y}-{m}-{d}') }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 修改
+ 删除
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{dict.label}}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+