|
|
<template> <div class="mod-config"> <!-- 收藏 --> <div> <span @click="favoriteFunction()"> <icon-svg :name="favorite?'xiangqufill':'xiangqu'" class="sl-svg"></icon-svg> </span> </div> <!-- 条件查询 --> <el-form :inline="true" label-position="top" :model="searchData" > <el-form-item :label="'检验单号'"> <el-input v-model="searchData.inspectionNo" style="width: 120px"></el-input> </el-form-item> <el-form-item :label="'状态'"> <el-select v-model="searchData.state" style="width: 100px"> <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-form-item :label="'检验结论'"> <el-select v-model="searchData.inspectionResult" style="width: 100px"> <el-option label="全部" value=""></el-option> <el-option label="合格" value="合格"></el-option> <el-option label="不合格" value="不合格"></el-option> </el-select> </el-form-item> <el-form-item :label="'物料编码'"> <el-input v-model="searchData.partNo" style="width: 120px"></el-input> </el-form-item> <el-form-item :label="'物料名称'"> <el-input v-model="searchData.partDesc" style="width: 120px"></el-input> </el-form-item> <el-form-item :label="'检验时间:'"> <el-date-picker style="width: 150px" v-model="searchData.startDate" type="datetime" value-format='yyyy-MM-dd HH:mm' format='yyyy-MM-dd HH:mm' placeholder="开始日期"> </el-date-picker> - <el-date-picker style="width: 150px" v-model="searchData.endDate" type="datetime" value-format='yyyy-MM-dd HH:mm' format='yyyy-MM-dd HH:mm' placeholder="结束日期"> </el-date-picker> </el-form-item> <el-form-item :label="' '"> <el-button @click="doEmpty()">清空</el-button> <el-button type="primary" @click="getDataList()">查询</el-button> <el-button type="primary" @click="submitResult()">审核</el-button> <el-button type="primary" @click="deleteModal()">删除</el-button> <download-excel :fields="fields()" :data="exportData" type="xls" :name="exportName" :header="exportHeader" :footer="exportFooter" :fetch="createExportData" :before-generate="startDownload" :before-finish="finishDownload" worksheet="导出信息" class="el-button el-button--primary el-button--medium"> {{ "导出" }} </download-excel> </el-form-item> </el-form>
<!-- 检验记录展示列表 --> <el-table :height="height" :data="dataList" border ref="IQCTable" @row-click="IQCClickRow" @selection-change="selectionIQC" v-loading="dataListLoading" style="width: 100%;"> <el-table-column type="selection" header-align="center" align="center" :selectable="selectFlag" width="50"> </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 columnList" :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="200" label="操作"> <template slot-scope="scope"> <a type="text" size="small" @click="detailModal(scope.row)">检验单</a> <a type="text" size="small" @click="getFileContentData(scope.row)">工作文件</a><!-- <a type="text" size="small" @click="submitResult(scope.row)">审核</a>--><!-- <a type="text" size="small" @click="deleteModal(scope.row)">删除</a>--> </template> </el-table-column> </el-table>
<!-- 分页--> <el-pagination @size-change="sizeChangeHandle" @current-change="currentChangeHandle" :current-page="pageIndex" :page-sizes="[20, 50, 100, 1000]" :page-size="pageSize" :total="totalPage" layout="total, sizes, prev, pager, next, jumper"> </el-pagination>
<!-- 检验单详情页 --> <el-dialog title="检验明细清单" :close-on-click-modal="false" v-drag :visible.sync="detailInformationFlag" width="1200px"> <el-form :inline="true" label-position="top" @keyup.enter.native = "getDataList()"> <el-form-item :label="'物料编码'"> <el-input v-model="detailData.partNo" disabled style="width: 100px"></el-input> </el-form-item> <el-form-item :label="'物料名称'"> <el-input v-model="detailData.partDesc" disabled style="width: 200px"></el-input> </el-form-item> <el-form-item :label="'送检数量'"> <el-input v-model="detailData.rollQty" disabled style="width: 80px"></el-input> </el-form-item> <el-form-item :label="'抽样数量'"> <el-input v-model="detailData.samplingQty" disabled style="width: 80px"></el-input> </el-form-item> </el-form> <el-form :inline="true" label-position="top" @keyup.enter.native = "getDataList()"> <el-form-item :label="'不合格项目数量'"> <el-input v-if="detailData.submitFlag == 'Y'" v-model="detailData.unqualifiedQty" disabled type="number" style="width: 80px"></el-input> <el-input v-if="detailData.submitFlag != 'Y'" v-model="detailData.unqualifiedQty" type="number" style="width: 80px"></el-input> </el-form-item> <el-form-item :label="'处置措施'"> <el-select v-if="detailData.submitFlag == 'Y'" v-model="detailData.disposalMeasures" disabled style="width: 100px"> <el-option label="请选择" value=""></el-option> <el-option label="特采" value="特采"></el-option> <el-option label="拒收" value="拒收"></el-option> </el-select> <el-select v-if="detailData.submitFlag != 'Y'" v-model="detailData.disposalMeasures" style="width: 100px"> <el-option label="请选择" value=""></el-option> <el-option label="特采" value="特采"></el-option> <el-option label="拒收" value="拒收"></el-option> </el-select> </el-form-item> <el-form-item :label="'处置说明'"> <el-input v-if="detailData.submitFlag == 'Y'" v-model="detailData.disposalRemark" disabled style="width: 200px"></el-input> <el-input v-if="detailData.submitFlag != 'Y'" v-model="detailData.disposalRemark" style="width: 200px"></el-input> </el-form-item> <el-form-item :label="'检验结论'"> <el-select v-if="detailData.submitFlag == 'Y'" v-model="detailData.inspectionResult" disabled style="width: 100px" placeholder="请选择"> <el-option label="合格" value="合格"></el-option> <el-option label="不合格" value="不合格"></el-option> </el-select> <el-select v-if="detailData.submitFlag != 'Y'" v-model="detailData.inspectionResult" style="width: 100px" placeholder="请选择"> <el-option label="合格" value="合格"></el-option> <el-option label="不合格" value="不合格"></el-option> </el-select> </el-form-item> <el-form-item label="检验员"> <el-select v-if="detailData.submitFlag == 'Y'" v-model="detailData.inspectorNo" disabled placeholder="请选择" style="width: 100px"> <el-option v-for = "i in options" :key = "i.inspectorNo" :label = "i.inspectorName" :value = "i.inspectorNo"> </el-option> </el-select> <el-select v-if="detailData.submitFlag != 'Y'" v-model="detailData.inspectorNo" placeholder="请选择" style="width: 100px"> <el-option v-for = "i in options" :key = "i.inspectorNo" :label = "i.inspectorName" :value = "i.inspectorNo"> </el-option> </el-select> </el-form-item> <el-form-item :label="'质检备注'"> <el-input v-if="detailData.submitFlag == 'Y'" v-model="detailData.inspectionRemark" disabled style="width: 200px"></el-input> <el-input v-if="detailData.submitFlag != 'Y'" v-model="detailData.inspectionRemark" style="width: 200px"></el-input> </el-form-item> <el-form-item :label="' '"> <el-button type="primary" @click="addUploadFileModal()">上传文件</el-button> </el-form-item> <el-form-item :label="' '"></el-form-item> </el-form> <!-- 展示列表 --> <div class="rq "> <el-table :height="500" :data="detailList" border v-loading="dataListLoading" style="width: 100%;"> <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"> <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 prop="" header-align="center" align="center" min-width="80" label="子明细"> <template slot-scope="scope"> <el-button 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 v-if="detailData.submitFlag == 'Y'" v-model="scope.row.unqualifiedQuantity" disabled type="number" style="height: 11px;padding: 0px " allow-create>;width:98%"></el-input> <el-input v-if="detailData.submitFlag != 'Y'" v-model="scope.row.unqualifiedQuantity" type="number" style="height: 11px;padding: 0px " allow-create>;width:98%"></el-input> </template> </el-table-column> <el-table-column prop="" header-align="center" align="right" min-width="75" label="项目检验结论"> <template slot-scope="scope"> <el-select 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 v-if="detailData.submitFlag != 'Y'" 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> <el-footer style="height:40px;margin-top: 20px;text-align:center"> <el-button type="primary" @click="Transfer()">保存</el-button> <el-button type="primary" @click="detailInformationFlag=false">关闭</el-button> </el-footer> </el-dialog>
<!-- 文件清单 --> <el-dialog title="文件清单" :close-on-click-modal="false" v-drag :visible.sync="fileFlag" width="800px"> <el-table :height="350" :data="fileContentList" border v-loading="dataListLoading" style="width: 100%; "> <el-table-column v-for="(item,index) in fileColumnList" :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="100" label="操作"> <template slot-scope="scope"> <a @click="downloadFile(scope.row)">下载</a> <a type="text" size="small" @click="deleteFile(scope.row)">删除</a> </template> </el-table-column> </el-table> </el-dialog>
<!-- 子明细信息 --> <el-dialog title="子明细信息" :close-on-click-modal="false" v-drag :visible.sync="subDetailFlag" width="471px"> <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> <div class="rq "> <el-table :height="300" :data="tableData" border :row-class-name="rowClassName" @selection-change="handleDetailSelectionChange" style="width: 100%;"> <el-table-column type="selection" align="center" width="50"></el-table-column> <el-table-column label="序号" align="center" prop="xh" width="50"></el-table-column> <el-table-column prop="subDetailValue" header-align="center" align="center" :required="true" label="抽样位置" width="150"> <template slot-scope="{row}"> <el-input v-if="tableData[row.xh-1].isSubmit=='Y'" v-model="tableData[row.xh-1].samplingLocation" readonly placeholder="请输入抽样位置"></el-input> <el-input v-if="tableData[row.xh-1].isSubmit!='Y'" v-model="tableData[row.xh-1].samplingLocation" placeholder="请输入抽样位置"></el-input> </template> </el-table-column> <el-table-column prop="subDetailValue" header-align="center" align="center" :required="true" label="实测值" width="200"> <template slot-scope="{row}"> <el-input v-if="tableData[row.xh-1].isSubmit=='Y'" v-model="tableData[row.xh-1].subDetailValue" readonly placeholder="请输入实测值"></el-input> <el-input v-if="tableData[row.xh-1].isSubmit!='Y'" v-model="tableData[row.xh-1].subDetailValue" placeholder="请输入实测值"></el-input> </template> </el-table-column> </el-table> </div> <el-footer style="height:40px;margin-top: 10px;text-align:center"> <el-button type="primary" @click="saveSubDetailResult()">保存</el-button> <el-button type="primary" @click="subDetailFlag = false">关闭</el-button> </el-footer> </el-dialog>
<Chooselist ref="baseList" @getBaseData="getBaseData"></Chooselist> <!-- 上传文件的modal --> <qcFAIUploadFile ref="qcFAIUploadFile" @refreshPageTables="getDataList()" v-drag></qcFAIUploadFile>
</div></template>
<script> import { qcIQCInspectionSearch, // IQC检验记录查询
iqcDetailSearch, // iqc检验记录查询
inspectorSearch, // 检验员查询
selectIQCSubDetailedRecord, // 查询子明细记录
checkIQCSubDetailValue, // 检查子明细中的实测值是否在规定范围
saveIQCDetailedRecord, // 新增明细信息
checkIQCIsSubmit, // 检查是否已提交
saveIQCSubDetailed, // 新增子明细信息
saveIQCSubmitResult, // 审核
iqcRecordDelete, // 删除检验记录
} from "@/api/qc/qc.js" import Chooselist from '@/views/modules/common/Chooselist_eam' import {getFileContentList, downLoadObjectFile} from '@/api/eam/eam_object_list.js'; import {deleteObjectFile} from '@/api/eam/eam.js'; import {userFavoriteList, saveUserFavorite, removeUserFavorite} from '@/api/userFavorite.js' import qcFAIUploadFile from "./qc_FAI_upload_file"; import axios from 'axios' import Vue from 'vue' export default { components: { Chooselist, qcFAIUploadFile }, watch: {
}, data () { return { // 是否收藏
favorite: false, // 导出 start
exportData: [], exportName: "IQC检验录入" + this.dayjs().format('YYYYMMDDHHmmss'), exportHeader: ["IQC检验录入"], exportFooter: [], exportList:[], // 导出 end
submitData:{ site: this.$store.state.user.site, inspectionNo: '', isQualified: '', isQualifiedChinese: '', submitList: [], }, tagNo:'', searchData: { site: this.$store.state.user.site, inspectionNo: '', inspectionTypeNo:'105', isQualified: '', startDate: '', endDate: '', partNo:'', partDesc:'', state: '', page: 1, limit: 10, }, pageIndex: 1, pageSize: 100, totalPage: 0, height: 200, dataList: [], dataListLoading: false, dataListSelections: [], submitFlag: false, modalData: { flag:'', functionType:'', site: this.$store.state.user.site, inspectionNo:'', workOrderNumber: '', workOrderQuantity: '', reelNumber: '', partNo: '', rollingQuantity: '', sampleQuantity: '', detailCodeNo:'', detailCodeDesc:'', inspectionTypeNo:'105', inspectionTypeName:'IQC', inspectorNo:'', inspectorName:'', isQualified:'', isQualifiedChinese:'' }, // 展示列集
columnList: [ { columnProp: 'inspectionNo', headerAlign: "center", align: "center", columnLabel: '检验单号', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, { columnProp: 'inspectionResult', headerAlign: "center", align: "center", columnLabel: '检验结论', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, { columnProp: 'disposalMeasures', headerAlign: "center", align: "center", columnLabel: '处置措施', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, { columnProp: 'taskDate', headerAlign: "center", align: "center", columnLabel: '任务生成日期', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, { columnProp: 'inspectionCycle', headerAlign: "center", align: "center", columnLabel: '检验周期(h)', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, { columnProp: 'rollNo', headerAlign: "center", align: "center", columnLabel: '标签条码', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, { columnProp: 'partNo', headerAlign: "center", align: "center", columnLabel: '物料编码', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, { columnProp: 'partDesc', headerAlign: "center", align: "center", columnLabel: '物料名称', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, { columnProp: 'rollQty', headerAlign: "center", align: "right", columnLabel: '送检数量', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, { columnProp: 'samplingQty', headerAlign: "center", align: "right", columnLabel: '抽样数量', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, { columnProp: 'supplierNo', headerAlign: "center", align: "center", columnLabel: '供应商', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, { columnProp: 'inspectionRemark', headerAlign: "center", align: "center", columnLabel: '质检备注', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, { columnProp: 'disposalRemark', headerAlign: "center", align: "center", columnLabel: '处置说明', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, { columnProp: 'inspectorDate', headerAlign: "center", align: "center", columnLabel: '检验时间', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, { columnProp: 'inspectorNo', headerAlign: "center", align: "center", columnLabel: '质检员', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, ], detailColumnList: [ { columnProp: 'itemDesc', headerAlign: "center", align: "center", columnLabel: '检验项目', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, { columnProp: 'samplingLevelDesc', headerAlign: "center", align: "center", columnLabel: '检验水平', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, { columnProp: 'samplingProgrammeDesc', headerAlign: "center", align: "center", columnLabel: '检验方案', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, { columnProp: 'objectDesc', headerAlign: "center", align: "center", columnLabel: '检测仪器', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, { columnProp: 'aql', headerAlign: "center", align: "center", columnLabel: 'AQL', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, { columnProp: 'ac', headerAlign: "center", align: "center", columnLabel: 'AC', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, { columnProp: 're', headerAlign: "center", align: "center", columnLabel: 'RE', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, { columnProp: 'defaultValue', headerAlign: "center", align: "center", columnLabel: '标准值', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, { columnProp: 'maxValue', headerAlign: "center", align: "center", columnLabel: '最大值', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, { columnProp: 'minValue', headerAlign: "center", align: "center", columnLabel: '最小值', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, { columnProp: 'valueType', headerAlign: "center", align: "center", columnLabel: '检测值类型', columnHidden: false, columnImage: false, columnSortable: false, sortLv: 0, status: true, fixed: '', }, ], 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: this.$store.state.user.site, inspectionNo: '', partNo: '', partDesc: '', rollQty: '', samplingQty: '', unqualifiedQty: 0, unqualifiedQuantity: '', disposalMeasures: '', disposalRemark: '', inspectionResult: '', inspectorNo: '', inspectionRemark: '', submitFlag: '', supplierNo: '', }, detailInformationFlag: false, detailList:[], saveInformationData:{ site: this.$store.state.user.site, inspectionNo:'', disposalMeasures: '', disposalRemark: '', inspectorNo: '', inspectionRemark: '', itemList:[], }, // 子明细数据对象
tableData: [], checkedDetail: [], subDetailFlag: false, subDetailData: { site: this.$store.state.user.site, inspectionNo: '', itemNo: '', itemDesc: '', defaultValue: '', maxValue: '', minValue: '', subDetailValues:[] }, options: [], fileFlag: false, fileContentList: [], IQCSelections: [], } }, mounted () { this.$nextTick(() => { this.height = window.innerHeight - 210 }) }, created () { this.getDataList() this.favoriteIsOk() }, methods: { selectFlag(){ return true; }, // 单机选中
IQCClickRow(row){ this.$refs.IQCTable.toggleRowSelection(row); }, // 复选
selectionIQC(val){ this.IQCSelections = val }, //刷新派设备文档的列表
getFileContentData(row) { let currentData = { orderRef2: row.inspectionNo }; getFileContentList(currentData).then(({data}) => { //区分请求成功和失败的状况
if (data && data.code == 200) { this.fileContentList = data.rows; } else { this.fileContentList = []; } }) this.fileFlag = true; }, /*新增文件的modal*/ addUploadFileModal(){ let currentData = { site: this.$store.state.user.site, createBy: this.$store.state.user.name, inspectionNo: this.detailData.inspectionNo, remark: '', folder: 'qcIQC', }; //打开组件 去做新增业务
this.$nextTick(() => { this.$refs.qcFAIUploadFile.init(currentData); }) }, downloadFile(row){ downLoadObjectFile(row) .then(({data}) => { // 不限制文件下载类型
const blob = new Blob([data], {type: "application/octet-stream"}) // 下载文件名称
const fileName = row.fileName // a标签下载
const linkNode = document.createElement('a') // a标签的download属性规定下载文件的名称
linkNode.download = fileName linkNode.style.display = 'none' // 生成一个Blob URL
linkNode.href = URL.createObjectURL(blob) document.body.appendChild(linkNode) // 模拟在按钮上的一次鼠标单击
linkNode.click() // 释放URL 对象
URL.revokeObjectURL(linkNode.href) document.body.removeChild(linkNode) }) }, // 删除文件
deleteFile(row){ this.$confirm('确定要删除此文件?', '提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' }).then(() => { deleteObjectFile(row).then(({data}) => { if (data && data.code == 0) { this.getFileContentData(row); this.$message({ message: '操作成功', type: 'success', duration: 1500, onClose: () => { } }) } else { this.$alert(data.msg, '错误', { confirmButtonText: '确定' }) } }) }).catch(() => { }) },
// 清空搜索栏
doEmpty(){ this.searchData = { site: this.$store.state.user.site, inspectionNo: '', inspectionTypeNo:'105', isQualified: '', startDate: '', endDate: '', partNo:'', partDesc:'', state: '', } }, // 获取基础数据列表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.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.dataListLoading = false }) }, // 每页数
sizeChangeHandle (val) { this.pageSize = val this.pageIndex = 1 this.getDataList() }, // 当前页
currentChangeHandle (val) { this.pageIndex = val this.getDataList() }, // 多选
selectionChangeHandle (val) { this.dataListSelections = val }, // 查询检验类型
inspectorSearch(){ inspectorSearch().then(({data}) => { if (data.code == 0) { this.options = data.rows } }) }, async Transfer(){ if (this.detailData.inspectionResult == '' || this.detailData.inspectionResult == null) { this.$alert('请选择检验结论!', '错误', { confirmButtonText: '确定' }) return false } if (this.detailData.inspectorNo == '' || this.detailData.inspectorNo == null) { this.$alert('请选择检验员!', '错误', { confirmButtonText: '确定' }) return false } // if (this.detailData.inspectionResult == 'Y' && (this.detailData.disposalMeasures == '特采' || this.detailData.disposalMeasures == '拒收')) {
// this.$alert('合格不予处置措施,请查看!', '错误', {
// confirmButtonText: '确定'
// })
// return false
// }
let num = 0 // 记录结论为不合格的项目数
for (let i = 0; i < this.detailList.length; i++) { if(this.detailList[i].valueTypeDb == 'N') { // 如果检验值类型为数字
await checkIQCSubDetailValue(this.detailList[i]).then(({data}) => { if (data.flag == 2 && this.detailList[i].itemResult == 'Y') { // 如果项目实测值超出范围且项目结论为合格
this.detailList[i].itemResult = 'N' num = num + 1 } }) } if(this.detailList[i].itemResult == '' || this.detailList[i].itemResult == null){ // 默认结论为合格
this.detailList[i].itemResult = 'Y' } } if (this.detailData.inspectionResult == '合格' && num > 0){ this.$confirm('存在不合格项目,是否将检验记录保存为合格', '提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' }).then(() => { this.saveDetailInformation() }) }else { this.saveDetailInformation() } },
// 新增明细信息
saveDetailInformation(){ this.saveInformationData.inspectionNo = this.detailData.inspectionNo this.saveInformationData.disposalMeasures = this.detailData.disposalMeasures this.saveInformationData.disposalRemark = this.detailData.disposalRemark this.saveInformationData.inspectorNo = this.detailData.inspectorNo this.saveInformationData.inspectionResult = this.detailData.inspectionResult this.saveInformationData.inspectionRemark = this.detailData.inspectionRemark this.saveInformationData.itemList = JSON.parse(JSON.stringify(this.detailList)) saveIQCDetailedRecord(this.saveInformationData).then(({data}) => { if (data && data.code == 0) { this.getDataList() this.detailInformationFlag = false this.$message({ message: '操作成功', type: 'success', duration: 1500, onClose: () => {} }) } else { this.$alert(data.msg, '错误', { confirmButtonText: '确定' }) } }) }, // 明细记录信息查询
detailModal(row){ this.detailData.site = this.$store.state.user.site this.detailData.inspectionNo = row.inspectionNo this.detailData.partNo = row.partNo this.detailData.partDesc = row.partDesc 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 iqcDetailSearch(this.detailData).then(({data}) => { this.detailList = data.rows }) this.inspectorSearch(); this.detailInformationFlag = true; }, // 子明细记录信息查询
subDetailModal(row){ this.subDetailData.inspectionNo = row.inspectionNo; this.subDetailData.itemNo = row.itemNo; this.subDetailData.itemDesc = row.itemDesc; this.subDetailData.defaultValue = row.defaultValue; this.subDetailData.maxValue = row.maxValue; this.subDetailData.minValue = row.minValue; selectIQCSubDetailedRecord(this.subDetailData).then(({data}) => { this.tableData = data.rows }) this.subDetailFlag = true; }, // 删除检验记录
deleteModal () { if(this.IQCSelections.length == 0){ this.$alert('请勾选要删除的检验单!', '提示', { confirmButtonText: '确定' }) return false } this.$confirm(`是否删除该 `+ this.IQCSelections.length +` 条检验记录?`, '提示', { confirmButtonText: '确定', cancelButtonText: '取消', type: 'warning' }).then(() => { let tempData = { site: this.$store.state.user.site, submitList: this.IQCSelections } iqcRecordDelete(tempData).then(({data}) => { if (data && data.code == 0) { this.getDataList() this.IQCSelections = [] this.$message({ message: '操作成功', type: 'success', duration: 1500, onClose: () => { } }) } else { this.$alert(data.msg, '错误', { confirmButtonText: '确定' }) } }) }).catch(() => { }) }, // 审核按钮
submitResult(){ let tempData1 = '' // 记录不是待审核状态的单号
let tempData2 = '' // 记录处置措施未填写的单号
if(this.IQCSelections.length == 0){ this.$alert('请勾选要审核的检验单!', '提示', { confirmButtonText: '确定' }) return false } 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.$alert('检验单号 ' + tempData1 + ' 不是待审核状态!', '提示', { confirmButtonText: '确定' }) return false } if (tempData2 != ''){ tempData2 = tempData2.substring(0, tempData2.length - 1) this.$alert('检验单号 ' + tempData2 + ' 的处置措施未选择!', '提示', { confirmButtonText: '确定' }) return false } // this.submitData.site = row.site
// this.submitData.inspectionNo = row.inspectionNo
// this.submitData.inspectionResult = row.inspectionResult
// if (row.inspectionResult == '不合格' && (row.disposalMeasures == '' || row.disposalMeasures == null)){
// this.$alert('处置措施未选择!', '错误', {
// confirmButtonText: '确定'
// })
// return false
// }
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({ message: '操作成功', type: 'success', duration: 1500, onClose: () => { } }) } else { this.$alert(data.msg, '错误', { confirmButtonText: '确定' }) } }) }).catch(() => { }) }, // 子明细方法
//表格的新增
rowClassName({ row, rowIndex }) { row.xh = rowIndex + 1; }, //单选框选中数据
handleDetailSelectionChange(selection) { this.checkedDetail = selection; }, //点击新增更多
handleAddBtn(td) { checkIQCIsSubmit(td).then(({data}) => { if (data.flag != 1) { let obj = {}; obj.subDetailValue = ""; obj.samplingLocation = ""; this.tableData.push(obj); console.log(this.tableData) } else { this.$alert("记录已提交!", '错误', { confirmButtonText: '确定' }) } }) }, //删除
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.forEach((v, i) => { if (val.xh === v.xh) { this.tableData.splice(i, 1); } }); }); this.$message({ message: "删除成功,记得保存修改喔!", type: "success", }); return; } else { this.$message({ message: "已取消删除操作", type: "warning", }); return; } }, }); } } 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.$alert('序号' + (i+1) +'未填写实测值!', '错误', { confirmButtonText: '确定' }) return false } } this.subDetailData.subDetailValues = this.tableData saveIQCSubDetailed(this.subDetailData).then(({data}) => { if (data && data.code == 0) { this.getDataList() this.subDetailFlag = false this.tableData = [] this.$message({ message: '操作成功', type: 'success', duration: 1500, onClose: () => { } }) } else { this.$alert(data.msg, '错误', { confirmButtonText: '确定' }) } }) },
// 校验用户是否收藏
favoriteIsOk() { let userFavorite = { userId: this.$store.state.user.id, languageCode: this.$i18n.locale } console.log(this.$route.meta.menuId) userFavoriteList(userFavorite).then(({data}) => { for (let i = 0; i < data.list.length; i++) { // let flag=false;
if(this.$route.meta.menuId == data.list[i].menuId){ this.favorite = true // flag=true;
} } }) }, // 收藏 OR 取消收藏
favoriteFunction() { let userFavorite = { userId: this.$store.state.user.id, functionId: this.$route.meta.menuId, } if (this.favorite) { // 取消收藏
// this.$confirm(`确定取消收藏`, '提示', {
// confirmButtonText: '确定',
// cancelButtonText: '取消',
// type: 'warning'
// }).then(() => {
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 }) } },
//导出excel
async createExportData() { this.searchData.limit = -1 this.searchData.page = 1 await qcIQCInspectionSearch(this.searchData).then(({data}) => { this.exportList= data.page.list; }) return this.exportList; }, startDownload() {
}, finishDownload() {
}, fields() { let json = "{" this.columnList.forEach((item, index) => { if (index == this.columnList.length - 1) { json += "\"" + item.columnLabel + "\"" + ":" + "\"" + item.columnProp + "\"" } else { json += "\"" + item.columnLabel + "\"" + ":" + "\"" + item.columnProp + "\"" + "," } }) json += "}" let s = eval("(" + json + ")") return s }, // 导出 end
} }</script>
<style scoped>
</style>
|