| | |
| | | |
| | | <el-table v-loading="loading" border :data="passingStationCollectionList" @selection-change="handleSelectionChange" v-if="passingStationCollectionList.length > 0"> |
| | | <el-table-column type="selection" width="55" align="center" /> |
| | | <el-table-column label="工单编号" align="center" prop="workOrderNo"> |
| | | <el-table-column label="工单编号" align="center" width="150" prop="workOrderNo"> |
| | | </el-table-column> |
| | | <el-table-column label="发动机编码" align="center" prop="sfcCode" width="150"> |
| | | </el-table-column> |
| | | <el-table-column label="产品编号" align="center" prop="productCode"> |
| | | </el-table-column> |
| | | <el-table-column label="产线编号" align="center" prop="productionLine"> |
| | | </el-table-column> |
| | | <!-- <el-table-column label="产线编号" align="center" prop="productionLine">--> |
| | | <!-- </el-table-column>--> |
| | | <el-table-column label="工位编号" align="center" prop="locationCode"> |
| | | </el-table-column> |
| | | <el-table-column label="入站时间" align="center" prop="inboundTime" width="160"> |
| | |
| | | |
| | | <el-table-column label="是否合格" align="center" prop="outRsSign"> |
| | | </el-table-column> |
| | | <el-table-column label="NG原因" align="center" prop="outMsgSign"> |
| | | </el-table-column> |
| | | <!-- <el-table-column label="NG原因" align="center" prop="outMsgSign">--> |
| | | <!-- </el-table-column>--> |
| | | <el-table-column label="采集时间" align="center" prop="collectionTime" width="180"> |
| | | <template slot-scope="scope"> |
| | | <span>{{ parseTime(scope.row.collectionTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span> |
| | |
| | | <el-form-item label="产品编号" prop="productCode"> |
| | | <el-input v-model="form.productCode" type="textarea" placeholder="请输入内容" /> |
| | | </el-form-item> |
| | | <el-form-item label="产线编号" prop="productionLine"> |
| | | <el-input v-model="form.productionLine" type="textarea" placeholder="请输入内容" /> |
| | | </el-form-item> |
| | | <!-- <el-form-item label="产线编号" prop="productionLine">--> |
| | | <!-- <el-input v-model="form.productionLine" type="textarea" placeholder="请输入内容" />--> |
| | | <!-- </el-form-item>--> |
| | | <el-form-item label="工位编号" prop="locationCode"> |
| | | <el-input v-model="form.locationCode" type="textarea" placeholder="请输入内容" /> |
| | | </el-form-item> |
| | | <el-form-item label="设备编号" prop="equipmentNo"> |
| | | <el-input v-model="form.equipmentNo" type="textarea" placeholder="请输入内容" /> |
| | | </el-form-item> |
| | | <!-- <el-form-item label="设备编号" prop="equipmentNo">--> |
| | | <!-- <el-input v-model="form.equipmentNo" type="textarea" placeholder="请输入内容" />--> |
| | | <!-- </el-form-item>--> |
| | | <el-form-item label="入站时间" prop="inboundTime"> |
| | | <el-date-picker clearable |
| | | v-model="form.inboundTime" |
| | |
| | | <el-form-item label="是否合格" prop="outRsSign"> |
| | | <el-input v-model="form.outRsSign" placeholder="请输入出站是否合格" /> |
| | | </el-form-item> |
| | | <el-form-item label="NG原因" prop="outMsgSign"> |
| | | <el-input v-model="form.outMsgSign" type="textarea" placeholder="请输入内容" /> |
| | | </el-form-item> |
| | | <!-- <el-form-item label="NG原因" prop="outMsgSign">--> |
| | | <!-- <el-input v-model="form.outMsgSign" type="textarea" placeholder="请输入内容" />--> |
| | | <!-- </el-form-item>--> |
| | | <el-form-item label="采集时间" prop="collectionTime"> |
| | | <el-date-picker clearable |
| | | v-model="form.collectionTime" |
| | |
| | | |
| | | <script> |
| | | import { listPassingStationCollection, getPassingStationCollection, delPassingStationCollection, addPassingStationCollection, updatePassingStationCollection } from "@/api/main/da/passingStationCollection/passingStationCollection"; |
| | | import { |
| | | selectDaPassingStationCollectionForSearch |
| | | } from "../../../../api/main/da/passingStationCollection/passingStationCollection"; |
| | | |
| | | export default { |
| | | name: "PassingStationCollection", |
| | |
| | | /** 查询产品过站采集列表 */ |
| | | getList() { |
| | | this.loading = true; |
| | | listPassingStationCollection(this.queryParams).then(response => { |
| | | selectDaPassingStationCollectionForSearch(this.queryParams).then(response => { |
| | | this.passingStationCollectionList = response.rows; |
| | | this.total = response.total; |
| | | this.loading = false; |