|
|
@ -160,7 +160,13 @@
|
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
|
|
<el-table-column label="id" align="center" prop="recordId" v-if="false"/>
|
|
|
|
<el-table-column label="id" align="center" prop="recordId" v-if="false"/>
|
|
|
|
<el-table-column label="checkType" align="center" prop="checkType" v-if="false"/>
|
|
|
|
<el-table-column label="checkType" align="center" prop="checkType" v-if="false"/>
|
|
|
|
<el-table-column label="检验任务编号" align="center" prop="checkNo" width="120"/>
|
|
|
|
<el-table-column label="检验任务编号" align="center" prop="checkNo" width="120">
|
|
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
|
|
<el-button type="text" @click="handleView(scope.row)">{{
|
|
|
|
|
|
|
|
scope.row.checkNo
|
|
|
|
|
|
|
|
}}</el-button>
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="批次号" align="center" prop="incomeBatchNo" width="200" :show-overflow-tooltip="true"/>
|
|
|
|
<el-table-column label="批次号" align="center" prop="incomeBatchNo" width="200" :show-overflow-tooltip="true"/>
|
|
|
|
<el-table-column label="订单号" align="center" prop="orderNo" width="120"/>
|
|
|
|
<el-table-column label="订单号" align="center" prop="orderNo" width="120"/>
|
|
|
|
<el-table-column label="物料号" align="center" prop="materialCode" width="170" />
|
|
|
|
<el-table-column label="物料号" align="center" prop="materialCode" width="170" />
|
|
|
@ -715,6 +721,11 @@ export default {
|
|
|
|
this.$refs.itemSelectProject.showFlag = true;
|
|
|
|
this.$refs.itemSelectProject.showFlag = true;
|
|
|
|
this.$refs.itemSelectProject.init(row,'product');
|
|
|
|
this.$refs.itemSelectProject.init(row,'product');
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
//查看检验项目弹窗
|
|
|
|
|
|
|
|
handleView(row){
|
|
|
|
|
|
|
|
this.$refs.itemSelectProject.showFlag = true;
|
|
|
|
|
|
|
|
this.$refs.itemSelectProject.view(row,'produce');
|
|
|
|
|
|
|
|
},
|
|
|
|
//提交检测结果
|
|
|
|
//提交检测结果
|
|
|
|
saveCheck(){
|
|
|
|
saveCheck(){
|
|
|
|
this.getList();
|
|
|
|
this.getList();
|
|
|
|