| | |
| | | ></tRemoteSelect> |
| | | </el-col> |
| | | <el-col :span="8"> |
| | | <el-select v-model="selBatchNo" class="lmes-select" placeholder="请选择批次号"> |
| | | <el-option :label="item" :key="index" v-for="(item,index) in selBatchNoList"></el-option> |
| | | <el-select @change="changePart" v-model="selBatchNo" class="lmes-select" placeholder="请选择批次号"> |
| | | <el-option :label="item" :value="item" :key="index" v-for="(item,index) in selBatchNoList"></el-option> |
| | | </el-select> |
| | | </el-col> |
| | | </el-row> |
| | |
| | | } |
| | | }, |
| | | changePart() { |
| | | if (this.systemNo != null && this.systemNo !== '') { |
| | | const query = { systemNo: this.systemNo, traceType: this.traceType } |
| | | if (this.selBatchNo != null && this.selBatchNo !== '') { |
| | | const query = { systemNo: this.selBatchNo, traceType: this.traceType } |
| | | queryDiagram(query) |
| | | .then((response) => { |
| | | var data = response.data |