对比新文件 |
| | |
| | | <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> |