| | |
| | | @scrollLeft="scrollLeftA" |
| | | > |
| | | <template slot="block" slot-scope="{data,item}"> |
| | | <Test |
| | | <Scheduling |
| | | :data="data" |
| | | :update-time-lines="updateTimeLines" |
| | | :cell-height="cellHeight" |
| | |
| | | </template> |
| | | |
| | | <script> |
| | | import Test from '@/components/Test' |
| | | import Scheduling from '@/components/Scheduling' |
| | | import dayjs from 'dayjs' |
| | | |
| | | const scaleList = `30,60,240,360`.split(',').map(n => parseInt(n)) |
| | | const timeList = `0,30,60,120,240,480`.split(',').map(n => parseInt(n)) |
| | | |
| | | export default { |
| | | components: { Test }, |
| | | components: { Scheduling }, |
| | | data() { |
| | | return { |
| | | show: false, |