<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>
|