From accebdce93486d3b4f26e55ffdea047549cce20c Mon Sep 17 00:00:00 2001
From: cuijian <cuijian@xalxzn.com>
Date: 星期一, 28 七月 2025 21:12:38 +0800
Subject: [PATCH] Merge branch 'master' of http://125.76.225.53:18448/r/xhj/vue_mdc_xhj

---
 src/views/mdc/base/ShiftManager.vue |   49 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 49 insertions(+), 0 deletions(-)

diff --git a/src/views/mdc/base/ShiftManager.vue b/src/views/mdc/base/ShiftManager.vue
new file mode 100644
index 0000000..6565735
--- /dev/null
+++ b/src/views/mdc/base/ShiftManager.vue
@@ -0,0 +1,49 @@
+<template>
+  <a-card :bordered="false">
+    <a-row type="flex" :gutter="16">
+      <a-col :md="7" :sm="24">
+        <shift-system @selectionShiftRow="selectionShiftRow"></shift-system>
+      </a-col>
+      <a-col :md="24-7" :sm="24">
+        <shift-info :shiftSystemRow="shiftSystemRow"></shift-info>
+      </a-col>
+    </a-row>
+
+
+  </a-card>
+</template>
+
+<script>
+  import { putAction, getAction } from '@/api/manage'
+  import { JeecgListMixin } from '@/mixins/JeecgListMixin'
+  import BaseTree from '../common/BaseTree'
+  import ShiftSystem from './modules/shift/ShiftSystem'
+  import ShiftInfo from './modules/shift/ShiftInfo'
+
+  export default {
+    name: 'ShiftManager',
+    components: {
+      BaseTree, ShiftSystem, ShiftInfo
+    },
+    data() {
+      return {
+        shiftSystemRow: {},
+        description: '鐝埗鐝',
+        url: {
+          equipmentStatistics: '/mdc/equipment/equipmentStatistics'
+        }
+      }
+    },
+    created() {
+    },
+    methods: {
+      selectionShiftRow(val) {
+        this.shiftSystemRow = val
+      }
+    }
+
+  }
+</script>
+<style scoped>
+
+</style>
\ No newline at end of file

--
Gitblit v1.9.3