Commit 4428d3a9 authored by 沈翠玲's avatar 沈翠玲

iqc检验

parent 8f19c752
......@@ -72,21 +72,22 @@
<el-table v-loading="loading" :data="ipqcList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="检验单编号" width="150px" align="center" prop="iqcCode" />
<el-table-column label="检验类型" align="center" prop="checkStatus">
<template slot-scope="scope">
{{checkStatusList.find(v => v.dictKey === scope.row.checkStatus) ? checkStatusList.find(v => v.dictKey === scope.row.checkStatus).dictValue : ''}}
</template>
</el-table-column>
<el-table-column label="物料分类" width="150px" align="center" prop="itemTypeName" />
<el-table-column label="物料编码" width="120px" align="center" prop="sapItemCode" />
<el-table-column label="物料名称" width="150px" align="center" prop="itemName" :show-overflow-tooltip="true" />
<el-table-column label="单位" align="center" prop="unitOfMeasure" />
<el-table-column label="检测数量" align="center" prop="quantityCheck" />
<el-table-column label="不合格数" align="center" prop="quantityUnqualified" />
<el-table-column label="检测结果" align="center" prop="checkResult">
<template slot-scope="scope">
<dict-tag :options="dict.type.mes_qc_result" :value="scope.row.checkResult" />
</template>
</el-table-column>
<el-table-column label="处理措施" align="center" prop="checkStatus">
<template slot-scope="scope">
{{checkStatusList.find(v => v.dictKey === scope.row.checkStatus) ? checkStatusList.find(v => v.dictKey === scope.row.checkStatus).dictValue : ''}}
</template>
</el-table-column>
<el-table-column label="检测日期" align="center" prop="inspectDate" width="180">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.inspectDate, '{y}-{m}-{d}') }}</span>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment