zhaowei
8 天以前 008245cbe95c63a80f9a255378a5ffbe25d15085
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
50
51
52
53
<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 { frozenBatch } from '@/api/api'
  import { JeecgListMixin } from '@/mixins/JeecgListMixin'
  import JInput from '@/components/jeecg/JInput'
  import BaseTree from '../common/BaseTree'
  import ShiftSystem from './modules/shift/ShiftSystem'
  import ShiftInfo from './modules/shift/ShiftInfo'
  import JSuperQuery from '@/components/jeecg/JSuperQuery'
  import JThirdAppButton from '@/components/jeecgbiz/thirdApp/JThirdAppButton'
 
  export default {
    name: 'ShiftManager',
    components: {
      JThirdAppButton, JInput, BaseTree, JSuperQuery, ShiftSystem, ShiftInfo
    },
    data() {
      return {
        shiftSystemRow:{},
        description: '班制班次',
        url: {
          equipmentStatistics: '/mdc/equipment/equipmentStatistics'
        }
      }
    },
    created() {
    },
    methods: {
      selectionShiftRow(val) {
        this.shiftSystemRow = val
      }
    }
 
  }
</script>
<style scoped>
 
</style>