You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

4733 lines
158 KiB

<template>
<div class="mod-config">
<!-- 条件查询 -->
<el-card :class="['search-card', { 'collapsed': !searchExpanded }]" shadow="hover">
<div slot="header" class="search-header">
<div class="header-left">
<i class="el-icon-search"></i>
<span class="header-title">Search</span>
</div>
<div class="header-right">
<el-button
type="text"
size="small"
@click="toggleSearchExpand"
class="collapse-btn">
<span>{{ searchExpanded ? '收起' : '展开' }}</span>
<i :class="searchExpanded ? 'el-icon-arrow-up' : 'el-icon-arrow-down'"></i>
</el-button>
</div>
</div>
<el-form
:inline="true"
label-position="top"
:model="searchData"
class="search-form"
@keyup.enter.native="getDataList">
<!-- 所有查询条件 - 可展开/收起 -->
<template v-if="searchExpanded">
<!-- 第一行:基础单据信息 -->
<el-row :gutter="16">
<el-col :span="5">
<el-form-item label="BU">
<el-select v-model="searchData.buNo" placeholder="请选择" clearable>
<el-option
v-for="i in buList"
:key="i.buNo"
:label="i.buDesc"
:value="i.buNo">
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="5">
<el-form-item label="检验单号">
<el-input v-model="searchData.inspectionNo" placeholder="请输入检验单号" clearable></el-input>
</el-form-item>
</el-col>
<el-col :span="5">
<el-form-item label="单据号">
<el-input v-model="searchData.poOrderNo" placeholder="请输入单据号" clearable></el-input>
</el-form-item>
</el-col>
<el-col :span="5">
<el-form-item label="单据行号">
<el-input v-model="searchData.poItemNo" placeholder="请输入单据行号" clearable></el-input>
</el-form-item>
</el-col>
<el-col :span="4">
<el-form-item label="采购类型">
<el-select v-model="searchData.orderType" clearable placeholder="请选择采购类型">
<el-option label="采购订单" value="采购订单"></el-option>
<el-option label="委外订单" value="委外订单"></el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
<!-- 第二行:物料信息 -->
<el-row :gutter="16">
<el-col :span="5">
<el-form-item label="物料编码">
<el-input v-model="searchData.partNo" placeholder="请输入物料编码" clearable>
</el-input>
</el-form-item>
</el-col>
<el-col :span="5">
<el-form-item label="物料名称">
<el-input v-model="searchData.partDesc" placeholder="请输入物料名称" clearable></el-input>
</el-form-item>
</el-col>
<el-col :span="5">
<el-form-item label="规格型号">
<el-input v-model="searchData.spec" placeholder="请输入规格型号" clearable></el-input>
</el-form-item>
</el-col>
<el-col :span="5">
<el-form-item label="物料类别">
<el-input v-model="searchData.invdefinetype" placeholder="请输入物料类别" clearable></el-input>
</el-form-item>
</el-col>
<el-col :span=4>
<el-form-item label="供应商">
<el-input v-model="searchData.supplierDesc" placeholder="请输入供应商" clearable></el-input>
</el-form-item>
</el-col>
</el-row>
<!-- 第三行:供应商及检验相关信息 -->
<el-row :gutter="16">
<el-col :span="5">
<el-form-item label="质检员">
<el-input v-model="searchData.inspectorName" placeholder="请输入质检员姓名" clearable></el-input>
</el-form-item>
</el-col>
<el-col :span="5">
<el-form-item label="状态">
<el-select v-model="searchData.states" multiple collapse-tags placeholder="请选择状态" class="status-select">
<el-option label="未开始" value="未开始"></el-option>
<el-option label="待检验" value="待检验"></el-option>
<el-option label="待审核" value="待审核"></el-option>
<el-option label="已完成" value="已完成"></el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="5">
<el-form-item label="送检类型">
<el-select v-model="searchData.submissionType" clearable placeholder="请选择送检类型">
<el-option label="厂内使用" value="厂内使用"></el-option>
<el-option label="外协使用" value="外协使用"></el-option>
<el-option label="其他" value="其他"></el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="5">
<el-form-item label="检验结论">
<el-select v-model="searchData.inspectionResult" clearable placeholder="请选择检验结论">
<el-option label="合格" value="合格">
<i class="el-icon-success" style="color: #67C23A;"></i> 合格
</el-option>
<el-option label="不合格" value="不合格">
<i class="el-icon-error" style="color: #F56C6C;"></i> 不合格
</el-option>
<el-option label="免检" value="免检">
<i class="el-icon-circle-check" style="color: #409EFF;"></i> 免检
</el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="4">
<el-form-item label="处置措施">
<el-select v-model="searchData.disposalMeasures" clearable placeholder="请选择处置措施">
<el-option
v-for="i in disposalMeasuresOptions"
:key="i.id"
:label="i.disposalMeasures"
:value="i.disposalMeasures">
</el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
<!-- 第四行:检验结论及处置措施 -->
<el-row :gutter="16">
<el-col :span="7">
<el-form-item label="送检日期">
<el-date-picker
v-model="searchData.startDate2"
type="datetime"
value-format='yyyy-MM-dd HH:mm'
format='yyyy-MM-dd HH:mm'
placeholder="开始日期"
style="width: 44%">
</el-date-picker>
<span style="margin: 0 6px; color: #DCDFE6;">~</span>
<el-date-picker
v-model="searchData.endDate2"
type="datetime"
value-format='yyyy-MM-dd HH:mm'
format='yyyy-MM-dd HH:mm'
placeholder="结束日期"
style="width: 44%">
</el-date-picker>
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item label="检验时间">
<el-date-picker
v-model="searchData.startDate"
type="datetime"
value-format='yyyy-MM-dd HH:mm'
format='yyyy-MM-dd HH:mm'
placeholder="开始日期"
style="width: 44%">
</el-date-picker>
<span style="margin: 0 6px; color: #DCDFE6;">~</span>
<el-date-picker
v-model="searchData.endDate"
type="datetime"
value-format='yyyy-MM-dd HH:mm'
format='yyyy-MM-dd HH:mm'
placeholder="结束日期"
style="width: 44%">
</el-date-picker>
</el-form-item>
</el-col>
<el-col :span="5">
<el-form-item label="通知单号">
<el-input v-model="searchData.documentNo" placeholder="请输入通知单号" clearable></el-input>
</el-form-item>
</el-col>
</el-row>
</template>
<!-- 操作按钮区域 -->
<el-row :gutter="16">
<el-col :span="24">
<div class="search-actions">
<div class="action-left">
<el-button
v-if="!authSearch"
type="primary"
icon="el-icon-search"
:loading="searchLoading"
@click="getDataList">
查询
</el-button>
<el-button
icon="el-icon-refresh-left"
@click="resetSearch">
重置
</el-button>
</div>
<div class="action-right">
<el-button
v-if="!authCheck"
type="success"
icon="el-icon-check"
@click="submitResult">
审核
</el-button>
<el-button
v-if="!authCancelCheck"
type="warning"
icon="el-icon-close"
@click="cancelApproval">
取消审核
</el-button>
<el-button
v-if="!authDelete"
type="danger"
icon="el-icon-delete"
@click="deleteModal">
删除
</el-button>
<el-button
v-if="!authOverLoad"
icon="el-icon-refresh"
@click="overLoadModal">
任务重载
</el-button>
<el-button
icon="el-icon-printer"
@click="printList">
打印
</el-button>
<download-excel
:fields="exportFields"
:fetch="createExportData"
:before-generate="startDownload"
:before-finish="finishDownload"
type="xls"
:name="exportName"
worksheet="导出信息"
class="el-button el-button--medium">
<i class="el-icon-download"></i>
导出
</download-excel>
</div>
</div>
</el-col>
</el-row>
</el-form>
</el-card>
<!-- 检验记录展示列表 -->
<el-table
:height="height"
:data="dataList"
border
ref="IQCTable"
highlight-current-row
@row-click="IQCClickRow"
@selection-change="selectionIQC"
style="width: 100%;">
<el-table-column
type="selection"
header-align="center"
align="center"
width="50">
</el-table-column>
<el-table-column
prop="defectTrackingFlag"
header-align="center"
align="center"
width="32"
label="">
<template slot-scope="scope">
<svg v-if="scope.row.defectTrackingFlag && scope.row.defectTrackingFlag.trim().toUpperCase() === 'Y'" t="1774593315836" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3431" id="mx_n_1774593315837" width="22" height="22"><path d="M765.4 331.5c-23.4-33.1-23.4-38 0-71.1l85.2-105.2c16-22.5-0.2-53.7-27.8-53.7H337.2c-21.7 0-39.4 17.6-39.4 39.4V810c0 21.7 17.6 39.4 39.4 39.4 21.7 0 39.4-17.6 39.4-39.4V490.3h446.3c27.6 0 43.7-31.2 27.8-53.7l-85.3-105.1z" fill="#d92e71" p-id="3432" data-spm-anchor-id="a313x.search_index.0.i13.5c113a810rcz2v" class=""></path><path d="M70.5 840.3a260.2 92.9 0 1 0 520.4 0 260.2 92.9 0 1 0-520.4 0Z" fill="#d92e71" opacity=".2" p-id="3433"></path></svg>
</template>
</el-table-column>
<el-table-column
prop="state"
header-align="center"
align="center"
label="状态">
<template slot-scope="scope">
<div :style="{fontWeight:'bold', color: scope.row.state === '待检验' ? 'red' : scope.row.state === '待审核' ? '#ffa500e0' : scope.row.state === '已完成' ? '#3ac252' : ''}">
{{ scope.row.state }}
</div>
</template>
</el-table-column>
<el-table-column
v-for="(item,index) in columnList1" :key="index"
:sortable="item.columnSortable"
:prop="item.columnProp"
:header-align="item.headerAlign"
:show-overflow-tooltip="item.showOverflowTooltip"
:align="item.align"
:fixed="item.fixed===''?false:item.fixed"
:min-width="item.columnWidth"
:label="item.columnLabel">
<template slot-scope="scope">
<span v-if="!item.columnHidden">{{scope.row[item.columnProp]}}</span>
<span v-if="item.columnImage"><img :src="scope.row[item.columnProp]" style="width: 100px; height: 80px"/></span>
</template>
</el-table-column>
<el-table-column
fixed="right"
header-align="center"
align="center"
width="130"
label="操作">
<template slot-scope="scope">
<el-link style="cursor: pointer" v-if="!authDetail && scope.row.state === '未开始'" @click="actionModal(scope.row)">开始检验</el-link>
<el-link style="cursor: pointer" v-if="!authDetail && scope.row.state !== '未开始'" @click="detailModal(scope.row)">检验单</el-link>
<el-link style="cursor: pointer" v-if="!authFile" @click="getFileContentData(scope.row)">工作文件</el-link>
</template>
</el-table-column>
</el-table>
<!-- 分页-->
<el-pagination
style="margin-top: 0px"
@size-change="sizeChangeHandle"
@current-change="currentChangeHandle"
:current-page="pageIndex"
:page-sizes="[20, 50, 100, 200, 500]"
:page-size="pageSize"
:total="totalPage"
layout="total, sizes, prev, pager, next, jumper">
</el-pagination>
<!-- 检验单详情页 -->
<el-dialog
:title="'检验明细清单-' + (detailData.inspectionNo || '')"
:close-on-click-modal="false"
v-drag
:visible.sync="detailInformationFlag"
width="1200px"
top="2vh"
custom-class="iqc-inspection-dialog">
<!-- 单据信息卡片 -->
<div class="inspection-info-card">
<div class="info-section">
<div class="section-title">
<i class="el-icon-document"></i>
<span>检验单信息</span>
<svg v-if="detailData.defectTrackingFlag && detailData.defectTrackingFlag.trim().toUpperCase() === 'Y'" style="margin-left: 8px; margin-top: -2px;" t="1774593315836" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="3431" id="mx_n_1774593315837" width="22" height="22"><path d="M765.4 331.5c-23.4-33.1-23.4-38 0-71.1l85.2-105.2c16-22.5-0.2-53.7-27.8-53.7H337.2c-21.7 0-39.4 17.6-39.4 39.4V810c0 21.7 17.6 39.4 39.4 39.4 21.7 0 39.4-17.6 39.4-39.4V490.3h446.3c27.6 0 43.7-31.2 27.8-53.7l-85.3-105.1z" fill="#d92e71" p-id="3432" data-spm-anchor-id="a313x.search_index.0.i13.5c113a810rcz2v" class=""></path><path d="M70.5 840.3a260.2 92.9 0 1 0 520.4 0 260.2 92.9 0 1 0-520.4 0Z" fill="#d92e71" opacity=".2" p-id="3433"></path></svg>
</div>
<!-- 第一行:物料信息 -->
<el-row :gutter="12" class="info-row">
<el-col :span="3">
<div class="info-item">
<label>物料编码</label>
<el-input v-model="detailData.partNo" disabled size="small"></el-input>
</div>
</el-col>
<el-col :span="3">
<div class="info-item">
<label>物料类别</label>
<el-input v-model="detailData.invdefinetype" disabled size="small"></el-input>
</div>
</el-col>
<el-col :span="6">
<div class="info-item">
<label>物料名称</label>
<el-input v-model="detailData.partDesc" disabled size="small"></el-input>
</div>
</el-col>
<el-col :span="3">
<div class="info-item">
<label>规格型号</label>
<el-input v-model="detailData.spec" disabled size="small"></el-input>
</div>
</el-col>
<el-col :span="2">
<div class="info-item">
<label>单位</label>
<el-input v-model="detailData.umName" disabled size="small"></el-input>
</div>
</el-col>
<el-col :span="3">
<div class="info-item">
<label>
<span v-if="detailData.submitFlag === 'Y'">协同人员</span>
<a v-else style="cursor: pointer" @click="getOperatorList">协同人员</a>
</label>
<el-input v-model="detailData.operatorName" readonly size="small"></el-input>
</div>
</el-col>
<el-col :span="4">
<div class="info-item">
<label>
<span v-if="detailData.submitFlag === 'Y'">责任人</span>
<a v-else style="cursor: pointer" @click="getResponsiblePersonList">责任人</a>
</label>
<el-input v-model="detailData.responsiblePersonName" readonly size="small"></el-input>
</div>
</el-col>
</el-row>
<!-- 第二行:数量信息 -->
<el-row :gutter="12" class="info-row" style="margin-top: 12px">
<el-col :span="3">
<div class="info-item">
<label>到货数量</label>
<el-input-number :controls="false" :step="0" v-model="detailData.rollQty" disabled size="small" style="width: 100%"></el-input-number>
</div>
</el-col>
<el-col :span="3">
<div class="info-item">
<label>送检数量</label>
<el-input-number :controls="false" :step="0" v-model="detailData.rollCount" @change="rollCountChange" size="small" style="width: 100%"></el-input-number>
</div>
</el-col>
<el-col :span="3">
<div class="info-item">
<label>抽样数量</label>
<el-input-number :controls="false" :step="0" v-model="detailData.samplingQty" @change="samplingQtyChange" size="small" style="width: 100%"></el-input-number>
</div>
</el-col>
<el-col :span="3">
<div class="info-item">
<label>合格数量</label>
<el-input-number :controls="false" :step="0" min="0" v-if="detailData.submitFlag === 'Y'" v-model="detailData.passQty" disabled size="small" style="width: 100%"></el-input-number>
<el-input-number :controls="false" :step="0" min="0" v-else v-model="detailData.passQty" @change="passQtyChange" size="small" style="width: 100%"></el-input-number>
</div>
</el-col>
<el-col :span="3">
<div class="info-item">
<label>不合格数量</label>
<el-input-number :controls="false" :step="0" min="0" v-model="detailData.notPassQty" disabled size="small" style="width: 100%"></el-input-number>
</div>
</el-col>
<el-col :span="3">
<div class="info-item">
<label>不合格项目数</label>
<el-input-number :controls="false" :step="0" v-if="detailData.submitFlag === 'Y'" v-model="detailData.unqualifiedQty" disabled size="small" style="width: 100%"></el-input-number>
<el-input-number :controls="false" :step="0" v-else v-model="detailData.unqualifiedQty" size="small" style="width: 100%"></el-input-number>
</div>
</el-col>
<el-col :span="3">
<div class="info-item">
<label>批次不合格数</label>
<el-input-number :controls="false" min="0" v-model="detailData.noBatchQualifiedQty" @change="noBatchQualifiedQtyChange()" size="small" style="width: 100%"></el-input-number>
</div>
</el-col>
<el-col :span="3">
<div class="info-item">
<label>批次合格数</label>
<el-input-number :controls="false" :step="0" min="0" disabled v-model="detailData.batchQualifiedQty" size="small" style="width: 100%"></el-input-number>
</div>
</el-col>
</el-row>
</div>
<div class="info-section" style="margin-top: 10px">
<div class="section-title">
<i class="el-icon-finished"></i>
<span>检验结论</span>
</div>
<el-row :gutter="12" class="info-row">
<el-col :span="3">
<div class="info-item">
<label>检验结论</label>
<el-select v-if="detailData.submitFlag === 'Y'" v-model="detailData.inspectionResult" disabled size="small" placeholder="请选择" style="width: 100%">
<el-option label="合格" value="合格"></el-option>
<el-option label="不合格" value="不合格"></el-option>
</el-select>
<el-select v-else v-model="detailData.inspectionResult" @change="resultChange" size="small" placeholder="请选择" style="width: 100%">
<el-option label="合格" value="合格"></el-option>
<el-option label="不合格" value="不合格"></el-option>
</el-select>
</div>
</el-col>
<el-col :span="7">
<div class="info-item">
<label>质检备注</label>
<el-input v-if="detailData.submitFlag === 'Y'" v-model="detailData.inspectionRemark" disabled size="small"></el-input>
<el-input v-else v-model="detailData.inspectionRemark" size="small"></el-input>
</div>
</el-col>
<el-col :span="3" v-show="detailData.inspectionResult === '不合格'">
<div class="info-item">
<label>处置措施</label>
<el-select v-if="detailData.submitFlag === 'Y'" clearable v-model="detailData.disposalMeasures" disabled size="small" style="width: 100%">
<el-option
v-for = "i in disposalMeasuresOptions"
:key = "i.id"
:label = "i.disposalMeasures"
:value = "i.disposalMeasures">
</el-option>
</el-select>
<el-select v-else clearable v-model="detailData.disposalMeasures" size="small" style="width: 100%">
<el-option
v-for = "i in disposalMeasuresOptions"
:key = "i.id"
:label = "i.disposalMeasures"
:value = "i.disposalMeasures">
</el-option>
</el-select>
</div>
</el-col>
<el-col :span="7" v-show="detailData.inspectionResult === '不合格'">
<div class="info-item">
<label>处置说明</label>
<el-input v-if="detailData.submitFlag === 'Y'" v-model="detailData.disposalRemark" disabled size="small"></el-input>
<el-input v-else v-model="detailData.disposalRemark" size="small"></el-input>
</div>
</el-col>
<!-- <el-col :span="4" style="display: flex; align-items: flex-end;">-->
<!-- <div style="width: 100%;">-->
<!-- -->
<!-- </div>-->
<!-- </el-col>-->
</el-row>
</div>
<!-- 操作按钮区域 -->
<div class="action-buttons">
<div class="left-actions">
<el-button v-if="detailData.submitFlag !== 'Y'" type="primary" size="small" :loading="loadFlag" @click="dataAcquisition" icon="el-icon-download">
数据采集
</el-button>
<el-button type="info" size="small" @click="getFileContentData(detailData)" icon="el-icon-folder-opened">
文件清单
</el-button>
<el-button type="warning" size="small" @click="subDetailUpload" icon="el-icon-upload2">
子明细导入
</el-button>
</div>
<div class="right-actions">
<el-button type="success" size="small" @click="openItemOperationDialog" icon="el-icon-setting">
项目导入
</el-button>
<el-button type="primary" size="small" @click="openTemplateImportDialog" icon="el-icon-download">
模板导入
</el-button>
</div>
</div>
</div>
<!-- 检验项目列表 -->
<div class="inspection-table-wrapper">
<div class="table-header">
<span class="table-title">
<i class="el-icon-tickets"></i>
检验内容
</span>
</div>
<el-table
:height="435"
:data="detailList"
border
stripe
style="width: 100%;"
highlight-current-row
class="inspection-table">
<el-table-column
prop=""
header-align="center"
align="center"
width="110"
label="操作"
fixed="left">
<template slot-scope="scope">
<el-button icon="el-icon-picture" :type="scope.row.detailImageNum > 0 ? 'success' : 'primary'" size="mini" @click="uploadImageModal(scope.row)" title="上传图片"></el-button>
<el-button icon="el-icon-edit-outline" type="primary" size="mini" :loading="loadFlag" @click="dataAcquisitionByItem(scope.row)" title="数据采集"></el-button>
</template>
</el-table-column>
<el-table-column
v-for="(item,index) in detailColumnList" :key="index"
:sortable="item.columnSortable"
:prop="item.columnProp"
:header-align="item.headerAlign"
:show-overflow-tooltip="item.showOverflowTooltip"
:align="item.align"
:fixed="item.fixed===''?false:item.fixed"
:min-width="item.columnWidth"
:label="item.columnLabel">
<template slot-scope="scope">
<!-- 标准值、上限值、下限值可编辑 -->
<template v-if="item.columnProp === 'defaultValue' || item.columnProp === 'minValue' || item.columnProp === 'maxValue'">
<el-input v-model="scope.row[item.columnProp]" style="height: 11px; width: 98%"></el-input>
</template>
<template v-else>
<span v-if="!item.columnHidden">{{scope.row[item.columnProp]}}</span>
<span v-if="item.columnImage"><img :src="scope.row[item.columnProp]" style="width: 100px; height: 80px"/></span>
</template>
</template>
</el-table-column>
<el-table-column
prop=""
header-align="center"
align="right"
min-width="80"
label="实测值">
<template slot-scope="scope">
<el-input :ref="`textValue${scope.$index}`" v-if="scope.row.valueTypeDb === 'N'" v-model="scope.row.numberValue" @keyup.enter.native="focusNextInput(scope.$index, 'textValue')" type="number" @change="updateItemResult(scope.row)" style="height: 11px; width: 98%"></el-input>
<el-input :ref="`textValue${scope.$index}`" v-else v-model="scope.row.textValue" @keyup.enter.native="focusNextInput(scope.$index, 'textValue')" style="height: 11px; width: 98%"></el-input>
</template>
</el-table-column>
<el-table-column
prop=""
header-align="center"
align="center"
min-width="80"
label="检验明细">
<template slot-scope="scope">
<el-button v-if="scope.row.subDetailRecordNum > 0" type="success" @click="subDetailModal(scope.row) ">点击输入</el-button>
<el-button v-else type="primary" @click="subDetailModal(scope.row) ">点击输入</el-button>
</template>
</el-table-column>
<el-table-column
prop=""
header-align="center"
align="right"
min-width="80"
label="抽样数量">
<template slot-scope="scope">
<el-input-number :controls="false" :step="0" v-if="detailData.submitFlag === 'Y'" v-model="scope.row.samplingQty" disabled style="height: 11px; width: 98%"></el-input-number>
<el-input-number :controls="false" :step="0" v-else :ref="`samplingQty${scope.$index}`" v-model="scope.row.samplingQty" @keyup.enter.native="focusNextInput(scope.$index, 'samplingQty')" style="height: 11px; width: 98%"></el-input-number>
</template>
</el-table-column>
<el-table-column
prop=""
header-align="center"
align="right"
min-width="80"
label="不合格数量">
<template slot-scope="scope">
<el-input-number :controls="false" :step="0" v-if="detailData.submitFlag === 'Y'" v-model="scope.row.unqualifiedQuantity" disabled style="height: 11px; width: 98%"></el-input-number>
<el-input-number :controls="false" :step="0" v-else :ref="`unqualifiedQuantity${scope.$index}`" v-model="scope.row.unqualifiedQuantity" @keyup.enter.native="focusNextInput(scope.$index, 'unqualifiedQuantity')" style="height: 11px; width: 98%"></el-input-number>
</template>
</el-table-column>
<el-table-column
prop=""
header-align="center"
align="right"
min-width="90"
label="项目检验结论">
<template slot-scope="scope">
<el-select :class="{redElSelect:scope.row.itemResult === 'N', greenElSelect:scope.row.itemResult === 'Y'}" v-if="detailData.submitFlag === 'Y'" v-model="scope.row.itemResult" disabled style="height: 11px;padding: 0px" >
<el-option label="合格" value="Y" style="color: green"></el-option>
<el-option label="不合格" value="N" style="color: red"></el-option>
</el-select>
<el-select :class="{redElSelect:scope.row.itemResult === 'N', greenElSelect:scope.row.itemResult === 'Y'}" v-else v-model="scope.row.itemResult" style="height: 11px;padding: 0px" placeholder="合格">
<el-option label="合格" value="Y" style="color: green"></el-option>
<el-option label="不合格" value="N" style="color: red"></el-option>
</el-select>
</template>
</el-table-column>
</el-table>
</div>
<!-- 底部操作按钮 -->
<div class="dialog-footer">
<el-button v-if="detailData.state === '待检验'" type="primary" :loading="transferLoadFlag" @click="Transfer('1')">应用</el-button>
<el-button v-if="detailData.state === '待检验' || detailData.state === '待审核'" type="primary" :loading="transferLoadFlag" @click="Transfer('2')">保存</el-button>
<el-button @click="detailInformationFlag=false">关闭</el-button>
</div>
</el-dialog>
<!-- 文件清单 -->
<el-dialog title="文件清单" :close-on-click-modal="false" v-drag :visible.sync="fileFlag" width="900px">
<el-tabs v-model="fileActiveTab" type="border-card">
<!-- QC检验文件标签页 -->
<el-tab-pane label="QC检验文件" name="qcFile">
<el-form :inline="true" label-position="top" style="margin-bottom: 10px;">
<el-form-item v-if="detailInformationFlag">
<el-button type="primary" size="small" @click="addUploadFileModal">上传文件</el-button>
</el-form-item>
</el-form>
<iqc-file-table :columns="fileColumnList" :data-list="fileContentList" :query-loading="fileLoading" @refreshFileList="getFileContentData(currentFileRow)"></iqc-file-table>
</el-tab-pane>
<!-- SOP文件标签页 -->
<el-tab-pane label="SOP文件" name="sopFile">
<el-table
:data="sopFileList"
border
v-loading="sopFileLoading"
height="350"
style="width: 100%;">
<el-table-column prop="sopName" header-align="center" align="left" label="文件名称" min-width="200" show-overflow-tooltip></el-table-column>
<el-table-column prop="fileType" header-align="center" align="center" label="文件类型" width="100"></el-table-column>
<el-table-column prop="version" header-align="center" align="center" label="版本号" width="80"></el-table-column>
<el-table-column prop="createdBy" header-align="center" align="center" label="上传人" width="100"></el-table-column>
<el-table-column prop="creationDate" header-align="center" align="center" label="上传时间" width="150"></el-table-column>
<el-table-column fixed="right" header-align="center" align="center" width="80" label="操作">
<template slot-scope="scope">
<el-link type="primary" @click="previewSopFile(scope.row)">预览</el-link>
</template>
</el-table-column>
</el-table>
</el-tab-pane>
</el-tabs>
<el-footer style="height:35px;margin-top: 10px;text-align:center">
<el-button type="primary" @click="fileFlag = false">关闭</el-button>
</el-footer>
</el-dialog>
<!-- 子明细信息 -->
<el-dialog title="子明细信息" :close-on-click-modal="false" v-drag :visible.sync="subDetailFlag" width="1102px">
<el-button type="success" icon="el-icon-plus" size="mini" @click="handleAddBtn(subDetailData)">添加</el-button>
<el-button type="danger" icon="el-icon-delete" size="mini" @click="handleDeleteBtn(subDetailData)">删除</el-button>
<el-button type="primary" icon="el-icon-more" size="mini" @click="batchHandleAdd(subDetailData)">批量新增</el-button>
<div class="rq ">
<el-table
:height="400"
:data="templateTableData"
border
v-loading="subDetailLoading"
element-loading-text="拼命加载中"
:row-class-name="rowClassName"
@selection-change="handleDetailSelectionChange"
style="width: 100%;">
<el-table-column type="selection" align="center" width="40"></el-table-column>
<el-table-column label="序号" align="center" prop="num" width="50"></el-table-column>
<el-table-column prop="samplingLocation" header-align="center" align="center" :required="true" label="抽样位置A" width="120">
<template slot-scope="{row}">
<el-input v-if="templateTableData[row.xh-1].isSubmit === 'Y'" v-model="templateTableData[row.xh-1].samplingLocation" readonly placeholder="请输入抽样位置A"></el-input>
<el-input v-else :ref="`${row.xh-1}` + `a`" v-model="templateTableData[row.xh-1].samplingLocation" @keyup.enter.native="nextFocus1(row.xh-1)" placeholder="请输入抽样位置A"></el-input>
</template>
</el-table-column>
<el-table-column prop="samplingLocationB" header-align="center" align="center" :required="true" label="抽样位置B" width="120">
<template slot-scope="{row}">
<el-input v-if="templateTableData[row.xh-1].isSubmit === 'Y'" v-model="templateTableData[row.xh-1].samplingLocationB" readonly placeholder="请输入抽样位置B"></el-input>
<el-input v-else :ref="`${row.xh-1}` + `b`" v-model="templateTableData[row.xh-1].samplingLocationB" @keyup.enter.native="nextFocus2(row.xh-1)" placeholder="请输入抽样位置B"></el-input>
</template>
</el-table-column>
<el-table-column prop="subDetailValue" header-align="center" align="center" :required="true" label="实测值A" width="150">
<template slot-scope="{row}">
<el-input v-if="templateTableData[row.xh-1].isSubmit === 'Y'" v-model="templateTableData[row.xh-1].subDetailValue" readonly placeholder="请输入实测值A"></el-input>
<el-input v-else :ref="`${row.xh-1}` + `c`" v-model="templateTableData[row.xh-1].subDetailValue" @keyup.enter.native="nextFocus3(row.xh-1)" placeholder="请输入实测值A"></el-input>
</template>
</el-table-column>
<el-table-column prop="subDetailValueB" header-align="center" align="center" :required="true" label="实测值B" width="150">
<template slot-scope="{row}">
<el-input v-if="templateTableData[row.xh-1].isSubmit === 'Y'" v-model="templateTableData[row.xh-1].subDetailValueB" readonly placeholder="请输入实测值B"></el-input>
<el-input v-else :ref="`${row.xh-1}` + `d`" v-model="templateTableData[row.xh-1].subDetailValueB" @keyup.enter.native="nextFocus4(row.xh-1)" placeholder="请输入实测值B"></el-input>
</template>
</el-table-column>
<el-table-column prop="subDetailValueC" header-align="center" align="center" :required="true" label="实测值C" width="150">
<template slot-scope="{row}">
<el-input v-if="templateTableData[row.xh-1].isSubmit === 'Y'" v-model="templateTableData[row.xh-1].subDetailValueC" readonly placeholder="请输入实测值C"></el-input>
<el-input v-else :ref="`${row.xh-1}` + `e`" v-model="templateTableData[row.xh-1].subDetailValueC" @keyup.enter.native="nextFocus5(row.xh-1)" placeholder="请输入实测值C"></el-input>
</template>
</el-table-column>
<el-table-column prop="subDetailValueD" header-align="center" align="center" :required="true" label="实测值D" width="150">
<template slot-scope="{row}">
<el-input v-if="templateTableData[row.xh-1].isSubmit === 'Y'" v-model="templateTableData[row.xh-1].subDetailValueD" readonly placeholder="请输入实测值D"></el-input>
<el-input v-else :ref="`${row.xh-1}` + `f`" v-model="templateTableData[row.xh-1].subDetailValueD" @keyup.enter.native="nextFocus6(row.xh-1)" placeholder="请输入实测值D"></el-input>
</template>
</el-table-column>
<el-table-column prop="subDetailValueE" header-align="center" align="center" :required="true" label="实测值E" width="150">
<template slot-scope="{row}">
<el-input v-if="templateTableData[row.xh-1].isSubmit === 'Y'" v-model="templateTableData[row.xh-1].subDetailValueE" readonly placeholder="请输入实测值E"></el-input>
<el-input v-else :ref="`${row.xh-1}` + `g`" v-model="templateTableData[row.xh-1].subDetailValueE" @keyup.enter.native="nextFocus7(row.xh-1)" placeholder="请输入实测值E"></el-input>
</template>
</el-table-column>
</el-table>
<!-- 分页-->
<el-pagination
@size-change="sizeChangeHandle2"
@current-change="currentChangeHandle2"
:current-page="pageIndex2"
:page-sizes="[20, 50, 100, 200, 500]"
:page-size="pageSize2"
:total="tableData.length"
layout="total, sizes, prev, pager, next, jumper">
</el-pagination>
</div>
<el-footer style="height:40px;margin-top: 10px;text-align:center">
<el-button v-if="detailData.submitFlag !== 'Y'" type="primary" @click="saveSubDetailResult">保存</el-button>
<el-button type="primary" @click="subDetailFlag = false">关闭</el-button>
</el-footer>
</el-dialog>
<!-- 批量新增子明细操作-->
<el-dialog title="批量新增" :close-on-click-modal="false" v-drag :visible.sync="batchHandleAddModalFlag" width="510px">
<el-form :inline="true" label-position="top">
<el-form-item :label="'默认抽样位置A'">
<el-input v-model="batchAddData.samplingLocation" style="width: 150px"></el-input>
</el-form-item>
<el-form-item :label="'默认抽样位置B'">
<el-input v-model="batchAddData.samplingLocationB" style="width: 150px"></el-input>
</el-form-item>
<el-form-item :label="'抽样数量'">
<el-input type="number" v-model="batchAddData.samplingNumber" style="width: 150px"></el-input>
</el-form-item>
</el-form>
<el-footer style="height:40px;margin-top: 10px;text-align:center">
<el-button type="primary" @click="batchHandleAddModal">保存</el-button>
<el-button type="primary" @click="batchHandleAddModalFlag = false">关闭</el-button>
</el-footer>
</el-dialog>
<!-- 机修人员清单 -->
<el-dialog title="人员清单" :close-on-click-modal="false" v-drag :visible.sync="operatorModelFlag" width="820px">
<div class="rq">
<el-form :inline="true" label-position="top" :model="operatorData">
<el-form-item v-if="operatorData.flag !== '2'" :label="'所属角色'">
<el-select v-model="operatorData.roleId" placeholder="请选择" style="width: 120px">
<el-option
v-for = "i in roleList"
:key = "i.roleId"
:label = "i.roleName"
:value = "i.roleId">
</el-option>
</el-select>
</el-form-item>
<el-form-item :label="'用户编码'">
<el-input v-model="operatorData.adminID" clearable style="width: 120px"></el-input>
</el-form-item>
<el-form-item :label="'用户姓名'">
<el-input v-model="operatorData.adminName" clearable style="width: 120px"></el-input>
</el-form-item>
<el-form-item :label="' '">
<el-button type="primary" @click="getOperatorList2">查询</el-button>
</el-form-item>
</el-form>
<el-table
:height="300"
:data="operatorList"
ref="operatorTable"
@row-click="operatorClickRow"
@selection-change="selectionChangeHandle2"
border
style="width: 100%;">
<el-table-column
type="selection"
header-align="center"
align="center"
width="50">
</el-table-column>
<el-table-column
v-for="(item,index) in operatorDetailList" :key="index"
:sortable="item.columnSortable"
:prop="item.columnProp"
:header-align="item.headerAlign"
:show-overflow-tooltip="item.showOverflowTooltip"
:align="item.align"
:fixed="item.fixed==''?false:item.fixed"
:min-width="item.columnWidth"
:label="item.columnLabel">
<template slot-scope="scope">
<span v-if="!item.columnHidden">{{scope.row[item.columnProp]}}</span>
<span v-if="item.columnImage"><img :src="scope.row[item.columnProp]" style="width: 100px; height: 80px"/></span>
</template>
</el-table-column>
</el-table>
</div>
<el-footer style="height:35px;margin-top: 15px;text-align:center">
<el-button type="primary" @click="confirmOperator">确认</el-button>
<el-button type="primary" @click="operatorModelFlag = false">关闭</el-button>
</el-footer>
</el-dialog>
<!-- 配置项目设备 -->
<el-dialog title="检验项目" :close-on-click-modal="false" v-drag :visible.sync="ItemObjectModelFlag" width="666px">
<el-table
:height="350"
:data="itemObjectList"
border
style="width: 100%; ">
<el-table-column
v-for="(item,index) in itemObjectColumnList" :key="index"
:sortable="item.columnSortable"
:prop="item.columnProp"
:header-align="item.headerAlign"
:show-overflow-tooltip="item.showOverflowTooltip"
:align="item.align"
:fixed="item.fixed===''?false:item.fixed"
:min-width="item.columnWidth"
:label="item.columnLabel">
<template slot-scope="scope">
<span v-if="!item.columnHidden">{{scope.row[item.columnProp]}}</span>
<span v-if="item.columnImage"><img :src="scope.row[item.columnProp]" style="width: 100px; height: 80px"/></span>
</template>
</el-table-column>
<el-table-column
header-align="center"
align="center"
min-width="100"
label="设备">
<template slot-scope="scope">
<el-select v-model="scope.row.equipmentNo" style="height: 11px" placeholder="请选择设备">
<el-option
v-for = "i in scope.row.objectList"
:key = "i.objectID"
:label = "i.objectDesc"
:value = "i.objectID">
</el-option>
</el-select>
</template>
</el-table-column>
</el-table>
<el-footer style="height:35px;margin-top: 15px;text-align:center">
<el-button type="primary" @click="actionModal2">保存</el-button>
<el-button type="primary" @click="ItemObjectModelFlag=false">关闭</el-button>
</el-footer>
</el-dialog>
<Chooselist ref="baseList" @getBaseData="getBaseData"></Chooselist>
<!-- 上传文件的modal -->
<qcFAIUploadFile ref="qcFAIUploadFile" @refreshPageTables="()=>{this.getFileContentData(this.detailData)}" v-drag></qcFAIUploadFile>
<!-- 上传文件的modal -->
<comQcItemImageUploadFile ref="comQcItemImageUploadFile" @refreshPageTables2="getInspectionFormData" v-drag></comQcItemImageUploadFile>
<!-- 子明细导入 -->
<subDetailUpload @changeEvent="changeMyString" ref="subDetailUpload" @refreshPageTables="getInspectionFormData" v-drag></subDetailUpload>
<!-- 打印标签 -->
<qr-code ref="qrCode"></qr-code>
<!-- 项目操作对话框 -->
<el-dialog
title="检验项目操作"
@close="refreshInspectionDetailList"
:close-on-click-modal="false"
v-drag
:visible.sync="itemOperationDialogFlag"
width="1200px"
custom-class="item-operation-dialog">
<!-- 查询区域 -->
<div class="search-container">
<el-form :inline="true" size="small">
<el-form-item label="项目编码">
<el-input
v-model="itemOperationQuery.itemNo"
placeholder="请输入项目编码"
clearable
prefix-icon="el-icon-search"
style="width: 160px">
</el-input>
</el-form-item>
<el-form-item label="项目名称">
<el-input
v-model="itemOperationQuery.itemDesc"
placeholder="请输入项目名称"
clearable
prefix-icon="el-icon-search"
style="width: 200px">
</el-input>
</el-form-item>
<el-button type="primary" icon="el-icon-search" size="small" @click="searchIQCItems">查询</el-button>
<el-button icon="el-icon-refresh" size="small" @click="resetItemQuery">重置</el-button>
</el-form>
</div>
<!-- 主内容区域 -->
<div class="item-operation-content">
<!-- 可选项目列表 -->
<div class="item-panel available-panel">
<div class="panel-header">
<i class="el-icon-menu"></i>
<span class="panel-title">可选项目列表</span>
<span class="item-count">{{ availableItemList.length }}</span>
</div>
<el-table
ref="availableItemTable"
:data="availableItemList"
@row-click="availableItemClickRow"
@selection-change="availableItemSelectionChange"
highlight-current-row
class="operation-table"
height="400"
border>
<el-table-column type="selection" width="45" align="center"></el-table-column>
<el-table-column prop="itemNo" label="项目编码" min-width="120"></el-table-column>
<el-table-column prop="itemDesc" label="项目名称" min-width="180" show-overflow-tooltip></el-table-column>
</el-table>
</div>
<!-- 操作按钮 -->
<div class="operation-buttons">
<el-tooltip content="添加选中项目" placement="left">
<el-button
type="primary"
icon="el-icon-d-arrow-right"
circle
@click="addInspectionItems"
:disabled="!availableItemSelections || availableItemSelections.length === 0">
</el-button>
</el-tooltip>
<el-tooltip content="移除选中项目" placement="right">
<el-button
type="danger"
icon="el-icon-d-arrow-left"
circle
@click="deleteInspectionItems"
:disabled="!selectedItemSelections || selectedItemSelections.length === 0">
</el-button>
</el-tooltip>
</div>
<!-- 已有项目列表 -->
<div class="item-panel selected-panel">
<div class="panel-header">
<i class="el-icon-tickets"></i>
<span class="panel-title">已有项目列表</span>
<span class="item-count">{{ selectedItemList.length }}</span>
</div>
<el-table
ref="selectedItemTable"
:data="selectedItemList"
@row-click="selectedItemClickRow"
@selection-change="selectedItemSelectionChange"
highlight-current-row
class="operation-table"
height="400"
border>
<el-table-column type="selection" width="45" align="center"></el-table-column>
<el-table-column prop="itemNo" label="项目编码" min-width="120"></el-table-column>
<el-table-column prop="itemDesc" label="项目名称" min-width="180" show-overflow-tooltip></el-table-column>
</el-table>
</div>
</div>
<!-- 底部按钮 -->
<div slot="footer" class="dialog-footer">
<el-button @click="itemOperationDialogFlag = false" size="small" style="width: 80px;">关闭</el-button>
</div>
</el-dialog>
<!-- 模板导入对话框 -->
<el-dialog
title="模板导入"
:close-on-click-modal="false"
v-drag
:visible.sync="templateImportDialogFlag"
width="900px"
custom-class="template-import-dialog">
<!-- 查询区域 -->
<div class="search-container">
<el-form :inline="true" size="small">
<el-form-item label="模板编码">
<el-input
v-model="templateQuery.templateId"
placeholder="请输入模板编码"
clearable
prefix-icon="el-icon-search"
style="width: 160px">
</el-input>
</el-form-item>
<el-form-item label="模板名称">
<el-input
v-model="templateQuery.templateDesc"
placeholder="请输入模板名称"
clearable
prefix-icon="el-icon-search"
style="width: 200px">
</el-input>
</el-form-item>
<el-button type="primary" icon="el-icon-search" size="small" @click="searchIQCTemplates">查询</el-button>
<el-button icon="el-icon-refresh-left" size="small" @click="resetTemplateQuery">重置</el-button>
</el-form>
</div>
<!-- 模板列表 -->
<div class="template-list-container">
<div class="panel-header">
<i class="el-icon-s-grid"></i>
<span class="panel-title">IQC检验模板</span>
<span class="item-count">({{ templateList.length }})</span>
</div>
<el-table
ref="templateTable"
:data="templateList"
@row-click="templateClickRow"
@selection-change="templateSelectionChange"
highlight-current-row
class="template-table"
height="450"
:header-cell-style="{background: '#f5f7fa', color: '#606266', fontWeight: '500'}">
<el-table-column type="selection" width="50" align="center"></el-table-column>
<el-table-column prop="templateId" label="模板编码" align="center" width="120"></el-table-column>
<el-table-column prop="templateName" label="模板名称" align="left" min-width="200" show-overflow-tooltip></el-table-column>
<el-table-column prop="itemCount" label="项目数量" align="center" width="100"></el-table-column>
</el-table>
</div>
<!-- 底部按钮 -->
<div slot="footer" class="dialog-footer">
<el-button
type="primary"
icon="el-icon-download"
@click="confirmImportTemplate"
:disabled="!templateSelections || templateSelections.length === 0"
:loading="importLoading"
size="small">
导入选中模板
</el-button>
<el-button @click="templateImportDialogFlag = false" size="small" style="width: 80px;">关闭</el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {
qcIQCInspectionSearch, // IQC检验记录查询
iqcDetailSearch, // iqc检验记录查询
selectIQCSubDetailedRecord, // 查询子明细记录
saveIQCDetailedRecord, // 新增明细信息
checkIQCIsSubmit, // 检查是否已提交
saveIQCSubDetailed, // 新增子明细信息
saveIQCSubmitResult, // 审核
iqcRecordDelete, // 删除检验记录
disposalMeasuresSearch, // 获取处置措施列表
iqcRecordOverLoad, // 重载检验单
getSiteAndBuByUserName,
getSiteAndBuByUserName2,
orderTypeSearch, // 获取采购类型
actionIQCInspection, // 开始检验
dataAcquisition, // 数据采集
getResponsibleOperatorList, // 获取责任人列表
getIQCItemObjectList, // 查询项目设备
dataAcquisitionByItem, // 根据项目数据采集
cancelApproval, // 取消审核
getUserRoleList, // 获取用户角色列表
getOperatorList,
// IQC检验项目操作和模板导入
getIQCItemList,
addIQCItemDetails,
deleteIQCItemDetails,
getIQCTemplateList,
importIQCTemplateItems
} from "@/api/qc/qc.js"
import {getTableDefaultListLanguage, getTableUserListLanguage} from "@/api/table.js"
import Chooselist from '@/views/modules/common/Chooselist_eam'
import {getInspectionFile} from '@/api/eam/eam_object_list.js'
import { searchQcSopFileList, downloadSopFile } from '@/api/qc/qc.js'
import {userFavoriteList, saveUserFavorite, removeUserFavorite} from '@/api/userFavorite.js'
import {qcPrint} from '@/api/qc/qcPrint.js'
import excel from "@/utils/excel-util.js"
import qcFAIUploadFile from "./qc_FAI_upload_file"
import comQcItemImageUploadFile from "./com_qc_itemImage_upload_file"
import subDetailUpload from "./sub_detail_upload"
import QrCode from "../common/QrCode.vue";
import IqcFileTable from "./IQCFileTable.vue";
export default {
components: {
IqcFileTable,
QrCode,
Chooselist,
qcFAIUploadFile,
comQcItemImageUploadFile,
subDetailUpload
},
computed: {
templateTableData () {
let start = (this.pageIndex2 - 1) * this.pageSize2
let end = start + this.pageSize2
if (end > this.tableData.length){
end = this.tableData.length
}
return this.tableData.slice(start,end)
},
// 导出字段映射
exportFields () {
let fields = {}
// 添加固定的状态列
fields['异常'] = 'defectTrackingFlag'
fields['状态'] = 'state'
// 添加动态列
this.columnList1.forEach(item => {
fields[item.columnLabel] = item.columnProp
})
return fields
}
},
watch: {
detailData: {
deep: true,
handler: function (newV, oldV) {
this.detailData.notPassQty = this.detailData.samplingQty - this.detailData.passQty
if (this.detailData.inspectionResult === '不合格') {
if (this.detailData.disposalMeasures === '让步接收') {
this.detailData.batchQualifiedQty = this.detailData.rollQty
} else if (this.detailData.disposalMeasures === '返工返修' || this.detailData.disposalMeasures === '拒收退回') {
this.detailData.batchQualifiedQty = 0
} else if (this.detailData.disposalMeasures === '挑选使用') {
this.detailData.batchQualifiedQty = this.detailData.rollQty - this.detailData.notPassQty
}
} else if (this.detailData.inspectionResult === '合格'){
this.detailData.batchQualifiedQty = this.detailData.rollQty
}
}
},
detailList: {
deep: true,
handler: function (newV, oldV) {
let num2 = 0
for (let i = 0; i < this.detailList.length; i++) {
if (this.detailList[i].itemResult === 'N') {
num2++
}
}
this.detailData.unqualifiedQty = num2
}
},
'detailData.rollCount' () {
this.$nextTick(() => {
this.enforcePassQtyNotExceedRollCount()
this.enforceSamplingQtyNotExceedRollCount()
})
}
},
data () {
return {
searchExpanded: false,
loadFlag: false,
transferLoadFlag: false,
// 是否收藏
favorite: false,
// 导出 start
exportData: [],
exportName: "IQC检验录入" + this.dayjs().format('YYYYMMDDHHmmss'),
exportHeader: ["IQC检验录入"],
exportFooter: [],
exportList: [],
// 导出 end
submitData: {
site: '',
inspectionNo: '',
isQualified: '',
isQualifiedChinese: '',
submitList: [],
updateBy: this.$store.state.user.name,
},
tagNo:'',
searchData: {
site: '',
userName: this.$store.state.user.name,
inspectionNo: '',
inspectionTypeNo:'105',
isQualified: '',
buNo: '',
startDate: '',
endDate: '',
startDate2: '',
endDate2: '',
partNo:'',
partDesc:'',
cinvSourceCode:'',
sku:'',
state: '',
inspectionResult: '',
supplierDesc: '',
disposalMeasures: '',
inspectorName: '',
page: 1,
limit: 10,
poOrderNo: '',
poItemNo: '',
orderType: '',
states: ['未开始','待检验'],
submissionType: '',
invdefinetype: '',
documentNo: ''
},
pageIndex: 1,
pageSize: 20,
totalPage: 0,
pageIndex2: 1,
pageSize2: 20,
totalPage2: 0,
height: 200,
dataList: [],
dataListSelections: [],
submitFlag: false,
modalData: {
flag:'',
functionType:'',
site: '',
bu: '',
inspectionNo:'',
workOrderNumber: '',
workOrderQuantity: '',
reelNumber: '',
partNo: '',
cinvSourceCode:'',
rollingQuantity: '',
sampleQuantity: '',
detailCodeNo:'',
detailCodeDesc:'',
inspectionTypeNo:'105',
inspectionTypeName:'IQC',
inspectorNo:'',
inspectorName:'',
isQualified:'',
isQualifiedChinese:'',
invdefinetype: '',
},
// 展示列集
columnList1: [
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table1BuDesc',
tableId: "301006Table1",
tableName: "IQC检验记录表",
columnProp: 'buDesc',
headerAlign: "center",
align: "center",
columnLabel: 'BU',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 100,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table1InspectionNo',
tableId: "301006Table1",
tableName: "IQC检验记录表",
columnProp: 'inspectionNo',
headerAlign: "center",
align: "center",
columnLabel: '检验单号',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 120,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table1InspectionResult',
tableId: "301006Table1",
tableName: "IQC检验记录表",
columnProp: 'inspectionResult',
headerAlign: "center",
align: "center",
columnLabel: '检验结论',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 100,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table1DisposalMeasures',
tableId: "301006Table1",
tableName: "IQC检验记录表",
columnProp: 'disposalMeasures',
headerAlign: "center",
align: "center",
columnLabel: '处置措施',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 120,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table1TaskDate',
tableId: "301006Table1",
tableName: "IQC检验记录表",
columnProp: 'taskDate',
headerAlign: "center",
align: "center",
columnLabel: '送检日期',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 150,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table1InspectionCycle',
tableId: "301006Table1",
tableName: "IQC检验记录表",
columnProp: 'inspectionCycle',
headerAlign: "center",
align: "right",
columnLabel: '检验周期(h)',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 100,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table1RollNo',
tableId: "301006Table1",
tableName: "IQC检验记录表",
columnProp: 'rollNo',
headerAlign: "center",
align: "center",
columnLabel: '标签条码',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 120,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table1PartNo',
tableId: "301006Table1",
tableName: "IQC检验记录表",
columnProp: 'partNo',
headerAlign: "center",
align: "center",
columnLabel: '物料编码',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 120,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table1PartDesc',
tableId: "301006Table1",
tableName: "IQC检验记录表",
columnProp: 'partDesc',
headerAlign: "center",
align: "left",
columnLabel: '物料名称',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 300,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table1Spec',
tableId: "301006Table1",
tableName: "IQC检验记录表",
columnProp: 'spec',
headerAlign: "center",
align: "left",
columnLabel: '规格型号',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 120,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table1Invdefinetype',
tableId: "301006Table1",
tableName: "IPQC检验记录表",
columnProp: 'invdefinetype',
headerAlign: "center",
align: "left",
columnLabel: '物料类别',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 120,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table1Umid',
tableId: "301006Table1",
tableName: "IQC检验记录表",
columnProp: 'umName',
headerAlign: "center",
align: "center",
columnLabel: '计量单位',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 100,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table1RollQty',
tableId: "301006Table1",
tableName: "IQC检验记录表",
columnProp: 'rollQty',
headerAlign: "center",
align: "right",
columnLabel: '到货数量',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 100,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table1Dhjs',
tableId: "301006Table1",
tableName: "IQC检验记录表",
columnProp: 'dhjs',
headerAlign: "center",
align: "right",
columnLabel: '到货卷数',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 100,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table1RollCount',
tableId: "301006Table1",
tableName: "IQC检验记录表",
columnProp: 'rollCount',
headerAlign: "center",
align: "right",
columnLabel: '送检数量',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 100,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table1SamplingQty',
tableId: "301006Table1",
tableName: "IQC检验记录表",
columnProp: 'samplingQty',
headerAlign: "center",
align: "right",
columnLabel: '抽样数量',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 100,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table1DocumentNo',
tableId: "301006Table1",
tableName: "IQC检验记录表",
columnProp: 'documentNo',
headerAlign: "center",
align: "left",
columnLabel: '通知单号',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 150,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table1PoOrderNo',
tableId: "301006Table1",
tableName: "IQC检验记录表",
columnProp: 'poOrderNo',
headerAlign: "center",
align: "left",
columnLabel: '单据号',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 180,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table1PoItemNo',
tableId: "301006Table1",
tableName: "IQC检验记录表",
columnProp: 'poItemNo',
headerAlign: "center",
align: "right",
columnLabel: '单据行号',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 160,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table1OrderType',
tableId: "301006Table1",
tableName: "IQC检验记录表",
columnProp: 'orderType',
headerAlign: "center",
align: "left",
columnLabel: '采购类型',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 100,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table1SubmissionType',
tableId: "301006Table1",
tableName: "IQC检验记录表",
columnProp: 'submissionType',
headerAlign: "center",
align: "center",
columnLabel: '送检类型',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 100,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table1SupplierDesc',
tableId: "301006Table1",
tableName: "IQC检验记录表",
columnProp: 'supplierDesc',
headerAlign: "center",
align: "left",
columnLabel: '供应商',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 200,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table1InspectionRemark',
tableId: "301006Table1",
tableName: "IQC检验记录表",
columnProp: 'inspectionRemark',
headerAlign: "center",
align: "left",
columnLabel: '质检备注',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 200,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table1DisposalRemark',
tableId: "301006Table1",
tableName: "IQC检验记录表",
columnProp: 'disposalRemark',
headerAlign: "center",
align: "left",
columnLabel: '处置说明',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 200,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table1ActionDate',
tableId: "301006Table1",
tableName: "IQC检验记录表",
columnProp: 'actionDate',
headerAlign: "center",
align: "center",
columnLabel: '开始检验时间',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 170,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table1InspectorDate',
tableId: "301006Table1",
tableName: "IQC检验记录表",
columnProp: 'inspectorDate',
headerAlign: "center",
align: "center",
columnLabel: '检验时间',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 170,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table1InspectorName',
tableId: "301006Table1",
tableName: "IQC检验记录表",
columnProp: 'inspectorName',
headerAlign: "center",
align: "center",
columnLabel: '质检员',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 100,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table1SubmissionRemark',
tableId: "301006Table1",
tableName: "IQC检验记录表",
columnProp: 'submissionRemark',
headerAlign: "center",
align: "left",
columnLabel: '送检备注',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 200,
},
],
detailColumnList: [
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table2ItemNo',
tableId: "301006Table2",
tableName: "检验单明细表",
columnProp: 'itemNo',
headerAlign: "center",
align: "center",
columnLabel: '检验项目编码',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 120,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table2ItemDesc',
tableId: "301006Table2",
tableName: "检验单明细表",
columnProp: 'itemDesc',
headerAlign: "center",
align: "left",
columnLabel: '检验项目名称',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 150,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table2SamplingLevelDesc',
tableId: "301006Table2",
tableName: "检验单明细表",
columnProp: 'samplingLevelDesc',
headerAlign: "center",
align: "center",
columnLabel: '检验水平',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 120,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table2SamplingProgrammeDesc',
tableId: "301006Table2",
tableName: "检验单明细表",
columnProp: 'samplingProgrammeDesc',
headerAlign: "center",
align: "center",
columnLabel: '检验方案',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 120,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table2MethodName',
tableId: "301006Table2",
tableName: "检验单明细表",
columnProp: 'methodName',
headerAlign: "center",
align: "left",
columnLabel: '检验方法',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 120,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table2MethodRemark',
tableId: "301006Table2",
tableName: "检验单明细表",
columnProp: 'methodRemark',
headerAlign: "center",
align: "left",
columnLabel: '检验方法说明',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 200,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table2ObjectDesc',
tableId: "301006Table2",
tableName: "检验单明细表",
columnProp: 'objectDesc',
headerAlign: "center",
align: "center",
columnLabel: '检测仪器',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 120,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table2Aql',
tableId: "301006Table2",
tableName: "检验单明细表",
columnProp: 'aql',
headerAlign: "center",
align: "right",
columnLabel: 'AQL',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 100,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table2Ac',
tableId: "301006Table2",
tableName: "检验单明细表",
columnProp: 'ac',
headerAlign: "center",
align: "right",
columnLabel: 'AC',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 100,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table2Re',
tableId: "301006Table2",
tableName: "检验单明细表",
columnProp: 're',
headerAlign: "center",
align: "right",
columnLabel: 'RE',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 100,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table2DefaultValue',
tableId: "301006Table2",
tableName: "检验单明细表",
columnProp: 'defaultValue',
headerAlign: "center",
align: "center",
columnLabel: '标准值',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 100,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table2MaxValue',
tableId: "301006Table2",
tableName: "检验单明细表",
columnProp: 'maxValue',
headerAlign: "center",
align: "right",
columnLabel: '最大值',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 100,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table2MinValue',
tableId: "301006Table2",
tableName: "检验单明细表",
columnProp: 'minValue',
headerAlign: "center",
align: "right",
columnLabel: '最小值',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 100,
},
{
userId: this.$store.state.user.name,
functionId: 301006,
serialNumber: '301006Table2ValueType',
tableId: "301006Table2",
tableName: "检验单明细表",
columnProp: 'valueType',
headerAlign: "center",
align: "center",
columnLabel: '检测值类型',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 100,
},
],
fileColumnList: [
{
columnProp: 'fileName',
headerAlign: "center",
align: "center",
columnLabel: '文件名称',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
},
{
columnProp: 'createdBy',
headerAlign: "center",
align: 'center',
columnLabel: '上传人',
columnHidden: false,
columnImage: false,
columnSortable: true,
sortLv: 0,
status: true,
fixed: false
},
{
columnProp: 'createDate',
headerAlign: "center",
align: 'center',
columnLabel: '上传时间',
columnHidden: false,
columnImage: false,
columnSortable: true,
sortLv: 0,
status: true,
fixed: false
},
{
columnProp: 'orderRef3',
headerAlign: "center",
align: 'center',
columnLabel: '备注',
columnHidden: false,
columnImage: false,
columnSortable: true,
sortLv: 0,
status: true,
fixed: false
},
],
detailData: {
site: '',
buNo: '',
inspectionNo: '',
partNo: '',
partDesc: '',
cinvSourceCode:'',
sku:'',
rollQty: '',
samplingQty: '',
noBatchQualifiedQty: 0,
defectTrackingFlag: '',
unqualifiedQty: 0,
unqualifiedQuantity: '',
disposalMeasures: '',
disposalRemark: '',
inspectionResult: '',
inspectorNo: '',
inspectionRemark: '',
submitFlag: '',
supplierNo: '',
umId: '',
umName: '',
rollCount: '',
poOrderNo: '',
poItemNo: '',
operator: '',
operatorName: '',
responsiblePerson: '',
responsiblePersonName: '',
invdefinetype: '',
state: '',
passQty: '',
notPassQty: '',
batchQualifiedQty: 0,
spec: ''
},
detailInformationFlag: false,
detailList: [],
saveInformationData: {
site: '',
buNo: '',
cinvSourceCode:'',
inspectionNo:'',
disposalMeasures: '',
disposalRemark: '',
inspectorNo: '',
inspectionRemark: '',
itemList:[],
unqualifiedQty: '',
rollCount: '',
samplingQty: '',
poOrderNo: '',
poItemNo: '',
partNo: '',
partDesc: '',
sku: '',
operator: '',
operatorName: '',
responsiblePerson: '',
responsiblePersonName: '',
subDetailList: [],
type: '',
passQty: '',
notPassQty: '',
batchQualifiedQty: ''
},
// 子明细数据对象
tableData: [],
checkedDetail: [],
subDetailFlag: false,
subDetailData: {
site: '',
buNo: '',
inspectionNo: '',
itemNo: '',
itemDesc: '',
defaultValue: '',
maxValue: '',
minValue: '',
valueTypeDb: '',
subDetailValues:[],
page: 1,
limit: 10,
},
options: [],
fileFlag: false,
fileContentList: [],
fileActiveTab: 'qcFile',
sopFileList: [],
sopFileLoading: false,
currentFileRow: null,
IQCSelections: [],
batchHandleAddModalFlag: false,
batchAddData: {
samplingLocation: '',
samplingLocationB: '',
samplingNumber: ''
},
disposalMeasuresOptions: [],
orderTypeList: [],
userBuList: [],
buList: [],
authSearch: false,
authCheck: false,
authCancelCheck: false,
authOverLoad: false,
authDelete: false,
authDetail: false,
authFile: false,
menuId: this.$route.meta.menuId,
roleList: [],
operatorList: [],
operatorData: {
flag: '',
site: '',
bu: '',
adminID: '',
adminName: '',
roleName: '',
roleId: '',
userName: this.$store.state.user.name
},
operatorModelFlag: false,
dataListSelections2: [],
operatorDetailList: [
{
columnProp: 'adminID',
headerAlign: "center",
align: "center",
columnLabel: '用户账号',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
},
{
columnProp: 'adminName',
headerAlign: "center",
align: "center",
columnLabel: '用户名称',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
},
{
columnProp: 'email',
headerAlign: "center",
align: "center",
columnLabel: '邮箱',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
},
{
columnProp: 'phone',
headerAlign: "center",
align: "center",
columnLabel: '手机号',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
},
],
acquisitionList: [],
ItemObjectModelFlag: false,
itemObjectList: [],
itemObjectColumnList: [
{
columnProp: 'itemNo',
headerAlign: "center",
align: "center",
columnLabel: '项目编码',
columnHidden: false,
columnImage: false,
status: true,
},
{
columnProp: 'itemDesc',
headerAlign: "center",
align: "left",
columnLabel: '项目名称',
columnHidden: false,
columnImage: false,
status: true,
},
],
actionData: {
site: '',
buNo: '',
inspectionNo: ''
},
fileLoading: false,
subDetailLoading: false,
searchLoading: false,
// IQC项目操作相关
itemOperationDialogFlag: false,
itemOperationQuery: {
itemNo: '',
itemDesc: '',
},
availableItemList: [],
selectedItemList: [],
availableItemSelections: [],
selectedItemSelections: [],
// IQC模板导入相关
templateImportDialogFlag: false,
templateQuery: {
templateId: '',
templateDesc: '',
},
templateList: [],
templateSelections: [],
importLoading: false
}
},
mounted () {
this.calculateTableHeight();
window.addEventListener('resize', this.calculateTableHeight);
},
beforeDestroy() {
window.removeEventListener('resize', this.calculateTableHeight);
},
created () {
// 按钮控制
this.getButtonAuthData()
// 获取用户的 site 和 bu
this.getSiteAndBuByUserName()
// 获取用户的 site 和 bu
this.getSiteAndBuByUserName2()
this.favoriteIsOk()
this.disposalMeasuresSearch()
// 动态列
this.getTableUserColumn(this.$route.meta.menuId+'table1',1)
this.getTableUserColumn(this.$route.meta.menuId+'table2',2)
if (!this.authSearch) {
// 获取数据列表
this.getDataList()
}
// 获取用户角色
this.getUserRoleList()
},
methods: {
// 切换搜索框展开/收起
toggleSearchExpand() {
this.searchExpanded = !this.searchExpanded;
this.calculateTableHeight();
},
// 计算表格高度
calculateTableHeight() {
this.$nextTick(() => {
const windowHeight = window.innerHeight;
const headerHeight = this.searchExpanded ? 412 : 186;
this.height = windowHeight - headerHeight - 65;
});
},
// 重置搜索条件
resetSearch() {
this.searchData = {
site: '',
userName: this.$store.state.user.name,
inspectionNo: '',
inspectionTypeNo:'105',
isQualified: '',
buNo: '',
startDate: '',
endDate: '',
startDate2: '',
endDate2: '',
partNo:'',
partDesc:'',
cinvSourceCode:'',
sku:'',
state: '',
inspectionResult: '',
supplierDesc: '',
disposalMeasures: '',
inspectorName: '',
page: 1,
limit: 10,
poOrderNo: '',
poItemNo: '',
orderType: '',
states: ['未开始','待检验'],
submissionType: '',
invdefinetype: '',
documentNo: ''
}
},
// 获取用户的bu
getSiteAndBuByUserName2 () {
let tempData = {
username: this.$store.state.user.name,
}
getSiteAndBuByUserName2(tempData).then(({data}) => {
if (data.code === 0) {
this.buList = data.rows
}
})
},
// 批量打印标签
printList () {
if (this.IQCSelections.length === 0) {
this.$message.warning('请勾选要打印的检验单!')
return
}
const inspectionNos = this.$refs.qrCode.init(this.IQCSelections.map(item => item.inspectionNo))
for (let i = 0; i < inspectionNos.length; i++) {
this.IQCSelections[i].qrCode = inspectionNos[i]
}
qcPrint(this.IQCSelections)
},
rollCountChange () {
const rollQty = Number(this.detailData.rollQty)
const rollCount = this.detailData.rollCount
if (rollCount != null) {
const rc = Number(rollCount)
if (!isNaN(rollQty) && !isNaN(rc) && rc > rollQty) {
this.$set(this.detailData, 'rollCount', 0)
this.$message.warning('送检数量不能大于到货数量!')
}
}
this.$nextTick(() => {
this.enforcePassQtyNotExceedRollCount()
this.enforceSamplingQtyNotExceedRollCount()
})
},
samplingQtyChange () {
this.enforceSamplingQtyNotExceedRollCount()
},
enforceSamplingQtyNotExceedRollCount () {
if (this.detailData.submitFlag === 'Y') return
const samplingQty = this.detailData.samplingQty
if (samplingQty == null) return
const rollCount = this.detailData.rollCount
const rc = Number(rollCount)
const sq = Number(samplingQty)
if (isNaN(sq)) return
if (isNaN(rc)) return
if (sq > rc) {
this.$set(this.detailData, 'samplingQty', 0)
this.$message.warning('抽样数量不能大于送检数量!')
}
},
passQtyChange () {
this.enforcePassQtyNotExceedRollCount()
},
enforcePassQtyNotExceedRollCount () {
if (this.detailData.submitFlag === 'Y') return
const passQty = this.detailData.passQty
if (passQty == null) return
const rollCount = this.detailData.rollCount
const rc = Number(rollCount)
const pq = Number(passQty)
if (isNaN(pq)) return
if (isNaN(rc)) return
if (pq > rc) {
this.$set(this.detailData, 'passQty', 0)
this.$message.warning('合格数量不能大于送检数量!')
}
},
noBatchQualifiedQtyChange(){
if (this.detailData.noBatchQualifiedQty > this.detailData.rollQty) {
// 恢复原值
this.detailData.noBatchQualifiedQty = this.detailData.rollQty - this.detailData.batchQualifiedQty
this.$message.warning('批次不合格数量不能大于到货数量!')
return false
}
// 给合格数量赋值
let newValue = this.detailData.rollQty - this.detailData.noBatchQualifiedQty
this.$set(this.detailData, 'batchQualifiedQty', newValue)
},
// 数据采集
dataAcquisition () {
this.loadFlag = true
let tempDate = {
site: this.detailData.site,
buNo: this.detailData.buNo,
inspectionNo: this.detailData.inspectionNo,
flag: 'iqc'
}
dataAcquisition(tempDate).then(({data}) => {
if (data.code === 0) {
// this.acquisitionList = data.rows
this.changeMyString(data.rows)
this.$message({
message: '数据采集成功',
type: 'success',
duration: 1500
})
} else {
this.$message({
message: data.msg,
type: 'warning',
duration: 1500
})
}
this.loadFlag = false
}).catch(()=>{
this.loadFlag = false
})
},
// 根据项目数据采集
dataAcquisitionByItem (row) {
this.loadFlag = true
let tempDate = {
site: row.site,
buNo: row.buNo,
inspectionNo: row.inspectionNo,
templateId: row.templateId,
itemNo: row.itemNo,
flag: 'iqc'
}
dataAcquisitionByItem(tempDate).then(({data}) => {
if (data.code === 0) {
this.changeMyString(data.rows)
this.$message({
message: '数据采集成功',
type: 'success',
duration: 1500
})
} else {
this.$message({
message: data.msg,
type: 'warning',
duration: 1500
})
}
this.loadFlag = false
}).catch(()=>{
this.loadFlag = false
})
},
// 获取用户角色
getUserRoleList () {
getUserRoleList().then(({data}) => {
if (data.code === 0) {
this.roleList = data.rows
} else {
this.roleList = []
}
})
},
// 获取协同人员列表
getOperatorList () {
this.operatorData.flag = '1'
this.operatorData.bu = this.detailData.site + '_' + this.detailData.buNo
if (this.roleList.length > 0) {
let filterList = this.roleList.filter(item => item.roleName === '机修人员')
if (filterList.length > 0) {
this.operatorData.roleId = filterList[0].roleId
} else {
this.operatorData.roleId = this.roleList[0].roleId
}
} else {
this.operatorData.roleId = ''
}
// 先清空缓存选中
this.$nextTick(() => this.$refs.operatorTable.clearSelection())
// 拿到选中的人员编号
let tempDataList = (this.detailData.operator == null ? '' : this.detailData.operator).split(';')
getOperatorList(this.operatorData).then(({data}) => {
if (data && data.code === 0) {
this.operatorList = data.rows
this.operatorList.forEach(val => {
// 回显选中
if (tempDataList.includes(val.adminID)) {
this.$nextTick(() => this.$refs.operatorTable.toggleRowSelection(val, true))
}
})
this.operatorModelFlag = true
} else {
this.$message.error(data.msg)
}
})
},
// 获取责任人员列表
getResponsiblePersonList () {
this.operatorData.flag = '2'
this.operatorData.bu = this.detailData.site + '_' + this.detailData.buNo
// 先清空缓存选中
this.$nextTick(() => this.$refs.operatorTable.clearSelection())
// 拿到选中的人员编号
let tempDataList = (this.detailData.responsiblePerson == null ? '' : this.detailData.responsiblePerson).split(';')
getResponsibleOperatorList(this.operatorData).then(({data}) => {
if (data && data.code === 0) {
this.operatorList = data.rows
this.operatorList.forEach(val => {
// 回显选中
if (tempDataList.includes(val.adminID)) {
this.$nextTick(() => this.$refs.operatorTable.toggleRowSelection(val, true))
}
})
this.operatorModelFlag = true
} else {
this.$message.error(data.msg)
}
})
},
// 查询机修人员列表
getOperatorList2 () {
if (this.operatorData.flag === '1') {
// 拿到选中的人员编号
let tempDataList = (this.detailData.operator == null ? '' : this.detailData.operator).split(';')
getOperatorList(this.operatorData).then(({data}) => {
if (data && data.code === 0) {
this.operatorList = data.rows
this.operatorList.forEach(val => {
// 回显选中的部门
if (tempDataList.includes(val.adminID)) {
this.$nextTick(() => this.$refs.operatorTable.toggleRowSelection(val, true))
}
})
} else {
this.operatorList = []
}
})
} else {
// 拿到选中的人员编号
let tempDataList = (this.detailData.responsiblePerson == null ? '' : this.detailData.responsiblePerson).split(';')
getResponsibleOperatorList(this.operatorData).then(({data}) => {
if (data && data.code === 0) {
this.operatorList = data.rows
this.operatorList.forEach(val => {
// 回显选中的部门
if (tempDataList.includes(val.adminID)) {
this.$nextTick(() => this.$refs.operatorTable.toggleRowSelection(val, true))
}
})
} else {
this.operatorList = []
}
})
}
},
// 点击行选中复选框
operatorClickRow (row) {
this.$refs.operatorTable.toggleRowSelection(row)
},
// 多选
selectionChangeHandle2 (val) {
this.dataListSelections2 = val
},
// 确认多选协同人员
confirmOperator () {
if (this.dataListSelections2.length === 0) {
this.$message.warning('请勾选人员!')
return
}
if (this.operatorData.flag === '1') {
for (let i = 0; i < this.dataListSelections2.length; i++) {
if (!this.detailData.operator.split(';').includes(this.dataListSelections2[i].adminID)) {
this.detailData.operatorName = this.detailData.operatorName + ";" + this.dataListSelections2[i].adminName
this.detailData.operator = this.detailData.operator + ";" + this.dataListSelections2[i].adminID
}
}
if (this.detailData.operator.charAt(0) === ';') {
this.detailData.operator = this.detailData.operator.substring(1)
this.detailData.operatorName = this.detailData.operatorName.substring(1)
}
} else {
for (let i = 0; i < this.dataListSelections2.length; i++) {
if (!this.detailData.responsiblePerson.split(';').includes(this.dataListSelections2[i].adminID)) {
this.detailData.responsiblePersonName = this.detailData.responsiblePersonName + ";" + this.dataListSelections2[i].adminName
this.detailData.responsiblePerson = this.detailData.responsiblePerson + ";" + this.dataListSelections2[i].adminID
}
}
if (this.detailData.responsiblePerson.charAt(0) === ';') {
this.detailData.responsiblePerson = this.detailData.responsiblePerson.substring(1)
this.detailData.responsiblePersonName = this.detailData.responsiblePersonName.substring(1)
}
}
this.operatorData = {
flag: '',
site: '',
bu: '',
adminID: '',
adminName: '',
roleName: '',
roleId: '',
userName: this.$store.state.user.name
}
this.operatorModelFlag = false
},
// 获取用户的bu
getSiteAndBuByUserName () {
let tempData = {
username: this.$store.state.user.name,
}
getSiteAndBuByUserName(tempData).then(({data}) => {
if (data.code === 0) {
this.userBuList = data.rows
}
})
},
// 子明细导入
subDetailUpload () {
let currentData = {
flag: 'IQC',
site: this.detailData.site,
buNo: this.detailData.buNo,
inspectionNo: this.detailData.inspectionNo
}
//打开组件 去做新增业务
this.$nextTick(() => {
this.$refs.subDetailUpload.init(currentData)
})
},
// 获取处置措施列表
disposalMeasuresSearch () {
let tempData = {
inspectionTypeNo: '105'
}
disposalMeasuresSearch(tempData).then(({data}) => {
if (data.code === 0) {
this.disposalMeasuresOptions = data.rows
}
})
},
// 获取采购类型列表
orderTypeSearch () {
orderTypeSearch().then(({data}) => {
if (data.code === 0) {
this.orderTypeList = data.rows
}
})
},
// 单机选中
IQCClickRow (row) {
this.$refs.IQCTable.toggleRowSelection(row)
},
// 复选
selectionIQC (val) {
this.IQCSelections = val
},
// 刷新派设备文档的列表
getFileContentData (row) {
this.currentFileRow = row
this.fileActiveTab = 'qcFile'
let currentData = {
orderRef1: row.site,
orderRef2: row.inspectionNo,
orderRef4: row.buNo,
partNo: row.partNo
}
this.fileLoading = true
getInspectionFile(currentData).then(({data}) => {
//区分请求成功和失败的状况
if (data && data.code === 0) {
this.fileContentList = data.rows
} else {
this.fileContentList = []
}
this.fileLoading = false
}).catch(()=>{
this.fileLoading = false
})
// 同时获取SOP文件列表
this.getSopFileList(row)
this.fileFlag = true
},
// 获取SOP文件列表(IQC只传site和partNo)
getSopFileList(row) {
this.sopFileLoading = true
this.sopFileList = []
searchQcSopFileList({
site: row.site,
partNo: row.partNo || ''
}).then(({data}) => {
if (data && data.code === 0) {
this.sopFileList = data.rows || []
} else {
this.sopFileList = []
}
this.sopFileLoading = false
}).catch(() => {
this.sopFileList = []
this.sopFileLoading = false
})
},
// 预览SOP文件
previewSopFile(row) {
if (!row.sopUrl) {
this.$message.warning('该文件暂无预览路径')
return
}
const fileName = row.sopName || row.sopUrl
downloadSopFile(row.sopUrl).then(({ data }) => {
this.$filePreview.previewFile(data, fileName).then(result => {
if (result.message) {
this.$message.success(result.message)
}
}).catch(error => {
this.$message.error('文件预览失败:' + (error.message || '未知错误'))
})
}).catch(() => {
this.$message.error('文件下载失败,请稍后重试')
})
},
// 新增文件的modal
addUploadFileModal () {
let currentData = {
titleCon: 'IQC文件上传',
site: this.detailData.site,
buNo: this.detailData.buNo,
createBy: this.$store.state.user.name,
inspectionNo: this.detailData.inspectionNo,
remark: '',
folder: 'qcIQC',
}
//打开组件 去做新增业务
this.$nextTick(() => {
this.$refs.qcFAIUploadFile.init(currentData)
})
},
// 上传项目图片
uploadImageModal (row) {
// 打开上传图片前先应用当前数据,防止上传完成刷新表单后导致未保存的数据丢失
if (this.detailData.state === '待检验') {
this.Transfer('1')
}
let currentData = {
site: this.detailData.site,
buNo: this.detailData.buNo,
createBy: this.$store.state.user.name,
inspectionNo: this.detailData.inspectionNo,
itemNo: row.itemNo,
folder: 'IQCItemImageFile'
}
//打开组件 去做新增业务
this.$nextTick(() => {
this.$refs.comQcItemImageUploadFile.init(currentData)
})
},
// 获取基础数据列表S
getBaseList (val,type) {
this.tagNo = val
this.$nextTick(() => {
let strVal = ''
if (val === 1037) {
strVal = this.modalData.detailCodeNo
this.$refs.baseList.init(val, strVal)
}
if (val === 1040) {
strVal = this.modalData.inspectorNo
this.$refs.baseList.init(val, strVal)
}
})
},
// 列表方法的回调
getBaseData (val) {
if (this.tagNo === 1037) {
this.modalData.detailCodeNo = val.code_no
this.modalData.detailCodeDesc = val.code_desc
}
if (this.tagNo === 1040) {
this.modalData.inspectorNo = val.inspector_no
this.modalData.inspectorName = val.inspector_name
}
},
// 获取主信息数据列表
getDataList () {
this.searchLoading = true
this.searchData.limit = this.pageSize
this.searchData.page = this.pageIndex
qcIQCInspectionSearch(this.searchData).then(({data}) => {
if (data.code === 0) {
this.dataList = data.page.list
this.pageIndex = data.page.currPage
this.pageSize = data.page.pageSize
this.totalPage = data.page.totalCount
this.searchLoading = false
} else {
this.searchLoading = false
}
}).catch(()=>{
this.searchLoading = false
})
},
// 每页数
sizeChangeHandle (val) {
this.pageSize = val
this.pageIndex = 1
this.getDataList()
},
// 当前页
currentChangeHandle (val) {
this.pageIndex = val
this.getDataList()
},
// 导出excel - 获取所有数据
async createExportData () {
this.searchData.limit = -1
this.searchData.page = 1
const { data } = await qcIQCInspectionSearch(this.searchData)
return data.page.list || []
},
startDownload () {
this._exportLoading = this.$loading({
lock: true,
text: '正在导出数据,请稍候...',
spinner: 'el-icon-loading',
background: 'rgba(0, 0, 0, 0.7)'
})
},
finishDownload () {
if (this._exportLoading) {
this._exportLoading.close()
this._exportLoading = null
}
},
// 子明细每页数
sizeChangeHandle2 (val) {
this.pageSize2 = val
},
// 子明细当前页
currentChangeHandle2 (val) {
this.pageIndex2 = val
},
// 多选
selectionChangeHandle (val) {
this.dataListSelections = val
},
async Transfer (type) {
if (type === '2') {
if (this.detailData.inspectionResult === '' || this.detailData.inspectionResult == null) {
this.$message.warning('请选择检验结论!')
return
}
if (this.detailData.inspectionResult === '不合格' && (this.detailData.disposalMeasures == null || this.detailData.disposalMeasures === '')) {
this.$message.warning('请选择处置措施!')
return
}
if (this.detailList.length > 0 && this.detailData.inspectionResult === '不合格') {
const flag = this.detailList.some(item => item.itemResult === 'N')
if (!flag) {
this.$message.warning('请选择不合格项目!')
return
}
}
if (this.detailData.inspectionResult !== '不合格') {
this.detailData.disposalMeasures = ''
this.detailData.disposalRemark = ''
}
}
this.saveDetailInformation(type)
},
// 新增明细信息
saveDetailInformation (type) {
this.saveInformationData.site = this.detailData.site
this.saveInformationData.buNo = this.detailData.buNo
this.saveInformationData.inspectionNo = this.detailData.inspectionNo
this.saveInformationData.disposalMeasures = this.detailData.disposalMeasures
this.saveInformationData.disposalRemark = this.detailData.disposalRemark
this.saveInformationData.inspectorNo = this.$store.state.user.name
this.saveInformationData.inspectionResult = this.detailData.inspectionResult
this.saveInformationData.inspectionRemark = this.detailData.inspectionRemark
this.saveInformationData.rollCount = this.detailData.rollCount
this.saveInformationData.samplingQty = this.detailData.samplingQty
this.saveInformationData.unqualifiedQty = this.detailData.unqualifiedQty
this.saveInformationData.poOrderNo = this.detailData.poOrderNo
this.saveInformationData.poItemNo = this.detailData.poItemNo
this.saveInformationData.partNo = this.detailData.partNo
this.saveInformationData.partDesc = this.detailData.partDesc
this.saveInformationData.sku = this.detailData.sku
this.saveInformationData.operator = this.detailData.operator
this.saveInformationData.responsiblePerson = this.detailData.responsiblePerson
this.saveInformationData.itemList = JSON.parse(JSON.stringify(this.detailList))
this.saveInformationData.type = type
this.saveInformationData.passQty = this.detailData.passQty == null ? 0 : this.detailData.passQty
this.saveInformationData.notPassQty = this.detailData.notPassQty == null ? 0 : this.detailData.notPassQty
this.saveInformationData.batchQualifiedQty = this.detailData.batchQualifiedQty == null ? 0 : this.detailData.batchQualifiedQty
this.transferLoadFlag = true
// this.saveInformationData.subDetailList = this.acquisitionList
saveIQCDetailedRecord(this.saveInformationData).then(({data}) => {
if (data && data.code === 0) {
this.getDataList()
// 应用时(type=1)不关闭对话框,只刷新数据
if (type === '1') {
this.getInspectionFormData()
} else {
this.detailInformationFlag = false
}
this.$message.success('操作成功')
} else {
this.$message.error(data.msg)
}
this.transferLoadFlag = false
}).catch(()=>{
this.transferLoadFlag = false
})
},
// 开始检验
actionModal (row) {
this.actionData = {
site: row.site,
buNo: row.buNo,
inspectionNo: row.inspectionNo
}
getIQCItemObjectList(this.actionData).then(({data}) => {
if (data && data.code === 0) {
if (data.rows.length === 0) {
this.actionModal2()
} else {
this.itemObjectList = data.rows
this.ItemObjectModelFlag = true
}
} else {
this.$message.error(data.msg)
}
})
},
// 开始检验
actionModal2 () {
this.$confirm(`确认开始检验?`, '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
let tempData = {
site: this.actionData.site,
buNo: this.actionData.buNo,
inspectionNo: this.actionData.inspectionNo,
actionBy: this.$store.state.user.name,
state: '待检验',
equipmentList: this.itemObjectList
}
actionIQCInspection(tempData).then(({data}) => {
if (data && data.code === 0) {
this.getDataList()
this.$message.success('操作成功')
this.ItemObjectModelFlag = false
} else {
this.$message.error(data.msg)
}
})
})
},
// 明细记录信息查询
detailModal (row) {
this.detailData.site = row.site
this.detailData.buNo = row.buNo
this.detailData.inspectionNo = row.inspectionNo
this.detailData.partNo = row.partNo
this.detailData.partDesc = row.partDesc
this.detailData.cinvSourceCode = row.cinvSourceCode
this.detailData.sku = row.sku
this.detailData.defectTrackingFlag = row.defectTrackingFlag
this.detailData.rollQty = row.rollQty
this.detailData.samplingQty = row.samplingQty
this.detailData.unqualifiedQty = row.unqualifiedQty
this.detailData.unqualifiedQuantity = row.unqualifiedQuantity
this.detailData.submitFlag = row.submitFlag
this.detailData.disposalMeasures = row.disposalMeasures
this.detailData.disposalRemark = row.disposalRemark
this.detailData.inspectionResult = row.inspectionResult
this.detailData.inspectorNo = row.inspectorNo
this.detailData.inspectionRemark = row.inspectionRemark
this.detailData.umId = row.umId
this.detailData.umName = row.umName
this.detailData.rollCount = row.rollCount
this.detailData.poOrderNo = row.poOrderNo
this.detailData.poItemNo = row.poItemNo
this.detailData.operator = row.operator
this.detailData.operatorName = row.operatorName
this.detailData.responsiblePerson = row.responsiblePerson
this.detailData.responsiblePersonName = row.responsiblePersonName
this.detailData.invdefinetype = row.invdefinetype
this.detailData.state = row.state
this.detailData.spec = row.spec
if (row.state === '待检验') {
this.detailData.passQty = row.samplingQty
} else {
this.detailData.passQty = row.passQty
this.detailData.notPassQty = row.notPassQty
}
this.detailData.batchQualifiedQty = row.batchQualifiedQty
// 给批次不合格数量赋值
this.detailData.noBatchQualifiedQty = this.detailData.notPassQty
this.getInspectionFormData()
this.detailInformationFlag = true
},
// 检验单明细
getInspectionFormData () {
iqcDetailSearch(this.detailData).then(({data}) => {
if (data && data.code === 0) {
this.detailList = data.rows
} else {
this.detailList = []
}
})
},
// 子明细记录信息查询
subDetailModal (row) {
this.subDetailLoading = true
this.subDetailData = row
this.pageIndex2 = 1
selectIQCSubDetailedRecord(this.subDetailData).then(({data}) => {
if (data.code === 0) {
this.tableData = data.rows
}
this.subDetailLoading = false
}).catch(()=>{
this.subDetailLoading = false
})
this.batchAddData = {
samplingLocation: '',
samplingLocationB: '',
samplingNumber: ''
}
this.subDetailFlag = true
},
// 子明细分页查询
subDetailModal2 () {
selectIQCSubDetailedRecord(this.subDetailData).then(({data}) => {
if (data.code === 0) {
this.tableData = data.rows
}
})
},
// 删除检验记录
deleteModal () {
let tempData1 = '' // 记录是待审核和已完成状态的单号,不允许删除
if (this.IQCSelections.length === 0) {
this.$message.warning('请勾选要删除的检验单!')
return
}
for (let i = 0; i < this.IQCSelections.length; i++) {
if (this.IQCSelections[i].state === '待审核' || this.IQCSelections[i].state === '已完成') {
tempData1 = tempData1 + this.IQCSelections[i].inspectionNo + '、'
}
}
if (tempData1 !== '') {
tempData1 = tempData1.substring(0, tempData1.length - 1)
this.$message.warning('检验单号 ' + tempData1 + ', 待审核和已完成的单据不允许删除!')
return
}
this.$confirm(`是否删除该 `+ this.IQCSelections.length +` 条检验记录?`, '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
let tempData = {
site: '',
submitList: this.IQCSelections
}
iqcRecordDelete(tempData).then(({data}) => {
if (data && data.code === 0) {
this.getDataList()
this.IQCSelections = []
this.$message.success('操作成功')
} else {
this.$message.error(data.msg)
}
})
})
},
// 任务重载
overLoadModal () {
if (this.IQCSelections.length === 0) {
this.$message.warning('请勾选要重载的检验单!')
return
}
if (this.IQCSelections.every(val => val.state === '待检验' || val.state === '未开始')) {
this.$confirm(`是否重载该 `+ this.IQCSelections.length +` 条检验单?`, '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
let tempData = {
site: '',
submitList: this.IQCSelections
}
iqcRecordOverLoad(tempData).then(({data}) => {
if (data && data.code === 0) {
this.getDataList()
this.IQCSelections = []
this.$message.success('操作成功')
} else {
this.$message.error(data.msg)
}
})
})
} else {
this.$message.warning('检验单必须为待检验状态!')
}
},
// 审核按钮
submitResult () {
let tempData1 = '' // 记录不是待审核状态的单号
let tempData2 = '' // 记录处置措施未填写的单号
if (this.IQCSelections.length === 0) {
this.$message.warning('请勾选要审核的检验单!')
return
}
for (let i = 0; i < this.IQCSelections.length; i++) {
if (this.IQCSelections[i].state !== '待审核'){
tempData1 = tempData1 + this.IQCSelections[i].inspectionNo + '、'
}
if (this.IQCSelections[i].inspectionResult === '不合格' && (this.IQCSelections[i].disposalMeasures === '' || this.IQCSelections[i].disposalMeasures == null)) {
tempData2 = tempData2 + this.IQCSelections[i].inspectionNo + '、'
}
}
if (tempData1 !== '') {
tempData1 = tempData1.substring(0, tempData1.length - 1)
this.$message.warning('检验单号 ' + tempData1 + ', 不是待审核状态!')
return
}
if (tempData2 !== '') {
tempData2 = tempData2.substring(0, tempData2.length - 1)
this.$message.warning('检验单号 ' + tempData2 + ', 的处置措施未选择!')
return
}
this.$confirm(`已确认单据信息无误,确定审核该 ` + this.IQCSelections.length + ` 条记录`, '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.submitData.submitList = this.IQCSelections
saveIQCSubmitResult(this.submitData).then(({data}) => {
if (data && data.code === 0) {
this.getDataList()
this.IQCSelections = []
this.$message.success('操作成功')
} else {
this.$message.error(data.msg)
}
})
})
},
// 取消审核
cancelApproval () {
let tempData1 = '' // 记录不是已完成状态的单号
let tempData2 = '' // 记录免检的单号
if (this.IQCSelections.length === 0) {
this.$message.warning('请勾选要取消审核的检验单!')
return
}
for (let i = 0; i < this.IQCSelections.length; i++) {
if (this.IQCSelections[i].state !== '已完成') {
tempData1 = tempData1 + this.IQCSelections[i].inspectionNo + '、'
}
if (this.IQCSelections[i].inspectionResult === '免检') {
tempData2 = tempData2 + this.IQCSelections[i].inspectionNo + '、'
}
}
if (tempData1 !== '') {
tempData1 = tempData1.substring(0, tempData1.length - 1)
this.$message.warning('检验单号 ' + tempData1 + ' ,不是已完成状态!')
return
}
if (tempData2 !== '') {
tempData2 = tempData2.substring(0, tempData2.length - 1)
this.$message.warning('检验单号 ' + tempData2 + ' , 免检的单据不允许取消审核!')
return
}
this.$confirm(`确定取消审核该 ` + this.IQCSelections.length + ` 条记录`, '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.submitData.submitList = this.IQCSelections
cancelApproval(this.submitData).then(({data}) => {
if (data && data.code === 0) {
this.getDataList()
this.IQCSelections = []
this.$message.success('操作成功')
} else {
this.$message.error(data.msg)
}
})
})
},
// 子明细方法
// 表格的新增
rowClassName ({ row, rowIndex }) {
row.xh = rowIndex + 1
row.num = this.tableData.indexOf(row) + 1
},
// 单选框选中数据
handleDetailSelectionChange(selection) {
this.checkedDetail = selection
},
// 点击新增更多
handleAddBtn (td) {
checkIQCIsSubmit(td).then(({data}) => {
if (data.flag !== 1) {
let obj = {
subDetailValue: '',
samplingLocation: '',
samplingLocationB: '',
subDetailValueB: '',
subDetailValueC: '',
subDetailValueD: '',
subDetailValueE: '',
}
this.tableData.push(obj)
} else {
this.$alert("记录已提交!", '错误', {
confirmButtonText: '确定'
})
}
})
},
// 批量新增操作
batchHandleAdd (td) {
checkIQCIsSubmit(td).then(({data}) => {
if (data.flag !== 1) {
this.batchHandleAddModalFlag = true
} else {
this.$alert("记录已提交!", '错误', {
confirmButtonText: '确定'
})
}
})
},
// 批量新增行
batchHandleAddModal () {
for (let i = 0; i < this.batchAddData.samplingNumber; i++) {
let obj = {
samplingLocation: this.batchAddData.samplingLocation,
samplingLocationB: this.batchAddData.samplingLocationB,
subDetailValue: '',
subDetailValueB: '',
subDetailValueC: '',
subDetailValueD: '',
subDetailValueE: '',
}
this.tableData.push(obj)
}
this.batchHandleAddModalFlag = false
},
// 回车事件
nextFocus1 (index) {
let a1 = `${index + 1}` + `a`
this.$nextTick(() => {
this.$refs[a1].focus()
})
},
nextFocus2 (index) {
let a2 = `${index + 1}` + `b`
this.$nextTick(() => {
this.$refs[a2].focus()
})
},
nextFocus3 (index) {
let a3 = `${index + 1}` + `c`
this.$nextTick(() => {
this.$refs[a3].focus()
})
},
nextFocus4 (index) {
let a = `${index + 1}` + `d`
this.$nextTick(() => {
this.$refs[a].focus()
})
},
nextFocus5 (index) {
let a = `${index + 1}` + `e`
this.$nextTick(() => {
this.$refs[a].focus()
})
},
nextFocus6 (index) {
let a = `${index + 1}` + `f`
this.$nextTick(() => {
this.$refs[a].focus()
})
},
nextFocus7 (index) {
let a = `${index + 1}` + `g`
this.$nextTick(() => {
this.$refs[a].focus()
})
},
focusNextInput (index, type) {
let aaa = ''
if (this.detailList.length - 1 === index) {
aaa = `${type}0`
} else {
aaa = `${type}${index + 1}`
}
this.$nextTick(() => {
this.$refs[aaa].focus()
})
},
updateItemResult(row){
if (row.maxValue == null && row.minValue == null&&row.defaultValue==null) {
return;
}
if (row.maxValue == null && row.minValue == null) {
if (row.numberValue!=row.defaultValue){
row.itemResult = 'N'
}
}else if (row.maxValue != null && row.minValue != null){
if (row.numberValue>row.maxValue ||row.numberValue<row.minValue){
row.itemResult = 'N'
}else {
row.itemResult = 'Y'
}
}else if(row.maxValue != null){
if ( row.numberValue>row.maxValue) {
row.itemResult = 'N'
}else {
row.itemResult = 'Y'
}
}else if(row.minValue != null){
if ( row.numberValue<row.minValue) {
row.itemResult = 'N'
}else {
row.itemResult = 'Y'
}
}
},
//删除
handleDeleteBtn (td) {
checkIQCIsSubmit(td).then(({data}) => {
if (data.flag !== 1) {
if (this.checkedDetail.length === 0) {
this.$alert("请先选择要删除的数据", "提示", {
confirmButtonText: "确定",
})
} else {
this.$confirm("请是否确认删除该子明细记录?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
callback: (action) => {
if (action === "confirm") {
let val = this.checkedDetail
val.forEach((val, index) => {
this.tableData.splice(this.tableData.indexOf(val), 1)
if (this.templateTableData.length === 0) {
this.pageIndex2--
}
})
this.$message({
message: "删除成功!",
type: "success",
})
} else {
this.$message({
message: "已取消删除操作",
type: "warning",
})
}
},
})
}
} else {
this.$alert("记录已提交!", '错误', {
confirmButtonText: '确定'
})
}
})
},
// 新增子明细记录
saveSubDetailResult () {
for (let i = 0; i < this.tableData.length; i++) {
if(this.tableData[i].subDetailValue === '' || this.tableData[i].subDetailValue == null){
this.$message.warning('序号' + (i+1) +'未填写实测值!')
return
}
}
this.subDetailData.subDetailValues = this.tableData
saveIQCSubDetailed(this.subDetailData).then(({data}) => {
if (data && data.code === 0) {
if (data.count > 0) {
this.subDetailData.itemResult = 'N'
this.subDetailData.unqualifiedQuantity = data.count
}
if (this.subDetailData.subDetailValues.length > 0) {
this.subDetailData.subDetailRecordNum = 1
} else {
this.subDetailData.subDetailRecordNum = -1
this.subDetailData.unqualifiedQuantity = 0
this.subDetailData.itemResult = 'Y'
}
this.subDetailFlag = false
this.tableData = []
this.$message.success('操作成功')
} else {
this.$message.error(data.msg)
}
})
},
// 检验结论改变事件
resultChange () {
if (this.detailData.inspectionResult === '不合格') {
this.detailData.passQty = 0
}
},
// 校验用户是否收藏
favoriteIsOk () {
let userFavorite = {
userId: this.$store.state.user.id,
languageCode: this.$i18n.locale
}
userFavoriteList(userFavorite).then(({data}) => {
for (let i = 0; i < data.list.length; i++) {
if (this.$route.meta.menuId === data.list[i].menuId) {
this.favorite = true
}
}
})
},
// 收藏 OR 取消收藏
favoriteFunction () {
let userFavorite = {
userId: this.$store.state.user.id,
functionId: this.$route.meta.menuId,
}
if (this.favorite) {
removeUserFavorite(userFavorite).then(({data}) => {
this.$message.success(data.msg)
this.favorite = false
})
} else {
// 收藏
saveUserFavorite(userFavorite).then(({data}) => {
this.$message.success(data.msg)
this.favorite = true
})
}
},
// 动态列开始 获取 用户保存的 格式列
async getTableUserColumn (tableId, columnId) {
let queryTableUser = {
userId: this.$store.state.user.name,
functionId: this.$route.meta.menuId,
tableId: tableId,
status: true,
languageCode: this.$i18n.locale
}
await getTableUserListLanguage(queryTableUser).then(({data}) => {
if (data.rows.length > 0) {
switch (columnId) {
case 1:
this.columnList1 = data.rows
break;
case 2:
this.detailColumnList = data.rows
break;
}
} else {
this.getColumnList(tableId, columnId)
}
})
},
// 获取 tableDefault 列
async getColumnList (tableId, columnId) {
let queryTable = {
functionId: this.$route.meta.menuId,
tableId: tableId,
languageCode: this.$i18n.locale
}
await getTableDefaultListLanguage(queryTable).then(({data}) => {
if (data.rows.length !== 0) {
switch (columnId) {
case 1:
this.columnList1 = data.rows
break;
case 2:
this.detailColumnList = data.rows
break;
}
}
})
},
// 明细导入后将返回值回传给父组件
changeMyString (val) {
for (let i = 0; i < this.detailList.length; i++) {
if (val[this.detailList[i].itemNo] !== undefined) {
this.detailList[i].unqualifiedQuantity = val[this.detailList[i].itemNo]
if (val[this.detailList[i].itemNo] != null) {
this.detailList[i].subDetailRecordNum = 1
}
if (val[this.detailList[i].itemNo] > 0) {
this.detailList[i].itemResult = 'N'
}
}
}
},
//获取按钮的权限数据
getButtonAuthData () {
let searchFlag = this.isAuth(this.menuId + ":search")
let checkFlag = this.isAuth(this.menuId + ":check")
let overLoadFlag = this.isAuth(this.menuId + ":overLoad")
let deleteFlag = this.isAuth(this.menuId + ":delete")
let detailFlag = this.isAuth(this.menuId + ":detail")
let fileFlag = this.isAuth(this.menuId + ":file")
let cancelCheckFlag = this.isAuth(this.menuId + ":cancelCheck")
//处理页面的权限数据
this.authSearch = !searchFlag
this.authCheck = !checkFlag
this.authOverLoad = !overLoadFlag
this.authDelete = !deleteFlag
this.authDetail = !detailFlag
this.authFile = !fileFlag
this.authCancelCheck = !cancelCheckFlag
},
// ======================== IQC检验项目操作相关方法 ========================
// 打开项目操作对话框
openItemOperationDialog() {
this.itemOperationQuery = {
itemNo: '',
itemDesc: '',
}
this.searchIQCItems()
this.itemOperationDialogFlag = true
},
// 查询IQC类型的检验项目
async searchIQCItems() {
try {
const params = {
site: this.detailData.site,
buNo: this.detailData.buNo,
inspectionNo: this.detailData.inspectionNo,
itemNo: this.itemOperationQuery.itemNo || '',
itemDesc: this.itemOperationQuery.itemDesc || ''
}
const { data } = await getIQCItemList(params)
if (data && data.code === 0) {
this.availableItemList = data.row1 || []
this.selectedItemList = data.row2 || []
}
} catch (error) {
this.$message.error('查询检验项目失败')
}
},
// 可选项目表格行点击
availableItemClickRow(row) {
this.$refs.availableItemTable.toggleRowSelection(row)
},
// 可选项目选择变化
availableItemSelectionChange(selection) {
this.availableItemSelections = selection
},
// 已选项目表格行点击
selectedItemClickRow(row) {
this.$refs.selectedItemTable.toggleRowSelection(row)
},
// 已选项目选择变化
selectedItemSelectionChange(selection) {
this.selectedItemSelections = selection
},
// 添加检验项目
async addInspectionItems() {
if (!this.availableItemSelections || this.availableItemSelections.length === 0) {
this.$message.warning('请选择要添加的项目')
return
}
this.$confirm('确认添加选中的检验项目吗?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(async () => {
try {
const params = {
site: this.detailData.site,
buNo: this.detailData.buNo,
inspectionNo: this.detailData.inspectionNo,
itemList: this.availableItemSelections.map(item => ({
itemNo: item.itemNo
}))
}
const { data } = await addIQCItemDetails(params)
if (data && data.code === 0) {
this.$message.success('添加成功')
this.searchIQCItems()
} else {
this.$message.error(data.msg || '添加失败')
}
} catch (error) {
this.$message.error('添加失败,请检查')
}
}).catch(() => {
this.$message.info('已取消添加')
})
},
// 删除检验项目
async deleteInspectionItems() {
if (!this.selectedItemSelections || this.selectedItemSelections.length === 0) {
this.$message.warning('请选择要移除的项目')
return
}
this.$confirm('确认移除选中的检验项目吗?(将同时删除该项目的子明细数据)', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(async () => {
try {
const params = {
site: this.detailData.site,
buNo: this.detailData.buNo,
inspectionNo: this.detailData.inspectionNo,
itemList: this.selectedItemSelections.map(item => ({
itemNo: item.itemNo
}))
}
const { data } = await deleteIQCItemDetails(params)
if (data && data.code === 0) {
this.$message.success('移除成功')
this.searchIQCItems()
} else {
this.$message.error(data.msg || '移除失败')
}
} catch (error) {
this.$message.error('移除失败,请检查')
}
}).catch(() => {
this.$message.info('已取消移除')
})
},
// 刷新检验明细列表
refreshInspectionDetailList() {
if (this.detailInformationFlag) {
this.getInspectionFormData()
}
},
// ======================== IQC模板导入相关方法 ========================
// 打开模板导入对话框
openTemplateImportDialog() {
this.templateQuery = {
templateId: '',
templateDesc: '',
}
this.searchIQCTemplates()
this.templateImportDialogFlag = true
},
// 查询IQC检验模板
async searchIQCTemplates() {
try {
const params = {
site: this.detailData.site,
buNo: this.detailData.buNo,
templateId: this.templateQuery.templateId || '',
templateDesc: this.templateQuery.templateDesc || ''
}
const { data } = await getIQCTemplateList(params)
if (data && data.code === 0) {
this.templateList = data.rows || []
}
} catch (error) {
this.$message.error('查询模板失败')
}
},
// 模板表格行点击
templateClickRow(row) {
this.$refs.templateTable.toggleRowSelection(row)
},
// 模板选择变化
templateSelectionChange(selection) {
this.templateSelections = selection
},
// 确认导入模板
confirmImportTemplate() {
if (!this.templateSelections || this.templateSelections.length === 0) {
this.$message.warning('请选择要导入的模板')
return
}
this.$confirm(`确认导入选中的 ${this.templateSelections.length} 个模板吗?`, '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(async () => {
this.importLoading = true
try {
const params = {
site: this.detailData.site,
buNo: this.detailData.buNo,
inspectionNo: this.detailData.inspectionNo,
templateList: this.templateSelections.map(item => ({
templateId: item.templateId
}))
}
const { data } = await importIQCTemplateItems(params)
if (data && data.code === 0) {
this.$message.success(`导入成功,共导入 ${data.importCount || 0} 个检验项目`)
this.templateImportDialogFlag = false
this.templateSelections = []
// 刷新检验明细列表
this.getInspectionFormData()
} else {
this.$message.error(data.msg || '导入失败')
}
} catch (error) {
this.$message.error('导入失败,请检查')
} finally {
this.importLoading = false
}
}).catch(() => {
this.$message.info('已取消导入')
})
},
// 重置项目查询条件
resetItemQuery() {
this.itemOperationQuery = {
itemNo: '',
itemDesc: '',
}
this.searchIQCItems()
},
// 重置模板查询条件
resetTemplateQuery() {
this.templateQuery = {
templateId: '',
templateDesc: '',
}
this.searchIQCTemplates()
},
}
}
</script>
<style scoped>
/* 搜索卡片样式 */
.search-card {
margin-bottom: 16px;
border-radius: 8px;
overflow: hidden;
transition: all 0.3s ease;
}
.search-card:hover {
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.search-card /deep/ .el-card__header {
padding: 5px 20px;
background: linear-gradient(135deg, #9ac3d0 20%, #b6c7dd 80%);
border-bottom: none;
}
.search-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.header-left {
display: flex;
align-items: center;
color: #fff;
}
.header-left i {
font-size: 16px;
margin-right: 8px;
}
.header-title {
font-size: 14px;
font-weight: 600;
letter-spacing: 0.5px;
}
.header-right {
color: #fff;
}
.collapse-btn {
color: #fff;
font-weight: 500;
transition: all 0.3s ease;
}
.collapse-btn:hover {
color: #f0f0f0;
transform: translateY(-1px);
}
.collapse-btn i {
transition: transform 0.3s ease;
}
/* 搜索表单样式 */
.search-form {
padding: 6px 0;
min-height: 0;
}
/* 卡片主体样式 */
.search-card /deep/ .el-card__body {
padding: 10px;
transition: all 0.3s ease;
}
/* 收起时的样式 */
.search-card.collapsed /deep/ .el-card__body {
padding: 10px 20px;
}
.search-form /deep/ .el-form-item {
margin-bottom: 12px;
}
.search-form /deep/ .el-form-item__label {
font-weight: 500;
color: #606266;
padding-bottom: 4px;
}
.search-form /deep/ .el-input__inner,
.search-form /deep/ .el-textarea__inner {
border-radius: 6px;
border: 1px solid #DCDFE6;
transition: all 0.3s ease;
}
.search-form /deep/ .el-input__inner:focus,
.search-form /deep/ .el-textarea__inner:focus {
border-color: #9ac3d0;
box-shadow: 0 0 0 2px rgba(154, 195, 208, 0.1);
}
.search-form /deep/ .el-select {
width: 100%;
}
.search-form /deep/ .el-date-editor.el-input {
width: 100%;
}
/* 状态下拉框优化 */
.search-form /deep/ .status-select {
width: 180px;
}
.search-form /deep/ .status-select .el-select__tags {
max-width: calc(100% - 30px);
}
.search-form /deep/ .status-select .el-tag {
max-width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
/* 操作按钮区域 */
.search-actions {
display: flex;
justify-content: space-between;
align-items: center;
padding: 8px 0 2px 0;
}
/* 展开时显示上边框 */
.search-card:not(.collapsed) .search-actions {
border-top: 1px solid #f0f0f0;
margin-top: 6px;
}
/* 收起时不显示上边框和上边距 */
.search-card.collapsed .search-actions {
border-top: none;
margin-top: 0;
padding-top: 0;
}
.action-left,
.action-right {
display: flex;
gap: 8px;
}
.search-actions .el-button {
border-radius: 4px;
padding: 5px 10px;
font-size: 12px;
font-weight: 500;
transition: all 0.3s ease;
}
.search-actions .el-button:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.search-actions .el-button--primary {
background: #60aeff;
border-color: #60aeff;
}
.search-actions .el-button--primary:hover {
background: #7dbdff;
border-color: #7dbdff;
}
.search-actions .el-button--success {
background: #67C23A;
border-color: #67C23A;
}
.search-actions .el-button--success:hover {
background: #85ce61;
border-color: #85ce61;
}
.search-actions .el-button--danger {
background: #F56C6C;
border-color: #F56C6C;
}
.search-actions .el-button--danger:hover {
background: #f78989;
border-color: #f78989;
}
.search-actions .el-button--warning {
background: #E6A23C;
border-color: #E6A23C;
}
.search-actions .el-button--warning:hover {
background: #ebb563;
border-color: #ebb563;
}
/* 响应式设计 */
@media (max-width: 1200px) {
.search-actions {
flex-direction: column;
gap: 10px;
}
.action-left,
.action-right {
width: 100%;
justify-content: center;
}
}
/deep/ .redElSelect .el-input--suffix .el-input__inner{
color: red;
font-weight: bold;
}
/deep/ .greenElSelect .el-input--suffix .el-input__inner{
color: rgb(103,194,58);
font-weight: bold;
}
.el-table /deep/ .cell{
height: auto;
line-height: 1.5;
}
/* ==================== IQC检验项目操作对话框样式 ==================== */
/deep/ .item-operation-dialog {
border-radius: 8px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
/deep/ .item-operation-dialog .el-dialog__header {
background: linear-gradient(135deg, #9ac3d0 20%, #b6c7dd 80%);
padding: 20px 24px;
border-radius: 8px 8px 0 0;
}
/deep/ .item-operation-dialog .el-dialog__title {
color: #ffffff;
font-size: 16px;
font-weight: 600;
letter-spacing: 0.5px;
}
/deep/ .item-operation-dialog .el-dialog__headerbtn .el-dialog__close {
color: #ffffff;
font-size: 20px;
font-weight: bold;
}
/deep/ .item-operation-dialog .el-dialog__headerbtn:hover .el-dialog__close {
color: #f0f0f0;
}
/deep/ .item-operation-dialog .el-dialog__body {
padding: 24px;
background: #f8f9fa;
}
/* 查询区域样式 */
.search-container {
background: #ffffff;
padding: 16px 20px;
border-radius: 6px;
margin-bottom: 20px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.search-container .el-form-item {
margin-bottom: 0;
}
.search-container .el-form-item__label {
font-weight: 500;
color: #606266;
}
/* 主内容区域 */
.item-operation-content {
display: flex;
gap: 16px;
align-items: stretch;
}
/* 项目面板 */
.item-panel {
flex: 1;
background: #ffffff;
border-radius: 6px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
overflow: hidden;
transition: all 0.3s ease;
}
.item-panel:hover {
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.available-panel {
flex: 1.5;
}
.selected-panel {
flex: 1;
}
/* 面板头部 */
.panel-header {
padding: 8px 16px;
background: linear-gradient(135deg, #9ac3d0 20%, #b6c7dd 80%);
border-bottom: 2px solid #9ac3d0;
display: flex;
align-items: center;
gap: 8px;
}
.panel-header i {
font-size: 18px;
color: #ffffff;
}
.panel-title {
font-size: 14px;
font-weight: 600;
color: #ffffff;
letter-spacing: 0.5px;
}
.item-count {
margin-left: auto;
font-size: 12px;
color: #ffffff;
background: rgba(255, 255, 255, 0.25);
padding: 2px 10px;
border-radius: 12px;
font-weight: 500;
}
/* 表格样式优化 */
.operation-table {
border: none !important;
}
.operation-table /deep/ .el-table__body tr:hover > td {
background-color: #f0f7ff !important;
}
.operation-table /deep/ .el-table__row.current-row > td {
background-color: #e6f2ff !important;
}
.operation-table /deep/ td {
border-bottom: 1px solid #f0f0f0;
}
.operation-table /deep/ .el-table__body {
font-size: 13px;
}
/* 操作按钮区域 */
.operation-buttons {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 20px;
padding: 0 8px;
}
.operation-buttons .el-button {
width: 48px;
height: 48px;
font-size: 20px;
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.operation-buttons .el-button:hover {
transform: scale(1.1);
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.operation-buttons .el-button.is-disabled {
opacity: 0.4;
cursor: not-allowed;
}
.operation-buttons .el-button--primary {
background: linear-gradient(135deg, #409EFF 0%, #66b1ff 100%);
border: none;
}
.operation-buttons .el-button--danger {
background: linear-gradient(135deg, #F56C6C 0%, #f78989 100%);
border: none;
}
@media (max-width: 1200px) {
.item-operation-content {
flex-direction: column;
}
.operation-buttons {
flex-direction: row;
gap: 12px;
}
.operation-buttons .el-button {
width: 42px;
height: 42px;
font-size: 18px;
}
}
/* ==================== IQC模板导入对话框样式 ==================== */
/deep/ .template-import-dialog {
border-radius: 8px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
/deep/ .template-import-dialog .el-dialog__header {
background: linear-gradient(135deg, #9ac3d0 20%, #b6c7dd 80%);
padding: 20px 24px;
border-radius: 8px 8px 0 0;
}
/deep/ .template-import-dialog .el-dialog__title {
color: #ffffff;
font-size: 16px;
font-weight: 600;
letter-spacing: 0.5px;
}
/deep/ .template-import-dialog .el-dialog__headerbtn .el-dialog__close {
color: #ffffff;
font-size: 20px;
font-weight: bold;
}
/deep/ .template-import-dialog .el-dialog__headerbtn:hover .el-dialog__close {
color: #f0f0f0;
}
/deep/ .template-import-dialog .el-dialog__body {
padding: 24px;
background: #f8f9fa;
}
/* 模板列表容器 */
.template-list-container {
background: #ffffff;
border-radius: 6px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
overflow: hidden;
transition: all 0.3s ease;
}
.template-list-container:hover {
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
/* 模板表格 */
.template-table {
border: none !important;
}
.template-table /deep/ .el-table__body tr:hover > td {
background-color: #f0f7ff !important;
}
.template-table /deep/ .el-table__row.current-row > td {
background-color: #e6f2ff !important;
}
.template-table /deep/ td {
border-bottom: 1px solid #f0f0f0;
}
.template-table /deep/ .el-table__body {
font-size: 13px;
}
/* ==================== 按钮样式优化 ==================== */
.operation-btn {
position: relative;
padding: 8px 16px;
border: none;
border-radius: 4px;
font-size: 13px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
overflow: hidden;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.operation-btn:hover {
transform: translateY(-1px);
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}
.operation-btn:active {
transform: translateY(0);
}
.operation-btn i {
margin-right: 4px;
font-size: 13px;
}
.operation-btn span {
position: relative;
z-index: 1;
}
/* 项目导入按钮 */
.item-operation-btn {
background: linear-gradient(135deg, #97a9f7 0%, #ac97df 100%);
color: #ffffff;
}
.item-operation-btn:hover {
background: linear-gradient(135deg, #97a9f7 0%, #ac97df 100%);
color: #ffffff;
}
/* 模板导入按钮 */
.template-import-btn {
background: linear-gradient(135deg, #97a9f7 0%, #ac97df 100%);
color: #ffffff;
margin-left: 10px;
}
.template-import-btn:hover {
background: linear-gradient(135deg, #97a9f7 0%, #ac97df 100%);
color: #ffffff;
}
/* ==================== IQC检验单对话框样式优化 ==================== */
.iqc-inspection-dialog /deep/ .el-dialog__header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 20px 24px;
border-radius: 8px 8px 0 0;
}
.iqc-inspection-dialog /deep/ .el-dialog__title {
color: #ffffff;
font-size: 18px;
font-weight: 600;
letter-spacing: 0.5px;
}
.iqc-inspection-dialog /deep/ .el-dialog__headerbtn .el-dialog__close {
color: #ffffff;
font-size: 20px;
}
.iqc-inspection-dialog /deep/ .el-dialog__body {
padding: 0;
background: #f5f7fa;
}
/* 单据信息卡片 */
.inspection-info-card {
background: #ffffff;
padding: 0px 0px;
}
.info-section {
margin-bottom: 0;
background: #f9fafb;
border-radius: 6px;
padding: 12px;
border: 1px solid #e8eaed;
transition: all 0.3s ease;
}
.info-section:hover {
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
border-color: #d0d4d9;
}
.info-section:last-child {
margin-bottom: 0;
}
.section-title {
display: flex;
align-items: center;
margin-bottom: 12px;
padding-bottom: 8px;
border-bottom: 2px solid #e8eaed;
font-size: 14px;
font-weight: 600;
color: #303133;
}
.section-title i {
font-size: 18px;
margin-right: 8px;
color: #667eea;
}
.info-row {
margin-bottom: 0 !important;
}
.info-item {
margin-bottom: 0;
}
.info-item label {
color: #909399;
font-size: 13px;
line-height: 1.5;
margin-bottom: 4px;
display: block;
}
/* 红旗列样式 */
.el-table /deep/ th.defect-flag-header {
background-color: #ffffff !important;
border-bottom: 1px solid #ebeef5;
}
.el-table /deep/ td.defect-flag-column {
background-color: #ffffff !important;
}
.info-item label a {
color: #409eff;
text-decoration: none;
transition: color 0.3s;
}
.info-item label a:hover {
color: #66b1ff;
text-decoration: underline;
}
.info-item /deep/ .el-input--small .el-input__inner,
.info-item /deep/ .el-input-number--small .el-input__inner {
border-radius: 4px;
border: 1px solid #dcdfe6;
transition: all 0.3s;
}
.info-item /deep/ .el-input--small .el-input__inner:focus,
.info-item /deep/ .el-input-number--small .el-input__inner:focus {
border-color: #667eea;
box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}
.info-item /deep/ .el-select {
width: 100%;
}
/* 操作按钮区域 */
.action-buttons {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 12px;
background: #ffffff;
border-radius: 6px;
border: 1px solid #e8eaed;
margin-top: 10px;
}
.left-actions,
.right-actions {
display: flex;
gap: 10px;
}
.action-buttons .el-button {
border-radius: 6px;
font-weight: 500;
transition: all 0.3s ease;
}
.action-buttons .el-button:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
/* 检验项目列表 */
.inspection-table-wrapper {
background: #ffffff;
padding: 0px 0px;
}
.table-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 10px;
margin-top: 10px;
border-bottom: 2px solid #e8eaed;
}
.table-title {
font-size: 15px;
font-weight: 600;
color: #303133;
display: flex;
align-items: center;
}
.table-title i {
font-size: 18px;
margin-right: 8px;
color: #667eea;
}
.inspection-table {
border-radius: 8px;
overflow: hidden;
}
.inspection-table /deep/ .el-table__header-wrapper th {
background: linear-gradient(135deg, #f5f7fa 0%, #e8eaed 100%);
color: #303133;
font-weight: 600;
font-size: 13px;
padding: 12px 0;
}
.inspection-table /deep/ .el-table__body-wrapper .el-table__row {
transition: all 0.3s ease;
}
.inspection-table /deep/ .el-table__body-wrapper .el-table__row:hover {
background: #f5f7fa;
}
.inspection-table /deep/ .el-table__body-wrapper .el-table__row.el-table__row--striped {
background: #fafbfc;
}
.inspection-table /deep/ .el-table__body-wrapper .el-table__row.el-table__row--striped:hover {
background: #f0f2f5;
}
.inspection-table /deep/ .el-button--mini {
padding: 7px 10px;
border-radius: 4px;
font-size: 12px;
}
/* 底部操作按钮 */
.dialog-footer {
display: flex;
justify-content: center;
align-items: center;
gap: 12px;
padding: 12px 16px;
background: #ffffff;
border-top: 1px solid #e8eaed;
}
.dialog-footer .el-button {
min-width: 100px;
border-radius: 6px;
font-weight: 500;
transition: all 0.3s ease;
}
.dialog-footer .el-button:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.dialog-footer .el-button--success {
background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
border: none;
}
.dialog-footer .el-button--success:hover {
background: linear-gradient(135deg, #15b39d 0%, #4af58e 100%);
}
</style>