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

559 lines
16 KiB
Vue

<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="80px">
<el-form-item label="年份" prop="goalYm">
<el-date-picker
v-model="queryParams.goalYm"
type="year"
placeholder="选择年"
clearable
@keyup.enter.native="handleQuery"
format="yyyy-MM"
value-format="yyyy-MM"
>
</el-date-picker>
</el-form-item>
<el-form-item label="检验类型" prop="typeCode">
<el-select v-model="queryParams.typeCode" placeholder="请选择检验类型" clearable style="width:100%">
<el-option
v-for="dict in dict.type.check_type"
:key="dict.value"
:label="dict.label"
:value="dict.value"
></el-option>
</el-select>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['quality:qcProjectType:add']"
>新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
plain
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['quality:qcProjectType:edit']"
>修改</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['quality:qcProjectType:remove']"
>删除</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['quality:qcProjectType:export']"
>导出</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table
v-loading="loading"
:data="qcGoalList"
@selection-change="handleSelectionChange"
row-key="id"
lazy
:load="treeLoad"
:tree-props="{children: 'children', hasChildren: 'hasChildren'}"
>
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="时间" align="center" prop="goalYm" />
<el-table-column label="目标id" align="center" prop="id" />
<el-table-column label="目标类别" align="center" prop="goalType" >
<template slot-scope="scope"><dict-tag :options="dict.type.qc_goal_type" :value="scope.row.goalType"/></template>
</el-table-column>
<el-table-column label="抽样比例" align="center" prop="nookQualityRate" >
<template slot-scope="scope">
{{ scope.row.nookQualityRate }}%
</template>
</el-table-column>
<el-table-column label="不良率" align="center" prop="nookRate" >
<template slot-scope="scope">
{{ scope.row.nookRate }}%
</template>
</el-table-column>
<el-table-column label="检验类型" align="center" prop="typeCode" >
<template slot-scope="scope"><dict-tag :options="dict.type.check_type" :value="scope.row.typeCode"/></template>
</el-table-column>
<el-table-column label="检验节点" align="center" prop="checkType" >
<template slot-scope="scope">
{{ formatCheckType(scope.row.checkType) }}
</template>
</el-table-column>
<el-table-column label="操作" align="center" width="260px" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
v-if="scope.row.goalType == 'yyyy'"
size="mini"
type="text"
icon="el-icon-document-copy"
@click="handleGenerate(scope.row)"
>拆解</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['quality:qcProjectType:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['quality:qcProjectType:remove']"
>删除</el-button>
<el-button
v-if="scope.row.goalType == 'yyyy' && scope.row.scope == '0' && scope.row.typeCode == 'material'"
size="mini"
type="text"
icon="el-icon-document-add"
@click="handleSupplier(scope.row)"
>分配供应商</el-button>
<el-button
v-if="scope.row.goalType == 'yyyy' && scope.row.scope == '0' && scope.row.typeCode != 'material'"
size="mini"
type="text"
icon="el-icon-document-add"
@click="handleProduct(scope.row)"
>分配产品</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改检验方案维护对话框 -->
<el-dialog :title="title" :visible.sync="open" width="800px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
<el-row>
<el-col :span="8">
<el-form-item label="目标类型" prop="goalType">
<el-select v-model="form.goalType" placeholder="请选择检验类型" clearable style="width:100%">
<el-option
v-for="dict in dict.type.qc_goal_type"
:key="dict.value"
:label="dict.label"
:value="dict.value"
></el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8" v-if="form.goalType=='yyyy'">
<el-form-item label="年份" prop="goalYm">
<el-date-picker
v-model="form.goalYm"
type="year"
placeholder="选择年"
style="width: 100%;"
format="yyyy"
value-format="yyyy">
</el-date-picker>
</el-form-item>
</el-col>
<el-col :span="8" v-if="form.goalType=='mm'">
<el-form-item label="月份" prop="goalYm">
<el-date-picker
v-model="form.goalYm"
type="month"
placeholder="选择月"
style="width: 100%;"
format="yyyy-MM"
value-format="yyyy-MM">
</el-date-picker>
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item label="检验类型" prop="typeCode">
<el-select v-model="form.typeCode" placeholder="请选择检验类型"
@change="handleCheckTypeList" clearable style="width:100%">
<el-option
v-for="dict in dict.type.check_type"
:key="dict.value"
:label="dict.label"
:value="dict.value"
></el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item label="检验节点" prop="checkType">
<el-select v-model="form.checkType" placeholder="请先选择检验类型" clearable :disabled="!(form.typeCode)" style="width:100%">
<el-option
v-for="item in checkTypeList"
:key="item.id"
:label="item.checkName"
:value="item.id"
></el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="8">
<el-form-item label="抽样比例(%)" prop="nookQualityRate">
<el-input type="number" min="0" max="100" v-model="form.nookQualityRate" placeholder="请输入0-100之间的数字" />
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item label="不良率(%)" prop="nookRate">
<el-input type="number" min="0" max="100" v-model="form.nookRate" placeholder="请输入0-100之间的数字" />
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item label="通用" prop="scope">
<el-checkbox v-model="form.scope" true-label="1" false-label="0">是否通用</el-checkbox>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm">确 定</el-button>
<el-button @click="cancel">取 消</el-button>
</div>
</el-dialog>
<el-dialog :title="genTitle" :visible.sync="showGenerate" width="1000px" append-to-body>
<el-table
v-loading="genLoading"
:data="genList"
row-key="id"
>
<el-table-column label="时间" align="center" prop="goalYm" />
<el-table-column label="目标id" align="center" prop="id" />
<el-table-column label="目标类别" align="center" prop="goalType" >
<template slot-scope="scope"><dict-tag :options="dict.type.qc_goal_type" :value="scope.row.goalType"/></template>
</el-table-column>
<el-table-column label="抽样比例" align="center" prop="nookQualityRate" >
<template slot-scope="scope">
{{ scope.row.nookQualityRate }}%
</template>
</el-table-column>
<el-table-column label="不良率" align="center" prop="nookRate" >
<template slot-scope="scope">
{{ scope.row.nookRate }}%
</template>
</el-table-column>
<el-table-column label="检验类型" align="center" prop="typeCode" >
<template slot-scope="scope"><dict-tag :options="dict.type.check_type" :value="scope.row.typeCode"/></template>
</el-table-column>
<el-table-column label="检验节点" align="center" prop="checkType" >
<template slot-scope="scope">
{{ formatCheckType(scope.row.checkType) }}
</template>
</el-table-column>
</el-table>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="closeGen">确定</el-button>
</div>
</el-dialog>
<el-dialog :title="disTitle" :visible.sync="showFlag" width="1000px" append-to-body >
<Distribution ref="itemDistribution"
:belongGoalId="belongGoalId"
:mode="mode"
:disTitle="disTitle"
v-if="belongGoalId !== null"
></Distribution>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="closeDistribution"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import { listQcGoal, getQcGoal, delQcGoal, addQcGoal, updateQcGoal, getChildrenList, getGenerate } from "@/api/quality/qcGoal";
import { listCheckType,} from "@/api/quality/checkType";
import Distribution from './distribution.vue';
export default {
name: "QcGoal",
dicts: ["check_type","qc_goal_type"],
components: {Distribution},
data() {
return {
// 遮罩层
loading: true,
genLoading: false,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 检验方案维护表格数据
qcGoalList: [],
checkTypeList: [],
checkTypes: [],
genList: [],
checked: false,
belongGoalId: null,
showFlag: false,
mode: null,
disTitle: "",
// 弹出层标题
title: "",
genTitle: "",
// 是否显示弹出层
open: false,
showGenerate: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
goalYm: null,
goalType: null,
attr1: null,
factoryCode: null,
parentGoal: null,
},
// 表单参数
form: {},
// 表单校验
rules: {
goalType: [
{ required: true, message: "请先选择目标类型", trigger: "blur" }
],
goalYm: [
{ required: true, message: "请选择年份", trigger: "blur" }
],
typeCode: [
{ required: true, message: "请选择检验类型", trigger: "blur" }
],
checkType: [
{ required: true, message: "请选择检验节点", trigger: "blur" }
],
nookQualityRate: [
{ required: false, pattern: /^(?:100(?:\.0{1,2})?|[1-9]?[0-9](?:\.[0-9]{1,2})?)$/, message: "请输入0-100之间的数字", trigger: "blur" }
],
nookRate: [
{ required: true, pattern: /^(?:100(?:\.0{1,2})?|[1-9]?[0-9](?:\.[0-9]{1,2})?)$/, message: "请输入0-100之间的数字", trigger: "blur" }
],
}
};
},
created() {
this.getList();
this.getCheckTypeList();
},
methods: {
/** 查询检验方案维护列表 */
getList() {
this.loading = true;
this.queryParams.parentGoal = '0';
listQcGoal(this.queryParams).then(response => {
this.qcGoalList = response.rows;
this.total = response.total;
this.loading = false;
});
},
//树表,点每一级,查询下一级: 树形动态加载表单数据:
treeLoad(tree, treeNode, resolve) {
setTimeout(() => {
getChildrenList(tree.id).then((data) => {
return resolve(data);
});
}, 222);
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
closeGen() {
this.showGenerate = false;
// this.getList();
this.$router.go(0);
},
// 表单重置
reset() {
this.form = {
id: null,
goalYm: null,
goalType: null,
nookRate: null,
nookQualityRate: null,
checkType: null,
typeCode: null,
attr1: null,
scope: '0',
createBy: null,
createTime: null,
updateBy: null,
updateTime: null,
factoryCode: null,
delFlag: null
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map(item => item.id)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加检验方案维护";
// 新增时添加默认值
this.form.goalType="yyyy"
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids
getQcGoal(id).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改检验方案维护";
this.handleCheckTypeList(this.form.typeCode);
});
},
/** 拆解按钮操作 */
handleGenerate(row) {
const id = row.id;
this.genLoading = true
this.$confirm("是否要拆解Id为" + id + "的项目","提示",{
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
getGenerate(id).then(response => {
this.genList = response.rows;
this.showGenerate = true;
this.genTitle = "质量目标拆解结果";
this.genLoading = false;
});
}).catch(() => {
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != null) {
updateQcGoal(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addQcGoal(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除质量目标维护目标id为"' + ids + '"的数据项?').then(function() {
return delQcGoal(ids);
}).then((response) => {
this.getList();
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('quality/qcProjectType/export', {
...this.queryParams
}, `qcProjectType_${new Date().getTime()}.xlsx`)
},
/** 加载时获取 */
getCheckTypeList() {
listCheckType().then(response => {
this.checkTypes = response.rows
});
},
/** 添加/修改时获取 */
handleCheckTypeList(typeCode) {
let query = {
typeCode,
}
listCheckType(query).then(response => {
this.checkTypeList = response.rows
});
},
/** 列表展示 */
formatCheckType(checkType) {
const checkTypeBody = this.checkTypes.find((item) => item.id === checkType);
return checkTypeBody ? checkTypeBody.checkName : '';
},
handleSupplier(row) {
this.belongGoalId = row.id;
this.mode = true;
this.disTitle = "分配供应商";
this.showFlag = true;
},
handleProduct(row) {
this.belongGoalId = row.id;
this.mode = false;
this.disTitle = "分配产品";
this.showFlag = true;
},
closeDistribution() {
this.showFlag = false;
this.$refs.itemDistribution.leftList=[];
this.$refs.itemDistribution.rightList=[];
},
},
};
</script>