|
|
@ -201,10 +201,12 @@ export default {
|
|
|
|
watch: {
|
|
|
|
watch: {
|
|
|
|
'queryParams.productLineCode': function(newVal, oldVal) {
|
|
|
|
'queryParams.productLineCode': function(newVal, oldVal) {
|
|
|
|
// 执行方法,可以在这里调用你的方法
|
|
|
|
// 执行方法,可以在这里调用你的方法
|
|
|
|
|
|
|
|
this.selectedType = null;
|
|
|
|
this.getStationList()
|
|
|
|
this.getStationList()
|
|
|
|
},
|
|
|
|
},
|
|
|
|
selectedType(newType) {
|
|
|
|
selectedType(newType) {
|
|
|
|
// 根据选择的工位类型筛选工位列表
|
|
|
|
// 根据选择的工位类型筛选工位列表
|
|
|
|
|
|
|
|
this.queryParams.stationCode = null;
|
|
|
|
this.findStationList = this.stationList.filter(item => item.stationType == newType);
|
|
|
|
this.findStationList = this.stationList.filter(item => item.stationType == newType);
|
|
|
|
// 重置选择的工位
|
|
|
|
// 重置选择的工位
|
|
|
|
// this.selectedStation = '';
|
|
|
|
// this.selectedStation = '';
|
|
|
|