<template>
|
<div class="app-container">
|
<el-card class="box-card">
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
<el-form-item label="入站时间" prop="inboundTime">
|
<el-date-picker clearable
|
v-model="queryParams.inboundTime"
|
type="date"
|
value-format="yyyy-MM-dd"
|
placeholder="请选择入站时间">
|
</el-date-picker>
|
</el-form-item>
|
<el-form-item label="出站时间" prop="outboundTime">
|
<el-date-picker clearable
|
v-model="queryParams.outboundTime"
|
type="date"
|
value-format="yyyy-MM-dd"
|
placeholder="请选择出站时间">
|
</el-date-picker>
|
</el-form-item>
|
<el-form-item style="float: right">
|
<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-card>
|
<el-card style="margin-top: 10px" class="box-card">
|
<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="['da:passingStationCollection: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="['da:passingStationCollection: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="['da:passingStationCollection: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="['da:passingStationCollection:export']"
|
>导出</el-button>
|
</el-col>
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
</el-row>
|
|
<el-table v-loading="loading" border :data="passingStationCollectionList" @selection-change="handleSelectionChange" v-if="passingStationCollectionList.length > 0">
|
<el-table-column type="selection" width="55" align="center" />
|
<el-table-column label="工单编号" align="center" prop="workOrderNo">
|
</el-table-column>
|
<el-table-column label="总成序列号" align="center" prop="sfcCode">
|
</el-table-column>
|
<el-table-column label="产品编号" align="center" prop="productCode">
|
</el-table-column>
|
<el-table-column label="产线编号" align="center" prop="productionLine">
|
</el-table-column>
|
<el-table-column label="工位编号" align="center" prop="locationCode">
|
</el-table-column>
|
<!-- <el-table-column label="设备编号" align="center" prop="equipmentNo">
|
</el-table-column>-->
|
<el-table-column label="入站时间" align="center" prop="inboundTime" width="100">
|
<template slot-scope="scope">
|
<span>{{ parseTime(scope.row.inboundTime, '{y}-{m}-{d}') }}</span>
|
</template>
|
</el-table-column>
|
<el-table-column label="出站时间" align="center" prop="outboundTime" width="100">
|
<template slot-scope="scope">
|
<span>{{ parseTime(scope.row.outboundTime, '{y}-{m}-{d}') }}</span>
|
</template>
|
</el-table-column>
|
<!-- <el-table-column label="入站是否合格" align="center" prop="inRsSign">
|
</el-table-column>
|
<el-table-column label="入站NG原因" align="center" prop="inMsgSign">
|
</el-table-column>-->
|
<el-table-column label="是否合格" align="center" prop="outRsSign">
|
</el-table-column>
|
<el-table-column label="NG原因" align="center" prop="outMsgSign">
|
</el-table-column>
|
<el-table-column label="采集时间" align="center" prop="collectionTime" width="180">
|
<template slot-scope="scope">
|
<span>{{ parseTime(scope.row.collectionTime, '{y}-{m}-{d}') }}</span>
|
</template>
|
</el-table-column>
|
<el-table-column label="节拍时间" align="center" prop="beatTime">
|
</el-table-column>
|
<el-table-column fixed="right" label="操作" width="200" align="center" class-name="small-padding fixed-width">
|
<template slot-scope="scope">
|
<el-button
|
size="mini"
|
type="success"
|
plain
|
style="width: 72px"
|
icon="el-icon-edit"
|
@click="handleUpdate(scope.row)"
|
v-hasPermi="['da:passingStationCollection:edit']"
|
>修改</el-button>
|
<el-button
|
size="mini"
|
type="danger"
|
plain
|
style="width: 72px"
|
icon="el-icon-delete"
|
@click="handleDelete(scope.row)"
|
v-hasPermi="['da:passingStationCollection:remove']"
|
>删除</el-button>
|
</template>
|
</el-table-column>
|
</el-table>
|
<el-empty v-else>
|
<span slot="description">暂无数据</span>
|
</el-empty>
|
</el-card>
|
|
<pagination
|
v-show="total>0"
|
:total="total"
|
:page.sync="queryParams.pageNum"
|
:limit.sync="queryParams.pageSize"
|
@pagination="getList"
|
/>
|
|
<!-- 添加或修改产品过站采集对话框 -->
|
<el-dialog v-dialogpop-up :title="title" :visible.sync="open" width="500px" append-to-body>
|
<el-form ref="form" :model="form" :rules="rules" label-width="120px">
|
<el-form-item label="工单编号" prop="workOrderNo">
|
<el-input v-model="form.workOrderNo" type="textarea" placeholder="请输入内容" />
|
</el-form-item>
|
<el-form-item label="总成序列号" prop="sfcCode">
|
<el-input v-model="form.sfcCode" type="textarea" placeholder="请输入内容" />
|
</el-form-item>
|
<el-form-item label="产品编号" prop="productCode">
|
<el-input v-model="form.productCode" type="textarea" placeholder="请输入内容" />
|
</el-form-item>
|
<el-form-item label="产线编号" prop="productionLine">
|
<el-input v-model="form.productionLine" type="textarea" placeholder="请输入内容" />
|
</el-form-item>
|
<el-form-item label="工位编号" prop="locationCode">
|
<el-input v-model="form.locationCode" type="textarea" placeholder="请输入内容" />
|
</el-form-item>
|
<el-form-item label="设备编号" prop="equipmentNo">
|
<el-input v-model="form.equipmentNo" type="textarea" placeholder="请输入内容" />
|
</el-form-item>
|
<el-form-item label="入站时间" prop="inboundTime">
|
<el-date-picker clearable
|
v-model="form.inboundTime"
|
type="date"
|
value-format="yyyy-MM-dd"
|
placeholder="请选择入站时间">
|
</el-date-picker>
|
</el-form-item>
|
<el-form-item label="出站时间" prop="outboundTime">
|
<el-date-picker clearable
|
v-model="form.outboundTime"
|
type="date"
|
value-format="yyyy-MM-dd"
|
placeholder="请选择出站时间">
|
</el-date-picker>
|
</el-form-item>
|
<!-- <el-form-item label="入站是否合格" prop="inRsSign">
|
<el-input v-model="form.inRsSign" placeholder="请输入入站是否合格" />
|
</el-form-item>
|
<el-form-item label="入站NG原因" prop="inMsgSign">
|
<el-input v-model="form.inMsgSign" type="textarea" placeholder="请输入内容" />
|
</el-form-item>-->
|
<el-form-item label="是否合格" prop="outRsSign">
|
<el-input v-model="form.outRsSign" placeholder="请输入出站是否合格" />
|
</el-form-item>
|
<el-form-item label="NG原因" prop="outMsgSign">
|
<el-input v-model="form.outMsgSign" type="textarea" placeholder="请输入内容" />
|
</el-form-item>
|
<el-form-item label="采集时间" prop="collectionTime">
|
<el-date-picker clearable
|
v-model="form.collectionTime"
|
type="date"
|
value-format="yyyy-MM-dd"
|
placeholder="请选择采集时间">
|
</el-date-picker>
|
</el-form-item>
|
<!-- <el-form-item label="预留字段1" prop="spareField1">-->
|
<!-- <el-input v-model="form.spareField1" type="textarea" placeholder="请输入内容" />-->
|
<!-- </el-form-item>-->
|
<!-- <el-form-item label="预留字段2" prop="spareField2">-->
|
<!-- <el-input v-model="form.spareField2" type="textarea" placeholder="请输入内容" />-->
|
<!-- </el-form-item>-->
|
<!-- <el-form-item label="创建用户" prop="createUser">-->
|
<!-- <el-input v-model="form.createUser" type="textarea" placeholder="请输入内容" />-->
|
<!-- </el-form-item>-->
|
<!-- <el-form-item label="更改用户" prop="updateUser">-->
|
<!-- <el-input v-model="form.updateUser" type="textarea" placeholder="请输入内容" />-->
|
<!-- </el-form-item>-->
|
<el-form-item label="节拍时间" prop="beatTime">
|
<el-input v-model="form.beatTime" placeholder="请输入节拍时间" />
|
</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 { listPassingStationCollection, getPassingStationCollection, delPassingStationCollection, addPassingStationCollection, updatePassingStationCollection } from "@/api/main/da/passingStationCollection/passingStationCollection";
|
|
export default {
|
name: "PassingStationCollection",
|
data() {
|
return {
|
// 遮罩层
|
loading: true,
|
// 选中数组
|
ids: [],
|
// 非单个禁用
|
single: true,
|
// 非多个禁用
|
multiple: true,
|
// 显示搜索条件
|
showSearch: true,
|
// 总条数
|
total: 0,
|
// 产品过站采集表格数据
|
passingStationCollectionList: [],
|
// 弹出层标题
|
title: "",
|
// 是否显示弹出层
|
open: false,
|
// 查询参数
|
queryParams: {
|
pageNum: 1,
|
pageSize: 10,
|
workOrderNo: null,
|
sfcCode: null,
|
productCode: null,
|
productionLine: null,
|
locationCode: null,
|
equipmentNo: null,
|
inboundTime: null,
|
outboundTime: null,
|
},
|
// 表单参数
|
form: {},
|
// 表单校验
|
rules: {
|
id: [
|
{ required: true, message: "主键id不能为空", trigger: "blur" }
|
],
|
}
|
};
|
},
|
created() {
|
this.getList();
|
},
|
methods: {
|
/** 查询产品过站采集列表 */
|
getList() {
|
this.loading = true;
|
listPassingStationCollection(this.queryParams).then(response => {
|
this.passingStationCollectionList = response.rows;
|
this.total = response.total;
|
this.loading = false;
|
});
|
},
|
// 取消按钮
|
cancel() {
|
this.open = false;
|
this.reset();
|
},
|
// 表单重置
|
reset() {
|
this.form = {
|
id: null,
|
workOrderNo: null,
|
sfcCode: null,
|
productCode: null,
|
productionLine: null,
|
locationCode: null,
|
equipmentNo: null,
|
inboundTime: null,
|
outboundTime: null,
|
inRsSign: null,
|
inMsgSign: null,
|
outRsSign: null,
|
outMsgSign: null,
|
collectionTime: null,
|
spareField1: null,
|
spareField2: null,
|
createUser: null,
|
createTime: null,
|
updateUser: null,
|
updateTime: null,
|
beatTime: 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 = "添加产品过站采集";
|
},
|
/** 修改按钮操作 */
|
handleUpdate(row) {
|
this.reset();
|
const id = row.id || this.ids
|
getPassingStationCollection(id).then(response => {
|
this.form = response.data;
|
this.open = true;
|
this.title = "修改产品过站采集";
|
});
|
},
|
/** 提交按钮 */
|
submitForm() {
|
this.$refs["form"].validate(valid => {
|
if (valid) {
|
if (this.form.id != null) {
|
updatePassingStationCollection(this.form).then(response => {
|
this.$modal.msgSuccess("修改成功");
|
this.open = false;
|
this.getList();
|
});
|
} else {
|
addPassingStationCollection(this.form).then(response => {
|
this.$modal.msgSuccess("新增成功");
|
this.open = false;
|
this.getList();
|
});
|
}
|
}
|
});
|
},
|
/** 删除按钮操作 */
|
handleDelete(row) {
|
const ids = row.id || this.ids;
|
this.$modal.confirm('是否确认删除产品过站采集编号为"' + ids + '"的数据项?').then(function() {
|
return delPassingStationCollection(ids);
|
}).then(() => {
|
this.getList();
|
this.$modal.msgSuccess("删除成功");
|
}).catch(() => {});
|
},
|
/** 导出按钮操作 */
|
handleExport() {
|
this.download('da/passingStationCollection/export', {
|
...this.queryParams
|
}, `passingStationCollection_${new Date().getTime()}.xlsx`)
|
}
|
}
|
};
|
</script>
|