| | |
| | | |
| | | <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"> |
| | |
| | | </el-table-column> |
| | | <el-table-column label="更新用户" align="center" prop="updateBy" /> |
| | | <el-table-column label="备注" width="180px" show-overflow-tooltip align="center" prop="remarks" /> |
| | | <!-- <el-table-column label="操作" align="center" class-name="small-padding fixed-width">--> |
| | | <!-- <template slot-scope="scope">--> |
| | | <!-- <el-button--> |
| | | <!-- size="mini"--> |
| | | <!-- type="text"--> |
| | | <!-- icon="el-icon-edit"--> |
| | | <!-- @click="handleUpdate(scope.row)"--> |
| | | <!-- v-hasPermi="['main:info:edit']"--> |
| | | <!-- >修改</el-button>--> |
| | | <!-- <el-button--> |
| | | <!-- size="mini"--> |
| | | <!-- type="text"--> |
| | | <!-- icon="el-icon-delete"--> |
| | | <!-- @click="handleDelete(scope.row)"--> |
| | | <!-- v-hasPermi="['main:info:remove']"--> |
| | | <!-- >删除</el-button>--> |
| | | <!-- </template>--> |
| | | <!-- </el-table-column>--> |
| | | </el-table> |
| | | |
| | | <pagination |
| | |
| | | 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> |