检测模板

This commit is contained in:
JinLu.Yin 2022-05-17 23:12:06 +08:00
parent a90e521d3f
commit 0c6edde2bd
2 changed files with 403 additions and 0 deletions

View File

@ -0,0 +1,44 @@
import request from '@/utils/request'
// 查询检测模板列表
export function listQctemplate(query) {
return request({
url: '/mes/qc/qctemplate/list',
method: 'get',
params: query
})
}
// 查询检测模板详细
export function getQctemplate(templateId) {
return request({
url: '/mes/qc/qctemplate/' + templateId,
method: 'get'
})
}
// 新增检测模板
export function addQctemplate(data) {
return request({
url: '/mes/qc/qctemplate',
method: 'post',
data: data
})
}
// 修改检测模板
export function updateQctemplate(data) {
return request({
url: '/mes/qc/qctemplate',
method: 'put',
data: data
})
}
// 删除检测模板
export function delQctemplate(templateId) {
return request({
url: '/mes/qc/qctemplate/' + templateId,
method: 'delete'
})
}

View File

@ -0,0 +1,359 @@
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="100px">
<el-form-item label="检测模板编号" prop="templateCode">
<el-input
v-model="queryParams.templateCode"
placeholder="请输入检测模板编号"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="检测模板名称" prop="templateName">
<el-input
v-model="queryParams.templateName"
placeholder="请输入检测模板名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="检测种类" prop="qcTypesParam">
<el-checkbox-group v-model="queryParams.qcTypesParam">
<el-checkbox label="IQC" value="IQC"></el-checkbox>
<el-checkbox label="首检" value="FIRST_CHECK"></el-checkbox>
<el-checkbox label="末检" value="FINAL_CHECK"></el-checkbox>
<el-checkbox label="巡检" value="REGULAR_CHECK"></el-checkbox>
<el-checkbox label="FQC" value="FQC"></el-checkbox>
<el-checkbox label="OQC" value="OQC"></el-checkbox>
</el-checkbox-group>
</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="['mes:qc:qctemplate: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="['mes:qc:qctemplate: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="['mes:qc:qctemplate:remove']"
>删除</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="qctemplateList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="检测模板编号" align="center" prop="templateCode" />
<el-table-column label="检测模板名称" align="center" prop="templateName" />
<el-table-column label="检测种类" align="center" prop="qcTypesParam" />
<el-table-column label="是否启用" align="center" prop="enableFlag">
<template slot-scope="scope">
<dict-tag :options="dict.type.sys_yes_no" :value="scope.row.enableFlag"/>
</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="['mes:qc:qctemplate:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['mes:qc:qctemplate: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="960px" 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="templateCode">
<el-input v-model="form.templateCode" placeholder="请输入模板编号" />
</el-form-item>
</el-col>
<el-col :span="4">
<el-form-item label-width="80">
<el-switch v-model="autoGenFlag"
active-color="#13ce66"
active-text="自动生成"
@change="handleAutoGenChange(autoGenFlag)" v-if="optType != 'view'">
</el-switch>
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="模板名称" prop="templateName">
<el-input v-model="form.templateName" placeholder="请输入模板名称" />
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="18">
<el-form-item label="检测种类" prop="qcTypesParam">
<el-checkbox-group v-model="form.qcTypesParam">
<el-checkbox label="IQC" value="IQC"></el-checkbox>
<el-checkbox label="首检" value="FIRST_CHECK"></el-checkbox>
<el-checkbox label="末检" value="FINAL_CHECK"></el-checkbox>
<el-checkbox label="巡检" value="REGULAR_CHECK"></el-checkbox>
<el-checkbox label="FQC" value="FQC"></el-checkbox>
<el-checkbox label="OQC" value="OQC"></el-checkbox>
</el-checkbox-group>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item label="是否启用" prop="enableFlag">
<el-radio-group v-model="form.enableFlag" disabled v-if="optType=='view'">
<el-radio
v-for="dict in dict.type.sys_yes_no"
:key="dict.value"
:label="dict.value"
>{{dict.label}}</el-radio>
</el-radio-group>
<el-radio-group v-model="form.enableFlag" v-else>
<el-radio
v-for="dict in dict.type.sys_yes_no"
:key="dict.value"
:label="dict.value"
>{{dict.label}}</el-radio>
</el-radio-group>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="24">
<el-form-item label="备注" prop="remark">
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
</el-form-item>
</el-col>
</el-row>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="cancel" v-if="optType =='view'">返回</el-button>
<el-button type="primary" @click="submitForm" v-else> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import { listQctemplate, getQctemplate, delQctemplate, addQctemplate, updateQctemplate } from "@/api/mes/qc/qctemplate";
import {genCode} from "@/api/system/autocode/rule"
export default {
name: "Qctemplate",
dicts: ['sys_yes_no'],
data() {
return {
//
autoGenFlag:false,
optType: undefined,
//
loading: true,
//
ids: [],
//
single: true,
//
multiple: true,
//
showSearch: true,
//
total: 0,
//
qctemplateList: [],
//
title: "",
//
open: false,
//
queryParams: {
pageNum: 1,
pageSize: 10,
templateCode: null,
templateName: null,
qcTypesParam: [],
enableFlag: null,
},
//
form: {},
//
rules: {
templateCode: [
{ required: true, message: "检测模板编号不能为空", trigger: "blur" }
],
templateName: [
{ required: true, message: "检测模板名称不能为空", trigger: "blur" }
],
qcTypes: [
{ required: true, message: "检测种类不能为空", trigger: "blur" }
],
}
};
},
created() {
this.getList();
},
methods: {
/** 查询检测模板列表 */
getList() {
this.loading = true;
listQctemplate(this.queryParams).then(response => {
this.qctemplateList = response.rows;
this.total = response.total;
this.loading = false;
});
},
//
cancel() {
this.open = false;
this.reset();
},
//
reset() {
this.form = {
templateId: null,
templateCode: null,
templateName: null,
qcTypesParam: [],
enableFlag: 'Y',
remark: null,
createBy: null,
createTime: null,
updateBy: null,
updateTime: null
};
this.autoGenFlag = false;
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
//
handleSelectionChange(selection) {
this.ids = selection.map(item => item.templateId)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加检测模板";
this.optType = "add";
},
//
handleView(row){
this.reset();
const templateId = row.templateId || this.ids;
getQctemplate(templateId).then(response => {
this.form = response.data;
this.open = true;
this.title = "查看检测模板信息";
this.optType = "view";
});
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const templateId = row.templateId || this.ids
getQctemplate(templateId).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改检测模板";
this.optType = "edit";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.templateId != null) {
updateQctemplate(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
});
} else {
addQctemplate(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const templateIds = row.templateId || this.ids;
this.$modal.confirm('是否确认删除检测模板编号为"' + templateIds + '"的数据项?').then(function() {
return delQctemplate(templateIds);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
//
handleAutoGenChange(autoGenFlag){
if(autoGenFlag){
genCode('QC_TEMPLATE_CODE').then(response =>{
this.form.templateCode = response;
});
}else{
this.form.templateCode = null;
}
}
}
};
</script>