1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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>
|
|