| | |
| | | |
| | | <el-table v-loading="loading" :data="infoList" @selection-change="handleSelectionChange"> |
| | | <el-table-column type="selection" width="55" align="center" /> |
| | | <el-table-column label="工单编号" align="center" prop="workOrderNo"> |
| | | <el-table-column label="工单编号" align="center" prop="workOrderNo" width="120"> |
| | | <template slot-scope="scope"> |
| | | <a style="color: #7099F9" @click="orderDetail(scope.row.workOrderNo)" >{{scope.row.workOrderNo}} |
| | | </a> |
| | | <!-- <div @click="orderDetail(scope.row.workOrderNo)">{{scope.row.workOrderNo}}</div>--> |
| | | </template> |
| | | </el-table-column> |
| | | <el-table-column label="订单编号" align="center" prop="salesOrderCode" /> |
| | | <el-table-column label="产品编号" align="center" prop="productCode" /> |
| | | <el-table-column label="订单编号" align="center" prop="salesOrderCode" width="120"/> |
| | | <el-table-column label="产品编号" align="center" prop="productCode" width="180"/> |
| | | <el-table-column label="产线编号" align="center" prop="lineCode" /> |
| | | <el-table-column label="计划数量" align="center" prop="planQty" /> |
| | | <el-table-column label="计划开始时间" align="center" prop="planStartTime" width="120"> |
| | |
| | | this.loading = true; |
| | | listInfo(this.queryParams).then(response => { |
| | | this.infoList = response.rows; |
| | | this.detailTotal = response.total; |
| | | this.total = response.total; |
| | | this.loading = false; |
| | | }); |
| | | }, |
| | |
| | | } |
| | | }; |
| | | </script> |
| | | <style> |
| | | .table-wrapper { |
| | | width: 100%; |
| | | } |
| | | </style> |