<template>
|
<div class="app-container">
|
<div class="search_form">
|
<div style="display: flex;flex-direction: row;align-items: center;">
|
<div>
|
<span class="search_title">类型:</span>
|
<el-select v-model="searchForm.inspectType" clearable style="width: 240px" @change="handleQuery">
|
<el-option label="原材料检验" :value="0" />
|
<el-option label="过程检验" :value="1" />
|
<el-option label="出厂检验" :value="2" />
|
</el-select>
|
</div>
|
<div style="margin-left: 10px">
|
<span class="search_title">状态:</span>
|
<el-select v-model="searchForm.inspectState" clearable style="width: 240px" @change="handleQuery">
|
<el-option label="待处理" :value="0" />
|
<el-option label="已处理" :value="1" />
|
</el-select>
|
</div>
|
<div style="margin-left: 10px">
|
<span class="search_title">产品名称:</span>
|
<el-input
|
v-model="searchForm.productName"
|
style="width: 240px"
|
placeholder="请输入产品名称搜索"
|
@change="handleQuery"
|
clearable
|
:prefix-icon="Search"
|
/>
|
</div>
|
<el-button type="primary" @click="handleQuery" style="margin-left: 10px">搜索</el-button>
|
</div>
|
<div>
|
<el-button type="primary" @click="openForm('add')">新增</el-button>
|
<el-button @click="handleOut">导出</el-button>
|
<el-button type="danger" plain @click="handleDelete">删除</el-button>
|
</div>
|
</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>
|
</div>
|
<FormDia ref="formDia" @close="handleQuery"></FormDia>
|
<InspectionFormDia ref="inspectionFormDia" @close="handleQuery"></InspectionFormDia>
|
</div>
|
</template>
|
|
<script setup>
|
import { Search } from "@element-plus/icons-vue";
|
import {onMounted, ref} 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";
|
|
const data = reactive({
|
searchForm: {
|
inspectType: "",
|
inspectState: "",
|
productName: "",
|
},
|
});
|
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 null;
|
}
|
},
|
},
|
{
|
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: 120,
|
operation: [
|
{
|
name: "编辑",
|
type: "text",
|
clickFun: (row) => {
|
openForm("edit", row);
|
},
|
},
|
{
|
name: "处理",
|
type: "text",
|
clickFun: (row) => {
|
openInspectionForm("edit", row);
|
},
|
},
|
],
|
},
|
]);
|
const tableData = ref([]);
|
const selectedRows = ref([]);
|
const tableLoading = ref(false);
|
const page = reactive({
|
current: 1,
|
size: 100,
|
total: 0
|
});
|
const formDia = ref()
|
const inspectionFormDia = ref()
|
const { proxy } = getCurrentInstance()
|
|
// 查询列表
|
/** 搜索按钮操作 */
|
const handleQuery = () => {
|
page.current = 1;
|
getList();
|
};
|
const pagination = (obj) => {
|
page.current = obj.page;
|
page.size = obj.limit;
|
getList();
|
};
|
const getList = () => {
|
tableLoading.value = true;
|
qualityUnqualifiedListPage({...page, ...searchForm.value}).then(res => {
|
tableLoading.value = false;
|
tableData.value = res.data.records
|
page.total = res.data.total;
|
}).catch(err => {
|
tableLoading.value = false;
|
})
|
};
|
// 表格选择数据
|
const handleSelectionChange = (selection) => {
|
selectedRows.value = selection;
|
};
|
|
// 打开弹框
|
const openForm = (type, row) => {
|
nextTick(() => {
|
formDia.value?.openDialog(type, row)
|
})
|
};
|
// 打开处理弹框
|
const openInspectionForm = (type, row) => {
|
nextTick(() => {
|
inspectionFormDia.value?.openDialog(type, row)
|
})
|
};
|
|
// 删除
|
const handleDelete = () => {
|
let ids = [];
|
if (selectedRows.value.length > 0) {
|
ids = selectedRows.value.map((item) => item.id);
|
} else {
|
proxy.$modal.msgWarning("请选择数据");
|
return;
|
}
|
ElMessageBox.confirm("选中的内容将被删除,是否确认删除?", "导出", {
|
confirmButtonText: "确认",
|
cancelButtonText: "取消",
|
type: "warning",
|
})
|
.then(() => {
|
qualityUnqualifiedDel(ids).then((res) => {
|
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("已取消");
|
});
|
};
|
onMounted(() => {
|
getList();
|
});
|
</script>
|
|
<style scoped></style>
|