| | |
| | | // 在这里编写处理选中事件的逻辑 |
| | | handleSelectChange(selectedOption) { |
| | | this.form.lineCode = null; |
| | | this.queryParams.workshopCode = selectedOption; |
| | | listLineInfo(this.queryParams).then(response => { |
| | | let params = { |
| | | workshopCode: selectedOption |
| | | }; |
| | | listLineInfo(params).then(response => { |
| | | this.lineOptions = response.rows; |
| | | }); |
| | | }, |
| | |
| | | getList() { |
| | | this.loading = true; |
| | | listProductionOrde(this.queryParams).then(response => { |
| | | console.log(response) |
| | | this.productionOrdeList = response.rows; |
| | | this.total = response.total; |
| | | this.loading = false; |