1. 新增化学成分明细和物理性能明细的API与管理页面 2. 在钢卷详情页添加检验信息展示模块 3. 优化质保书预览的签章显示逻辑,仅审批通过后显示 4. 重构质保书列表为表格形式,新增审批流程功能 5. 优化质保书选择弹窗的钢卷查询条件 6. 新增批量新增质保书明细时自动填充理化数据功能
403 lines
13 KiB
Vue
403 lines
13 KiB
Vue
<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="coilNo">
|
|
<el-input
|
|
v-model="queryParams.coilNo"
|
|
placeholder="请输入钢卷号"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="屈服强度(MPa)" prop="yieldStrength">
|
|
<el-input
|
|
v-model="queryParams.yieldStrength"
|
|
placeholder="请输入拉伸试验-屈服强度(MPa)"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="抗拉强度(MPa)" prop="tensileStrength">
|
|
<el-input
|
|
v-model="queryParams.tensileStrength"
|
|
placeholder="请输入拉伸试验-抗拉强度(MPa)"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="伸长率(%)" prop="elongation">
|
|
<el-input
|
|
v-model="queryParams.elongation"
|
|
placeholder="请输入拉伸试验-伸长率(%)"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="硬度实验(HRB)" prop="hardness">
|
|
<el-input
|
|
v-model="queryParams.hardness"
|
|
placeholder="请输入硬度实验(HRB)"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="弯曲试验" prop="bendingTest">
|
|
<el-input
|
|
v-model="queryParams.bendingTest"
|
|
placeholder="请输入弯曲试验"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="表面质量" prop="surfaceQuality">
|
|
<el-input
|
|
v-model="queryParams.surfaceQuality"
|
|
placeholder="请输入表面质量"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="表面结构" prop="surfaceStructure">
|
|
<el-input
|
|
v-model="queryParams.surfaceStructure"
|
|
placeholder="请输入表面结构"
|
|
clearable
|
|
@keyup.enter.native="handleQuery"
|
|
/>
|
|
</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"
|
|
>新增</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<coil-selector :use-trigger="true" multiple @confirm="handleBatchAdd"
|
|
:filters="{ selectType: 'product', status: 0 }">
|
|
<el-button type="primary" plain icon="el-icon-plus" size="mini">批量新增</el-button>
|
|
</coil-selector>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
type="success"
|
|
plain
|
|
icon="el-icon-edit"
|
|
size="mini"
|
|
:disabled="single"
|
|
@click="handleUpdate"
|
|
>修改</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
type="danger"
|
|
plain
|
|
icon="el-icon-delete"
|
|
size="mini"
|
|
:disabled="multiple"
|
|
@click="handleDelete"
|
|
>删除</el-button>
|
|
</el-col>
|
|
<el-col :span="1.5">
|
|
<el-button
|
|
type="warning"
|
|
plain
|
|
icon="el-icon-download"
|
|
size="mini"
|
|
@click="handleExport"
|
|
>导出</el-button>
|
|
</el-col>
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
</el-row>
|
|
|
|
<el-table v-loading="loading" :data="physicalItemList" @selection-change="handleSelectionChange">
|
|
<el-table-column type="selection" width="55" align="center" />
|
|
<el-table-column label="物理性能ID" align="center" prop="physicalId" v-if="false"/>
|
|
<el-table-column label="钢卷号" align="center" prop="coilNo" />
|
|
<el-table-column label="屈服强度(MPa)" align="center" prop="yieldStrength" />
|
|
<el-table-column label="抗拉强度(MPa)" align="center" prop="tensileStrength" />
|
|
<el-table-column label="伸长率(%)" align="center" prop="elongation" />
|
|
<el-table-column label="硬度实验(HRB)" align="center" prop="hardness" />
|
|
<el-table-column label="弯曲试验" align="center" prop="bendingTest" />
|
|
<el-table-column label="表面质量" align="center" prop="surfaceQuality" />
|
|
<el-table-column label="表面结构" align="center" prop="surfaceStructure" />
|
|
<el-table-column label="边缘状态" align="center" prop="edgeStatus" />
|
|
<el-table-column label="备注" align="center" prop="remark" />
|
|
<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)"
|
|
>修改</el-button>
|
|
<el-button
|
|
size="mini"
|
|
type="text"
|
|
icon="el-icon-delete"
|
|
@click="handleDelete(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="500px" append-to-body>
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
|
|
<el-form-item label="钢卷" prop="coilId">
|
|
<coil-selector v-model="form.coilId" :use-trigger="true" @select="handleSelect"
|
|
:filters="{ selectType: 'product', status: 0, dataType: 1 }" />
|
|
</el-form-item>
|
|
<el-form-item label="钢卷号" prop="coilNo">
|
|
<el-input v-model="form.coilNo" placeholder="自动填写" />
|
|
</el-form-item>
|
|
<el-form-item label="屈服强度(MPa)" prop="yieldStrength">
|
|
<el-input v-model="form.yieldStrength" placeholder="请输入屈服强度(MPa)" />
|
|
</el-form-item>
|
|
<el-form-item label="抗拉强度(MPa)" prop="tensileStrength">
|
|
<el-input v-model="form.tensileStrength" placeholder="请输入抗拉强度(MPa)" />
|
|
</el-form-item>
|
|
<el-form-item label="伸长率(%)" prop="elongation">
|
|
<el-input v-model="form.elongation" placeholder="请输入伸长率(%)" />
|
|
</el-form-item>
|
|
<el-form-item label="硬度实验(HRB)" prop="hardness">
|
|
<el-input v-model="form.hardness" placeholder="请输入硬度实验(HRB)" />
|
|
</el-form-item>
|
|
<el-form-item label="弯曲试验" prop="bendingTest">
|
|
<el-input v-model="form.bendingTest" placeholder="请输入弯曲试验" />
|
|
</el-form-item>
|
|
<el-form-item label="表面质量" prop="surfaceQuality">
|
|
<el-input v-model="form.surfaceQuality" placeholder="请输入表面质量" />
|
|
</el-form-item>
|
|
<el-form-item label="表面结构" prop="surfaceStructure">
|
|
<el-input v-model="form.surfaceStructure" placeholder="请输入表面结构" />
|
|
</el-form-item>
|
|
<el-form-item label="备注" prop="remark">
|
|
<el-input v-model="form.remark" placeholder="请输入备注" />
|
|
</el-form-item>
|
|
</el-form>
|
|
<div slot="footer" class="dialog-footer">
|
|
<el-button :loading="buttonLoading" type="primary" @click="submitForm">确 定</el-button>
|
|
<el-button @click="cancel">取 消</el-button>
|
|
</div>
|
|
</el-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { listPhysicalItem, getPhysicalItem, delPhysicalItem, addPhysicalItem, updatePhysicalItem, batchAddPhysicalItem } from "@/api/mes/qc/physicalItem";
|
|
import CoilSelector from "@/components/CoilSelector";
|
|
|
|
export default {
|
|
name: "PhysicalItem",
|
|
components: {
|
|
CoilSelector
|
|
},
|
|
data() {
|
|
return {
|
|
// 按钮loading
|
|
buttonLoading: false,
|
|
// 遮罩层
|
|
loading: true,
|
|
// 选中数组
|
|
ids: [],
|
|
// 非单个禁用
|
|
single: true,
|
|
// 非多个禁用
|
|
multiple: true,
|
|
// 显示搜索条件
|
|
showSearch: true,
|
|
// 总条数
|
|
total: 0,
|
|
// 物理性能明细表格数据
|
|
physicalItemList: [],
|
|
// 弹出层标题
|
|
title: "",
|
|
// 是否显示弹出层
|
|
open: false,
|
|
// 查询参数
|
|
queryParams: {
|
|
pageNum: 1,
|
|
pageSize: 10,
|
|
coilNo: undefined,
|
|
yieldStrength: undefined,
|
|
tensileStrength: undefined,
|
|
elongation: undefined,
|
|
hardness: undefined,
|
|
bendingTest: undefined,
|
|
surfaceQuality: undefined,
|
|
surfaceStructure: undefined,
|
|
edgeStatus: undefined,
|
|
},
|
|
// 表单参数
|
|
form: {},
|
|
// 表单校验
|
|
rules: {
|
|
coilNo: [
|
|
{ required: true, message: "钢卷号不能为空", trigger: "blur" }
|
|
],
|
|
}
|
|
};
|
|
},
|
|
created() {
|
|
this.getList();
|
|
},
|
|
methods: {
|
|
/** 查询物理性能明细列表 */
|
|
getList() {
|
|
this.loading = true;
|
|
listPhysicalItem(this.queryParams).then(response => {
|
|
this.physicalItemList = response.rows;
|
|
this.total = response.total;
|
|
this.loading = false;
|
|
});
|
|
},
|
|
// 取消按钮
|
|
cancel() {
|
|
this.open = false;
|
|
this.reset();
|
|
},
|
|
// 表单重置
|
|
reset() {
|
|
this.form = {
|
|
physicalId: undefined,
|
|
certificateId: undefined,
|
|
coilId: undefined,
|
|
coilNo: undefined,
|
|
yieldStrength: undefined,
|
|
tensileStrength: undefined,
|
|
elongation: undefined,
|
|
hardness: undefined,
|
|
bendingTest: undefined,
|
|
surfaceQuality: undefined,
|
|
surfaceStructure: undefined,
|
|
edgeStatus: undefined,
|
|
remark: undefined,
|
|
delFlag: undefined,
|
|
createTime: undefined,
|
|
createBy: undefined,
|
|
updateTime: undefined,
|
|
updateBy: undefined
|
|
};
|
|
this.resetForm("form");
|
|
},
|
|
/** 搜索按钮操作 */
|
|
handleQuery() {
|
|
this.queryParams.pageNum = 1;
|
|
this.getList();
|
|
},
|
|
/** 重置按钮操作 */
|
|
resetQuery() {
|
|
this.resetForm("queryForm");
|
|
this.handleQuery();
|
|
},
|
|
// 多选框选中数据
|
|
handleSelectionChange(selection) {
|
|
this.ids = selection.map(item => item.physicalId)
|
|
this.single = selection.length!==1
|
|
this.multiple = !selection.length
|
|
},
|
|
/** 新增按钮操作 */
|
|
handleAdd() {
|
|
this.reset();
|
|
this.open = true;
|
|
this.title = "添加物理性能明细";
|
|
},
|
|
handleSelect(coil) {
|
|
this.form.coilId = coil.coilId;
|
|
this.form.coilNo = coil.currentCoilNo;
|
|
},
|
|
handleBatchAdd(rows) {
|
|
this.loading = true;
|
|
this.buttonLoading = true;
|
|
const payload = rows.map(coil => ({
|
|
coilId: coil.coilId,
|
|
coilNo: coil.currentCoilNo,
|
|
}))
|
|
batchAddPhysicalItem(payload).then(response => {
|
|
this.$modal.msgSuccess("新增成功");
|
|
this.getList();
|
|
}).finally(() => {
|
|
this.buttonLoading = false;
|
|
this.loading = false;
|
|
});
|
|
},
|
|
/** 修改按钮操作 */
|
|
handleUpdate(row) {
|
|
this.loading = true;
|
|
this.reset();
|
|
const physicalId = row.physicalId || this.ids
|
|
getPhysicalItem(physicalId).then(response => {
|
|
this.loading = false;
|
|
this.form = response.data;
|
|
this.open = true;
|
|
this.title = "修改物理性能明细";
|
|
});
|
|
},
|
|
/** 提交按钮 */
|
|
submitForm() {
|
|
this.$refs["form"].validate(valid => {
|
|
if (valid) {
|
|
this.buttonLoading = true;
|
|
if (this.form.physicalId != null) {
|
|
updatePhysicalItem(this.form).then(response => {
|
|
this.$modal.msgSuccess("修改成功");
|
|
this.open = false;
|
|
this.getList();
|
|
}).finally(() => {
|
|
this.buttonLoading = false;
|
|
});
|
|
} else {
|
|
addPhysicalItem(this.form).then(response => {
|
|
this.$modal.msgSuccess("新增成功");
|
|
this.open = false;
|
|
this.getList();
|
|
}).finally(() => {
|
|
this.buttonLoading = false;
|
|
});
|
|
}
|
|
}
|
|
});
|
|
},
|
|
/** 删除按钮操作 */
|
|
handleDelete(row) {
|
|
const physicalIds = row.physicalId || this.ids;
|
|
this.$modal.confirm('是否确认删除物理性能明细编号为"' + physicalIds + '"的数据项?').then(() => {
|
|
this.loading = true;
|
|
return delPhysicalItem(physicalIds);
|
|
}).then(() => {
|
|
this.loading = false;
|
|
this.getList();
|
|
this.$modal.msgSuccess("删除成功");
|
|
}).catch(() => {
|
|
}).finally(() => {
|
|
this.loading = false;
|
|
});
|
|
},
|
|
/** 导出按钮操作 */
|
|
handleExport() {
|
|
this.download('qc/physicalItem/export', {
|
|
...this.queryParams
|
|
}, `physicalItem_${new Date().getTime()}.xlsx`)
|
|
}
|
|
}
|
|
};
|
|
</script>
|