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.
372 lines
12 KiB
Vue
372 lines
12 KiB
Vue
<template>
|
|
<div class="app-container">
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
|
<el-form-item label="质量缺陷描述" prop="qualityDefectName">
|
|
<el-input
|
|
v-model="queryParams.qualityDefectName"
|
|
placeholder="请输入质量缺陷描述"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
|
|
<el-form-item label="物料大类" prop="materialCategories">
|
|
<el-input
|
|
v-model="queryParams.materialCategories"
|
|
placeholder="请输入物料大类"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="物料小类" prop="materialSubclass">
|
|
<el-input
|
|
v-model="queryParams.materialSubclass"
|
|
placeholder="请输入物料小类"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="工厂编号" prop="plantCode">
|
|
<el-input
|
|
v-model="queryParams.plantCode"
|
|
placeholder="请输入工厂编号"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="启用标识" prop="isFlag">
|
|
<el-select v-model="queryParams.isFlag" placeholder="请选择启用标识" clearable>
|
|
<el-option
|
|
v-for="dict in dict.type.is_flag"
|
|
:key="dict.value"
|
|
:label="dict.label"
|
|
:value="dict.value"
|
|
/>
|
|
</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="['base:qualityInspectionItem: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="['base:qualityInspectionItem: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="['base:qualityInspectionItem: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="['base:qualityInspectionItem:export']"
|
|
>导出</el-button>
|
|
</el-col>
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
|
|
</el-row>
|
|
|
|
<el-table v-loading="loading" :data="qualityInspectionItemList" @selection-change="handleSelectionChange">
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
<el-table-column label="质量缺陷编号" align="center" prop="qualityDefectCode" v-if="columns[1].visible"/>
|
|
<el-table-column label="质量缺陷描述" align="center" prop="qualityDefectName" v-if="columns[2].visible"/>
|
|
<el-table-column label="备注" align="center" prop="remark" v-if="columns[7].visible"/>
|
|
<el-table-column label="启用标识" align="center" prop="isFlag" v-if="columns[8].visible">
|
|
<template slot-scope="scope">
|
|
<dict-tag :options="dict.type.is_flag" :value="scope.row.isFlag"/>
|
|
</template>
|
|
</el-table-column>
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
<template slot-scope="scope">
|
|
<el-button
|
|
size="mini"
|
|
type="text"
|
|
icon="el-icon-edit"
|
|
@click="handleUpdate(scope.row)"
|
|
v-hasPermi="['base:qualityInspectionItem:edit']"
|
|
>修改</el-button>
|
|
<el-button
|
|
size="mini"
|
|
type="text"
|
|
icon="el-icon-delete"
|
|
@click="handleDelete(scope.row)"
|
|
v-hasPermi="['base:qualityInspectionItem:remove']"
|
|
>删除</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-form-item label="质量缺陷编号" prop="qualityDefectCode">
|
|
<el-input v-model="form.qualityDefectCode" placeholder="请输入质量缺陷编号" />
|
|
</el-form-item>
|
|
<el-form-item label="质量缺陷描述" prop="qualityDefectName">
|
|
<el-input v-model="form.qualityDefectName" placeholder="请输入质量缺陷描述" />
|
|
</el-form-item>
|
|
<el-form-item label="质检项名称" prop="parentId">
|
|
<el-select v-model="form.parentId" placeholder="请选择质检项">
|
|
<el-option
|
|
v-for="item in Parents"
|
|
:key="item.qualityDefectCode"
|
|
:label="item.qualityDefectName"
|
|
:value="item.qualityDefectCode">
|
|
</el-option>
|
|
</el-select>
|
|
</el-form-item>
|
|
<el-form-item label="备注" prop="remark">
|
|
<el-input v-model="form.remark" placeholder="请输入备注" />
|
|
</el-form-item>
|
|
<el-form-item label="启用标识" prop="isFlag">
|
|
<el-radio-group v-model="form.isFlag">
|
|
<el-radio
|
|
v-for="dict in dict.type.is_flag"
|
|
:key="dict.value"
|
|
:label="parseInt(dict.value)"
|
|
>{{dict.label}}</el-radio>
|
|
</el-radio-group>
|
|
</el-form-item>
|
|
</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>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
listQualityInspectionItem,
|
|
getQualityInspectionItem,
|
|
delQualityInspectionItem,
|
|
addQualityInspectionItem,
|
|
updateQualityInspectionItem,
|
|
getQualityInspectionItemParent
|
|
} from '@/api/base/qualityInspectionItem'
|
|
|
|
export default {
|
|
name: "QualityInspectionItem",
|
|
dicts: ['is_flag'],
|
|
data() {
|
|
return {
|
|
Parents:"",
|
|
// 遮罩层
|
|
loading: true,
|
|
// 选中数组
|
|
ids: [],
|
|
// 非单个禁用
|
|
single: true,
|
|
// 非多个禁用
|
|
multiple: true,
|
|
// 显示搜索条件
|
|
showSearch: true,
|
|
// 总条数
|
|
total: 0,
|
|
// 质检项信息维护表格数据
|
|
qualityInspectionItemList: [],
|
|
// 弹出层标题
|
|
title: "",
|
|
// 是否显示弹出层
|
|
open: false,
|
|
// 查询参数
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
qualityDefectCode: null,
|
|
qualityDefectName: null,
|
|
parentId: null,
|
|
materialCategories: null,
|
|
materialSubclass: null,
|
|
plantCode: null,
|
|
isFlag: null,
|
|
createdBy: null,
|
|
createdTime: null,
|
|
updatedBy: null,
|
|
updatedTime: null
|
|
},
|
|
// 表单参数
|
|
form: {},
|
|
// 表单校验
|
|
rules: {
|
|
},
|
|
columns: [
|
|
{ key: 0, label: `主键标识`, visible: true },
|
|
{ key: 1, label: `质检项/质量缺陷编号`, visible: true },
|
|
{ key: 2, label: `质检项/质量缺陷描述`, visible: true },
|
|
{ key: 3, label: `父级编号`, visible: true },
|
|
{ key: 4, label: `物料大类`, visible: true },
|
|
{ key: 5, label: `物料小类`, visible: true },
|
|
{ key: 6, label: `工厂编号`, visible: true },
|
|
{ key: 7, label: `备注`, visible: true },
|
|
{ key: 8, label: `启用标识`, visible: true },
|
|
{ key: 9, label: `创建人`, visible: true },
|
|
{ key: 10, label: `创建时间`, visible: true },
|
|
{ key: 11, label: `更新人`, visible: true },
|
|
{ key: 12, label: `更新时间`, visible: true },
|
|
]
|
|
};
|
|
},
|
|
created() {
|
|
this.queryParams.parentId = this.$route.params && this.$route.params.parentId;
|
|
// console.log( this.queryParams.parentId)
|
|
this.getList();
|
|
this.getParent();
|
|
},
|
|
methods: {
|
|
/** 查询所有的父级 */
|
|
getParent(){
|
|
getQualityInspectionItemParent(this.queryParams).then(response =>{
|
|
// console.log(response.data)
|
|
this.Parents = response.data;
|
|
})
|
|
},
|
|
/** 查询质检项信息维护列表 */
|
|
getList() {
|
|
this.loading = true;
|
|
listQualityInspectionItem(this.queryParams).then(response => {
|
|
this.qualityInspectionItemList = response.rows;
|
|
this.total = response.total;
|
|
this.loading = false;
|
|
});
|
|
},
|
|
// 取消按钮
|
|
cancel() {
|
|
this.open = false;
|
|
this.reset();
|
|
},
|
|
// 表单重置
|
|
reset() {
|
|
this.form = {
|
|
objId: null,
|
|
qualityDefectCode: null,
|
|
qualityDefectName: null,
|
|
parentId: null,
|
|
materialCategories: null,
|
|
materialSubclass: null,
|
|
plantCode: null,
|
|
remark: null,
|
|
isFlag: 0,
|
|
createdBy: null,
|
|
createdTime: null,
|
|
updatedBy: null,
|
|
updatedTime: 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.objId)
|
|
this.single = selection.length!==1
|
|
this.multiple = !selection.length
|
|
},
|
|
/** 新增按钮操作 */
|
|
handleAdd() {
|
|
this.reset();
|
|
this.open = true;
|
|
this.title = "添加质检项信息维护";
|
|
},
|
|
/** 修改按钮操作 */
|
|
handleUpdate(row) {
|
|
this.reset();
|
|
const objId = row.objId || this.ids
|
|
getQualityInspectionItem(objId).then(response => {
|
|
this.form = response.data;
|
|
this.open = true;
|
|
this.title = "修改质检项信息维护";
|
|
});
|
|
},
|
|
/** 提交按钮 */
|
|
submitForm() {
|
|
this.$refs["form"].validate(valid => {
|
|
if (valid) {
|
|
if (this.form.objId != null) {
|
|
updateQualityInspectionItem(this.form).then(response => {
|
|
this.$modal.msgSuccess("修改成功");
|
|
this.open = false;
|
|
this.getList();
|
|
});
|
|
} else {
|
|
addQualityInspectionItem(this.form).then(response => {
|
|
this.$modal.msgSuccess("新增成功");
|
|
this.open = false;
|
|
this.getList();
|
|
});
|
|
}
|
|
}
|
|
});
|
|
},
|
|
/** 删除按钮操作 */
|
|
handleDelete(row) {
|
|
const objIds = row.objId || this.ids;
|
|
this.$modal.confirm('是否确认删除质检项信息维护编号为"' + objIds + '"的数据项?').then(function() {
|
|
return delQualityInspectionItem(objIds);
|
|
}).then(() => {
|
|
this.getList();
|
|
this.$modal.msgSuccess("删除成功");
|
|
}).catch(() => {});
|
|
},
|
|
/** 导出按钮操作 */
|
|
handleExport() {
|
|
this.download('base/qualityInspectionItem/export', {
|
|
...this.queryParams
|
|
}, `qualityInspectionItem_${new Date().getTime()}.xlsx`)
|
|
}
|
|
}
|
|
};
|
|
</script>
|