| | |
| | | <template> |
| | | <div class="app-container"> |
| | | <div class="search_form"> |
| | | <el-form :model="searchForm" inline style="margin-bottom: 0;"> |
| | | <el-form-item label="类型:"> |
| | | <el-select v-model="searchForm.inspectType" clearable style="width: 200px" @change="handleQuery"> |
| | | <el-option label="原材料检验" :value="0" /> |
| | | <el-option label="过程检验" :value="1" /> |
| | | <el-option label="出厂检验" :value="2" /> |
| | | </el-select> |
| | | <el-form :model="queryParams" inline style="margin-bottom: 0;"> |
| | | <el-form-item label="处理单编号"> |
| | | <el-input v-model="queryParams.orderNo" style="width: 200px" placeholder="输入编号" clearable |
| | | :prefix-icon="Search" @change="handleQuery" /> |
| | | </el-form-item> |
| | | <el-form-item label="状态:"> |
| | | <el-select v-model="searchForm.inspectState" clearable style="width: 200px" @change="handleQuery"> |
| | | <el-option label="待处理" :value="0" /> |
| | | <el-option label="已处理" :value="1" /> |
| | | </el-select> |
| | | <el-form-item label="项目名称"> |
| | | <el-input v-model="queryParams.projectName" style="width: 200px" placeholder="输入项目" clearable |
| | | :prefix-icon="Search" @change="handleQuery" /> |
| | | </el-form-item> |
| | | <el-form-item label="产品名称:"> |
| | | <el-input |
| | | v-model="searchForm.productName" |
| | | style="width: 200px" |
| | | placeholder="请输入产品名称搜索" |
| | | @change="handleQuery" |
| | | clearable |
| | | :prefix-icon="Search" |
| | | /> |
| | | </el-form-item> |
| | | <el-form-item label="检测日期:"> |
| | | <el-date-picker v-model="searchForm.entryDate" value-format="YYYY-MM-DD" format="YYYY-MM-DD" type="daterange" |
| | | style="width: 300px" |
| | | placeholder="请选择" clearable @change="changeDaterange" /> |
| | | <!-- <el-form-item label="状态">–>--> |
| | | <!-- <el-select v-model="queryParams.status" clearable style="width: 150px" @change="handleQuery" placeholder="全部">–>--> |
| | | <!-- <el-option label="草稿" :value="0" />–>--> |
| | | <!-- <el-option label="待审批" :value="1" />–>--> |
| | | <!-- <el-option label="审批中" :value="2" />–>--> |
| | | <!-- <el-option label="已完成" :value="3" />–>--> |
| | | <!-- <el-option label="已驳回" :value="4" />–>--> |
| | | <!-- </el-select>–>--> |
| | | <!-- </el-form-item>–>--> |
| | | <el-form-item label="创建时间"> |
| | | <el-date-picker v-model="dateRange" value-format="YYYY-MM-DD" type="daterange" |
| | | style="width: 260px" placeholder="请选择" clearable @change="changeDaterange" /> |
| | | </el-form-item> |
| | | <el-form-item> |
| | | <el-button type="primary" @click="handleQuery">搜索</el-button> |
| | | <el-button @click="resetQuery">重置</el-button> |
| | | </el-form-item> |
| | | </el-form> |
| | | </div> |
| | | <div class="mb20" style="text-align: right;"> |
| | | <!-- <el-button type="primary" @click="openForm('add')">新增</el-button>--> |
| | | <el-button type="primary" @click="openOrderForm">处理单</el-button> |
| | | <el-button @click="handleOut">导出</el-button> |
| | | <el-button type="danger" plain @click="handleDelete">删除</el-button> |
| | | </div> |
| | | <div class="table_list"> |
| | | <PIMTable |
| | | rowKey="id" |
| | | :column="tableColumn" |
| | | :tableData="tableData" |
| | | :page="page" |
| | | :isSelection="true" |
| | | @selection-change="handleSelectionChange" |
| | | :tableLoading="tableLoading" |
| | | @pagination="pagination" |
| | | :total="page.total" |
| | | ></PIMTable> |
| | | <el-button type="primary" @click="handleAdd">新增处理单</el-button> |
| | | <el-button type="danger" plain :disabled="!selectedRows.length" @click="handleDelete">删除</el-button> |
| | | </div> |
| | | <FormDia ref="formDia" @close="handleQuery"></FormDia> |
| | | <InspectionFormDia ref="inspectionFormDia" @close="handleQuery"></InspectionFormDia> |
| | | <OrderFormDia ref="orderFormDia" @close="handleQuery"></OrderFormDia> |
| | | <div class="table_list"> |
| | | <PIMTable rowKey="id" :column="tableColumn" :tableData="tableData" :page="page" |
| | | :isSelection="true" @selection-change="handleSelectionChange" |
| | | :tableLoading="tableLoading" @pagination="pagination" :total="page.total" /> |
| | | </div> |
| | | <OrderFormDia ref="orderFormDia" @close="handleQuery" /> |
| | | </div> |
| | | </template> |
| | | |
| | | <script setup> |
| | | import { Search } from "@element-plus/icons-vue"; |
| | | import {onMounted, ref, reactive, toRefs, nextTick, getCurrentInstance} from "vue"; |
| | | import FormDia from "@/views/qualityManagement/nonconformingManagement/components/formDia.vue"; |
| | | import {ElMessageBox} from "element-plus"; |
| | | import {qualityUnqualifiedDel, qualityUnqualifiedListPage} from "@/api/qualityManagement/nonconformingManagement.js"; |
| | | import InspectionFormDia from "@/views/qualityManagement/nonconformingManagement/components/inspectionFormDia.vue"; |
| | | import { onMounted, ref, reactive, nextTick, getCurrentInstance } from "vue"; |
| | | import { ElMessageBox } from "element-plus"; |
| | | import { |
| | | qualityUnqualifiedOrderListPage, |
| | | deleteQualityUnqualifiedOrder, |
| | | } from "@/api/qualityManagement/nonconformingManagement.js"; |
| | | import OrderFormDia from "@/views/qualityManagement/nonconformingManagement/components/orderFormDia.vue"; |
| | | import dayjs from "dayjs"; |
| | | |
| | | const data = reactive({ |
| | | searchForm: { |
| | | inspectType: "", |
| | | inspectState: "", |
| | | productName: "", |
| | | entryDate: undefined, // 录入日期 |
| | | entryDateStart: undefined, |
| | | entryDateEnd: undefined, |
| | | }, |
| | | const { proxy } = getCurrentInstance(); |
| | | |
| | | const disposalMethodMap = { 1: "让步接收", 2: "厂内维修", 3: "返厂维修", 4: "换货", 5: "退货", 6: "报废" }; |
| | | const statusMap = { 0: "草稿", 1: "待审批", 2: "审批中", 3: "已完成", 4: "已驳回" }; |
| | | |
| | | const queryParams = reactive({ |
| | | orderNo: "", |
| | | projectName: "", |
| | | status: null, |
| | | entryDateStart: undefined, |
| | | entryDateEnd: undefined, |
| | | }); |
| | | const { searchForm } = toRefs(data); |
| | | const tableColumn = ref([ |
| | | { |
| | | label: "状态", |
| | | prop: "inspectState", |
| | | dataType: "tag", |
| | | formatData: (params) => { |
| | | if (params == 0) { |
| | | return "待处理"; |
| | | } else if (params == 1) { |
| | | return "已处理"; |
| | | } else { |
| | | return null; |
| | | } |
| | | }, |
| | | formatType: (params) => { |
| | | if (params == '不合格') { |
| | | return "danger"; |
| | | } else if (params == '合格') { |
| | | return "success"; |
| | | } else { |
| | | return 'danger'; |
| | | } |
| | | }, |
| | | }, |
| | | { |
| | | label: "检测日期", |
| | | prop: "checkTime", |
| | | width: 120 |
| | | }, |
| | | { |
| | | label: "类别", |
| | | prop: "inspectType", |
| | | dataType: "tag", |
| | | width: 120, |
| | | formatData: (params) => { |
| | | if (params == 0) { |
| | | return "原材料检验"; |
| | | } else if (params == 1) { |
| | | return "过程检验"; |
| | | } else { |
| | | return '出厂检验'; |
| | | } |
| | | }, |
| | | formatType: (params) => { |
| | | if (params == '不合格') { |
| | | return "info"; |
| | | } else if (params == '合格') { |
| | | return "success"; |
| | | } else { |
| | | return 'primary'; |
| | | } |
| | | }, |
| | | }, |
| | | { |
| | | label: "检验员", |
| | | prop: "checkName", |
| | | }, |
| | | { |
| | | label: "产品名称", |
| | | prop: "productName", |
| | | }, |
| | | { |
| | | label: "规格型号", |
| | | prop: "model", |
| | | }, |
| | | { |
| | | label: "单位", |
| | | prop: "unit", |
| | | }, |
| | | { |
| | | label: "数量", |
| | | prop: "quantity", |
| | | width: 100 |
| | | }, |
| | | { |
| | | label: "不合格现象", |
| | | prop: "defectivePhenomena", |
| | | width: 120 |
| | | }, |
| | | { |
| | | label: "处理结果", |
| | | prop: "dealResult", |
| | | width: 120 |
| | | }, |
| | | { |
| | | label: "处理人", |
| | | prop: "dealName", |
| | | width: 120 |
| | | }, |
| | | { |
| | | label: "处理日期", |
| | | prop: "dealTime", |
| | | width: 120 |
| | | }, |
| | | { |
| | | dataType: "action", |
| | | label: "操作", |
| | | align: "center", |
| | | fixed: "right", |
| | | width: 100, |
| | | operation: [ |
| | | { |
| | | name: "处理", |
| | | type: "text", |
| | | clickFun: (row) => { |
| | | openInspectionForm("edit", row); |
| | | }, |
| | | disabled: (row) => row.inspectState === 1, |
| | | }, |
| | | ], |
| | | }, |
| | | ]); |
| | | |
| | | const dateRange = ref(undefined); |
| | | const tableData = ref([]); |
| | | const selectedRows = ref([]); |
| | | const tableLoading = ref(false); |
| | | const page = reactive({ |
| | | current: 1, |
| | | size: 100, |
| | | total: 0 |
| | | total: 0, |
| | | }); |
| | | const formDia = ref() |
| | | const inspectionFormDia = ref() |
| | | const orderFormDia = ref() |
| | | const { proxy } = getCurrentInstance() |
| | | const orderFormDia = ref(); |
| | | |
| | | const tableColumn = ref([ |
| | | { |
| | | label: "处理单编号", |
| | | prop: "orderNo", |
| | | width: 160, |
| | | }, |
| | | { |
| | | label: "项目名称", |
| | | prop: "projectName", |
| | | }, |
| | | { |
| | | label: "型号规格", |
| | | prop: "specificationModel", |
| | | width: 120, |
| | | }, |
| | | { |
| | | label: "不合格数量", |
| | | prop: "unqualifiedQuantity", |
| | | width: 100, |
| | | }, |
| | | { |
| | | label: "处置方式", |
| | | prop: "disposalMethod", |
| | | width: 110, |
| | | dataType: "tag", |
| | | formatData: (val) => disposalMethodMap[val] || "", |
| | | }, |
| | | // { |
| | | // label: "状态", |
| | | // prop: "status", |
| | | // width: 80, |
| | | // dataType: "tag", |
| | | // formatData: (val) => statusMap[val] || "", |
| | | // formatType: (val) => { |
| | | // const map = { 0: "info", 1: "warning", 2: "", 3: "success", 4: "danger" }; |
| | | // return map[val] || "info"; |
| | | // }, |
| | | // }, |
| | | { |
| | | label: "检验员", |
| | | prop: "inspectorName", |
| | | width: 100, |
| | | }, |
| | | { |
| | | label: "检验日期", |
| | | prop: "inspectDate", |
| | | width: 110, |
| | | }, |
| | | { |
| | | label: "创建时间", |
| | | prop: "createTime", |
| | | width: 160, |
| | | }, |
| | | { |
| | | dataType: "action", |
| | | label: "操作", |
| | | align: "center", |
| | | fixed: "right", |
| | | width: 160, |
| | | operation: [ |
| | | { |
| | | name: "导出", |
| | | type: "text", |
| | | clickFun: (row) => { |
| | | handleExport(row); |
| | | }, |
| | | }, |
| | | { |
| | | name: "处置", |
| | | type: "text", |
| | | showHide: (row) => row.status === 0, |
| | | clickFun: (row) => { |
| | | nextTick(() => { |
| | | orderFormDia.value?.openDialog("dispose", row); |
| | | }); |
| | | }, |
| | | }, |
| | | { |
| | | name: "编辑", |
| | | type: "text", |
| | | clickFun: (row) => { |
| | | nextTick(() => { |
| | | orderFormDia.value?.openDialog("edit", row); |
| | | }); |
| | | }, |
| | | }, |
| | | { |
| | | name: "详情", |
| | | type: "text", |
| | | clickFun: (row) => { |
| | | nextTick(() => { |
| | | orderFormDia.value?.openDialog("view", row); |
| | | }); |
| | | }, |
| | | }, |
| | | ], |
| | | }, |
| | | ]); |
| | | |
| | | const changeDaterange = (value) => { |
| | | searchForm.value.entryDateStart = undefined; |
| | | searchForm.value.entryDateEnd = undefined; |
| | | queryParams.entryDateStart = undefined; |
| | | queryParams.entryDateEnd = undefined; |
| | | if (value) { |
| | | searchForm.value.entryDateStart = dayjs(value[0]).format("YYYY-MM-DD"); |
| | | searchForm.value.entryDateEnd = dayjs(value[1]).format("YYYY-MM-DD"); |
| | | queryParams.entryDateStart = dayjs(value[0]).format("YYYY-MM-DD"); |
| | | queryParams.entryDateEnd = dayjs(value[1]).format("YYYY-MM-DD"); |
| | | } |
| | | getList(); |
| | | }; |
| | | // 查询列表 |
| | | /** 搜索按钮操作 */ |
| | | |
| | | const handleQuery = () => { |
| | | page.current = 1; |
| | | getList(); |
| | | }; |
| | | |
| | | const resetQuery = () => { |
| | | queryParams.orderNo = ""; |
| | | queryParams.projectName = ""; |
| | | queryParams.status = null; |
| | | dateRange.value = undefined; |
| | | queryParams.entryDateStart = undefined; |
| | | queryParams.entryDateEnd = undefined; |
| | | handleQuery(); |
| | | }; |
| | | |
| | | const pagination = (obj) => { |
| | | page.current = obj.page; |
| | | page.size = obj.limit; |
| | | getList(); |
| | | }; |
| | | |
| | | const getList = () => { |
| | | tableLoading.value = true; |
| | | const params = { ...searchForm.value, ...page }; |
| | | params.entryDate = undefined |
| | | qualityUnqualifiedListPage(params).then(res => { |
| | | tableLoading.value = false; |
| | | tableData.value = res.data.records |
| | | page.total = res.data.total; |
| | | }).catch(err => { |
| | | tableLoading.value = false; |
| | | }) |
| | | const params = { ...queryParams, page: page.current, size: page.size }; |
| | | qualityUnqualifiedOrderListPage(params) |
| | | .then((res) => { |
| | | tableLoading.value = false; |
| | | tableData.value = res.data?.records || []; |
| | | page.total = res.data?.total || 0; |
| | | }) |
| | | .catch(() => { |
| | | tableLoading.value = false; |
| | | }); |
| | | }; |
| | | // 表格选择数据 |
| | | |
| | | const handleSelectionChange = (selection) => { |
| | | selectedRows.value = selection; |
| | | }; |
| | | |
| | | // 打开弹框 |
| | | const openForm = (type, row) => { |
| | | if (type !== 'add' && row?.inspectState === 1) { |
| | | proxy.$modal.msgWarning("已处理的数据不能再编辑"); |
| | | return; |
| | | } |
| | | nextTick(() => { |
| | | formDia.value?.openDialog(type, row) |
| | | }) |
| | | }; |
| | | // 打开处理弹框 |
| | | const openInspectionForm = (type, row) => { |
| | | if (row?.inspectState === 1) { |
| | | proxy.$modal.msgWarning("已处理的数据不能再处理"); |
| | | return; |
| | | } |
| | | nextTick(() => { |
| | | inspectionFormDia.value?.openDialog(type, row) |
| | | }) |
| | | }; |
| | | |
| | | // 打开处理单弹框 |
| | | const openOrderForm = () => { |
| | | const handleAdd = () => { |
| | | nextTick(() => { |
| | | orderFormDia.value?.openDialog("add", null); |
| | | }); |
| | | }; |
| | | |
| | | // 删除 |
| | | const handleDelete = () => { |
| | | let ids = []; |
| | | if (selectedRows.value.length > 0) { |
| | | ids = selectedRows.value.map((item) => item.id); |
| | | } else { |
| | | if (selectedRows.value.length === 0) { |
| | | proxy.$modal.msgWarning("请选择数据"); |
| | | return; |
| | | } |
| | | ElMessageBox.confirm("选中的内容将被删除,是否确认删除?", "导出", { |
| | | const ids = selectedRows.value.map((item) => item.id); |
| | | ElMessageBox.confirm("选中的处理单将被删除,是否确认?", "提示", { |
| | | confirmButtonText: "确认", |
| | | cancelButtonText: "取消", |
| | | type: "warning", |
| | | }) |
| | | .then(() => { |
| | | qualityUnqualifiedDel(ids).then((res) => { |
| | | proxy.$modal.msgSuccess("删除成功"); |
| | | getList(); |
| | | }); |
| | | }) |
| | | .catch(() => { |
| | | proxy.$modal.msg("已取消"); |
| | | .then(() => { |
| | | deleteQualityUnqualifiedOrder(ids).then(() => { |
| | | proxy.$modal.msgSuccess("删除成功"); |
| | | getList(); |
| | | }); |
| | | }) |
| | | .catch(() => { |
| | | proxy.$modal.msg("已取消"); |
| | | }); |
| | | }; |
| | | // 导出 |
| | | const handleOut = () => { |
| | | ElMessageBox.confirm("选中的内容将被导出,是否确认导出?", "导出", { |
| | | confirmButtonText: "确认", |
| | | cancelButtonText: "取消", |
| | | type: "warning", |
| | | }) |
| | | .then(() => { |
| | | proxy.download("/quality/qualityUnqualified/export", {}, "不合格管理.xlsx"); |
| | | }) |
| | | .catch(() => { |
| | | proxy.$modal.msg("已取消"); |
| | | }); |
| | | |
| | | const handleExport = (row) => { |
| | | proxy.$download.zip( |
| | | `/qualityUnqualifiedOrder/export/${row.id}`, |
| | | `不合格品处理单_${row.orderNo || row.id}.xlsx` |
| | | ); |
| | | }; |
| | | |
| | | onMounted(() => { |
| | | getList(); |
| | | }); |