|
|
|
@ -88,7 +88,7 @@
|
|
|
|
|
<el-card shadow="never">
|
|
|
|
|
<template #header>
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<!-- <el-col :span="1.5">
|
|
|
|
|
<el-button type="primary" plain icon="Plus" @click="handleAdd" v-hasPermi="['qms:qcUnqualifiedReview:add']">新增</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
@ -96,7 +96,7 @@
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete()" v-hasPermi="['qms:qcUnqualifiedReview:remove']">删除</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-col> -->
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-button type="warning" plain icon="Download" @click="handleExport" v-hasPermi="['qms:qcUnqualifiedReview:export']">导出</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
@ -125,7 +125,7 @@
|
|
|
|
|
<!-- <el-table-column label="评审主键" align="center" prop="reviewId" v-if="columns[0].visible"/> -->
|
|
|
|
|
<!-- 自动序号 -->
|
|
|
|
|
<el-table-column type="index" label="序号" width="55" align="center" v-if="columns[0].visible"/>
|
|
|
|
|
<el-table-column label="不合格检测单号" align="center" prop="unqualifiedReviewNo" v-if="columns[1].visible"/>
|
|
|
|
|
<el-table-column label="不合格检测单号" align="center" prop="unqualifiedReviewNo" width="120" v-if="columns[1].visible"/>
|
|
|
|
|
<el-table-column label="评审结果" align="center" prop="reviewResult" v-if="columns[2].visible">
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
<dict-tag :options="review_result" :value="scope.row.reviewResult"/>
|
|
|
|
@ -143,8 +143,8 @@
|
|
|
|
|
<el-table-column label="物料名称" align="center" prop="materialName" v-if="columns[8].visible"/>
|
|
|
|
|
<el-table-column label="物料编码" align="center" prop="materialCode" v-if="columns[9].visible"/>
|
|
|
|
|
<el-table-column label="物料规格" align="center" prop="materialSpec" v-if="columns[10].visible"/>
|
|
|
|
|
<el-table-column label="供应商名称" align="center" prop="supplierName" v-if="columns[11].visible"/>
|
|
|
|
|
<el-table-column label="供应商编码" align="center" prop="supplierCode" v-if="columns[12].visible"/>
|
|
|
|
|
<el-table-column label="供应商名称" align="center" prop="supplierName" width="120" v-if="columns[11].visible"/>
|
|
|
|
|
<el-table-column label="供应商编码" align="center" prop="supplierCode" width="120" v-if="columns[12].visible"/>
|
|
|
|
|
<el-table-column label="质检数量" align="center" prop="inspectionQty" v-if="columns[13].visible"/>
|
|
|
|
|
<el-table-column label="批次号" align="center" prop="batchNo" v-if="columns[14].visible"/>
|
|
|
|
|
<el-table-column label="质检人" align="center" prop="inspector" v-if="columns[15].visible"/>
|
|
|
|
@ -177,9 +177,9 @@
|
|
|
|
|
<template #header>
|
|
|
|
|
<div class="flex justify-between items-center">
|
|
|
|
|
<h3>不合格品评审记录 - {{ selectedUnqualifiedReviewNo }}</h3>
|
|
|
|
|
<el-button type="primary" size="small" icon="Plus" @click="handleAddQcUnqualifiedRecord" v-hasPermi="['qms:qcUnqualifiedRecord:add']">
|
|
|
|
|
<!-- <el-button type="primary" size="small" icon="Plus" @click="handleAddQcUnqualifiedRecord" v-hasPermi="['qms:qcUnqualifiedRecord:add']">
|
|
|
|
|
新增评审记录
|
|
|
|
|
</el-button>
|
|
|
|
|
</el-button> -->
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|