| | |
| | | <script> |
| | | import combinedTitle from '@/components/combined-title/combined-title.vue'; |
| | | export default { |
| | | props: { |
| | | indexHistoryCoalData: { |
| | | type: Array, |
| | | default: [] |
| | | }, |
| | | indexHuoDaiOrderPlanData: { |
| | | type: Array, |
| | | default: [] |
| | | } |
| | | }, |
| | | watch: { |
| | | indexHistoryCoalData: { |
| | | handler(v) { |
| | | this.historyCoalData = v; |
| | | }, |
| | | deep: true, |
| | | immediate: true |
| | | }, |
| | | indexHuoDaiOrderPlanData: { |
| | | handler(v) { |
| | | this.orderPlanData = v; |
| | | }, |
| | | deep: true, |
| | | immediate: true |
| | | } |
| | | }, |
| | | components: { |
| | | combinedTitle |
| | | }, |
| | |
| | | } |
| | | }, |
| | | methods: { |
| | | // 获取历史提煤单 |
| | | getJhOrderPlanDataPage() { |
| | | this.loading = true; |
| | | this.$reqGet('getJhOrderPlanDataPage', { current: this.pageCurrent, size: this.pageSize }).then(res => { |