质检项信息维护
parent
9aedce7737
commit
1430e4abda
@ -0,0 +1,51 @@
|
||||
import request from '@/utils/request'
|
||||
|
||||
// 查询质检项信息维护列表
|
||||
export function listQualityInspectionItem(query) {
|
||||
return request({
|
||||
url: '/base/qualityInspectionItem/list',
|
||||
method: 'get',
|
||||
params: query
|
||||
})
|
||||
}
|
||||
|
||||
// 查询质检项信息维护详细
|
||||
export function getQualityInspectionItem(objId) {
|
||||
return request({
|
||||
url: '/base/qualityInspectionItem/' + objId,
|
||||
method: 'get'
|
||||
})
|
||||
}
|
||||
|
||||
// 新增质检项信息维护
|
||||
export function addQualityInspectionItem(data) {
|
||||
return request({
|
||||
url: '/base/qualityInspectionItem',
|
||||
method: 'post',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 修改质检项信息维护
|
||||
export function updateQualityInspectionItem(data) {
|
||||
return request({
|
||||
url: '/base/qualityInspectionItem',
|
||||
method: 'put',
|
||||
data: data
|
||||
})
|
||||
}
|
||||
|
||||
// 删除质检项信息维护
|
||||
export function delQualityInspectionItem(objId) {
|
||||
return request({
|
||||
url: '/base/qualityInspectionItem/' + objId,
|
||||
method: 'delete'
|
||||
})
|
||||
}
|
||||
//查询所有的父级
|
||||
export function getQualityInspectionItemParent(){
|
||||
return request({
|
||||
url:'/base/qualityInspectionItem/getParent',
|
||||
method :'get'
|
||||
})
|
||||
}
|
@ -0,0 +1,372 @@
|
||||
<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="80px">
|
||||
<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>
|
@ -0,0 +1,399 @@
|
||||
<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="qualityDefectCode">
|
||||
<el-input
|
||||
v-model="queryParams.qualityDefectCode"
|
||||
placeholder="请输入质检项编码"
|
||||
clearable
|
||||
@keyup.enter.native="handleQuery"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="物料大类" prop="materialCategories">
|
||||
<el-select v-model="queryParams.materialCategories" placeholder="请选择物料大类" clearable>
|
||||
<el-option
|
||||
v-for="dict in dict.type.material_categories"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="dict.value"
|
||||
/>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="物料小类" prop="materialSubclass">
|
||||
<el-select v-model="queryParams.materialSubclass" placeholder="请选择物料大类" clearable>
|
||||
<el-option
|
||||
v-for="dict in dict.type.material_subclass"
|
||||
:key="dict.value"
|
||||
:label="dict.label"
|
||||
:value="dict.value"
|
||||
/>
|
||||
</el-select>
|
||||
</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">
|
||||
<template slot-scope="scope">
|
||||
<router-link :to="'/base/qualityInspectionItemChild/index/' + scope.row.qualityDefectCode" class="link-type">
|
||||
<span>{{ scope.row.qualityDefectCode}}</span>
|
||||
</router-link>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="质检项名称" align="center" prop="qualityDefectName" v-if="columns[2].visible"/>
|
||||
<el-table-column label="物料大类" align="center" prop="materialCategories" v-if="columns[4].visible">
|
||||
<template slot-scope="scope">
|
||||
<dict-tag :options="dict.type.material_categories" :value="scope.row.materialCategories"/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="物料小类" align="center" prop="materialSubclass" v-if="columns[5].visible">
|
||||
<template slot-scope="scope">
|
||||
<dict-tag :options="dict.type.material_subclass" :value="scope.row.materialSubclass"/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="工厂编号" align="center" prop="plantCode" v-if="columns[6].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" prop="createdBy" v-if="columns[9].visible"/>
|
||||
<el-table-column label="创建时间" align="center" prop="createdTime" width="180" v-if="columns[10].visible">
|
||||
<template slot-scope="scope">
|
||||
<span>{{ parseTime(scope.row.createdTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<!-- <el-table-column label="更新人" align="center" prop="updatedBy" v-if="columns[11].visible"/>-->
|
||||
<!-- <el-table-column label="更新时间" align="center" prop="updatedTime" width="180" v-if="columns[12].visible">-->
|
||||
<!-- <template slot-scope="scope">-->
|
||||
<!-- <span>{{ parseTime(scope.row.updatedTime, '{y}-{m}-{d} {h}:{i}:{s}') }}</span>-->
|
||||
<!-- </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="materialCategories">
|
||||
<el-radio-group v-model="form.materialCategories">
|
||||
<el-radio
|
||||
v-for="dict in dict.type.material_categories"
|
||||
:key="dict.value"
|
||||
:label="dict.value"
|
||||
>{{dict.label}}</el-radio>
|
||||
</el-radio-group>
|
||||
</el-form-item>
|
||||
<el-form-item label="物料小类" prop="materialSubclass">
|
||||
<el-radio-group v-model="form.materialSubclass">
|
||||
<el-radio
|
||||
v-for="dict in dict.type.material_subclass"
|
||||
:key="dict.value"
|
||||
:label="dict.value"
|
||||
>{{dict.label}}</el-radio>
|
||||
</el-radio-group>
|
||||
</el-form-item>
|
||||
<el-form-item label="工厂编号" prop="plantCode">
|
||||
<el-input v-model="form.plantCode" 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 } from "@/api/base/qualityInspectionItem";
|
||||
|
||||
export default {
|
||||
name: "QualityInspectionItem",
|
||||
dicts: ['is_flag','material_categories','material_subclass'],
|
||||
data() {
|
||||
return {
|
||||
// 遮罩层
|
||||
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: 0,
|
||||
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.getList();
|
||||
|
||||
},
|
||||
methods: {
|
||||
|
||||
/** 查询质检项信息维护列表 */
|
||||
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: null,
|
||||
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.form.parentId = 0;
|
||||
this.form.materialCategories = 0;
|
||||
this.form.materialSubclass = 0;
|
||||
this.form.isFlag = 0;
|
||||
this.open = true;
|
||||
this.title = "添加质检项信息维护";
|
||||
},
|
||||
/** 修改按钮操作 */
|
||||
handleUpdate(row) {
|
||||
this.reset();
|
||||
const objId = row.objId || this.ids
|
||||
getQualityInspectionItem(objId).then(response => {
|
||||
console.log(response.data)
|
||||
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>
|
Loading…
Reference in New Issue