| | |
| | | </el-col> |
| | | <el-col :span="3"> |
| | | <el-card shadow="always"> |
| | | <span class="centerText" style="margin-top: 26px">{{productCode}}</span> |
| | | <span class="centerText" style="margin-top: 26px">{{locationCode}}</span> |
| | | </el-card> |
| | | </el-col> |
| | | <el-col :span="15"> |
| | |
| | | name: "index", |
| | | data() { |
| | | return { |
| | | locationCode: "未配置", |
| | | locationName: "未配置工位", |
| | | queryParams: { |
| | | pageNum: 1, |
| | |
| | | }, |
| | | mounted() { |
| | | this.getStationConf() |
| | | this.changeProducts(this.productCode) |
| | | // this.changeProducts(this.productCode) |
| | | this.changeProducts("2V91") |
| | | this.getNowTime() |
| | | // this.autoShow() |
| | | }, |
| | |
| | | } |
| | | listStationConf(queryParams).then(response => { |
| | | this.locationName = response.rows[0].processesName |
| | | this.locationCode = response.rows[0].processesCode |
| | | }); |
| | | }); |
| | | }, |