Merge remote-tracking branch 'origin/master'
commit
9e6998e3ca
@ -0,0 +1,358 @@
|
|||||||
|
<template>
|
||||||
|
<div class="app-container">
|
||||||
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="100px" class="edit-el-form">
|
||||||
|
<el-form-item label="订单编码" prop="orderNo">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.orderNo"
|
||||||
|
placeholder="请输入订单编码"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="批次编码" prop="incomeBatchNo">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.incomeBatchNo"
|
||||||
|
placeholder="请选择批次编码"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="产品编号" prop="materialCode">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.materialCode"
|
||||||
|
placeholder="请输入产品编号"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="检验类型" prop="typeCode">
|
||||||
|
<el-select v-model="queryParams.typeCode" clearable placeholder="请选择检验类型" @change="getCheckTypeList">
|
||||||
|
<el-option
|
||||||
|
v-for="dict in dict.type.check_type"
|
||||||
|
:key="dict.value"
|
||||||
|
:label="dict.label"
|
||||||
|
:value="dict.value"
|
||||||
|
></el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="统计单位" prop="supplierCode">
|
||||||
|
<el-select v-model="queryParams.supplierCode" clearable placeholder="请选择统计单位" filterable clearable>
|
||||||
|
<el-option
|
||||||
|
v-for="dict in workCenterList"
|
||||||
|
:key="dict.supplierCode"
|
||||||
|
:label="dict.supplierName"
|
||||||
|
:value="dict.supplierCode"
|
||||||
|
></el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="检验节点" prop="checkType">
|
||||||
|
<el-select v-model="queryParams.checkType" clearable placeholder="请选择检验节点">
|
||||||
|
<el-option
|
||||||
|
v-for="dict in checkTypeList"
|
||||||
|
:key="dict.checkType"
|
||||||
|
:label="dict.checkName"
|
||||||
|
:value="dict.checkType"
|
||||||
|
></el-option>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="生产时间" prop="incomeTimeArray">
|
||||||
|
<el-date-picker
|
||||||
|
v-model="queryParams.incomeTimeArray"
|
||||||
|
format="yyyy-MM-dd"
|
||||||
|
type="datetimerange"
|
||||||
|
range-separator="至"
|
||||||
|
start-placeholder="开始日期"
|
||||||
|
end-placeholder="结束日期">
|
||||||
|
</el-date-picker>
|
||||||
|
</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="warning"
|
||||||
|
plain
|
||||||
|
icon="el-icon-download"
|
||||||
|
size="mini"
|
||||||
|
@click="handleExport"
|
||||||
|
v-hasPermi="['mes:prepare:export']"
|
||||||
|
>导出</el-button>
|
||||||
|
</el-col>
|
||||||
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||||
|
</el-row>
|
||||||
|
|
||||||
|
<el-table v-loading="loading" :data="tableList" @selection-change="handleSelectionChange">
|
||||||
|
<el-table-column type="selection" width="55" align="center" />
|
||||||
|
<el-table-column label="单位编码" align="center" prop="supplierCode" width="80"/>
|
||||||
|
<el-table-column prop="supplierName" label="单位名称" width="100" align="center"/>
|
||||||
|
<el-table-column prop="orderNo" label="订单编码" width="160" align="center"/>
|
||||||
|
<el-table-column prop="incomeBatchNo" label="批次" width="220" align="center"/>
|
||||||
|
<el-table-column prop="materialName" label="产品名称"align="center" width="180" :show-overflow-tooltip="true"/>
|
||||||
|
<el-table-column prop="materialCode" label="产品编码" width="130" align="center"
|
||||||
|
:formatter="productCodeFormate"/>
|
||||||
|
<el-table-column prop="quality" label="数量" width="80" align="center"/>
|
||||||
|
<el-table-column prop="unit" label="单位" width="80" align="center"/>
|
||||||
|
<el-table-column prop="sampleQuality" label="抽样数量" width="80" align="center"/>
|
||||||
|
<el-table-column prop="noOkNums" label="不良数量" width="80" align="center"/>
|
||||||
|
<el-table-column prop="noOkNumRate" label="不良率(%)" width="80" align="center"/>
|
||||||
|
</el-table>
|
||||||
|
|
||||||
|
<pagination
|
||||||
|
v-show="total>0"
|
||||||
|
:total="total"
|
||||||
|
:page.sync="queryParams.pageNum"
|
||||||
|
:limit.sync="queryParams.pageSize"
|
||||||
|
@pagination="getList"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { getQmsRateTable,getWorkcenterList,getCheckTypeList,getSupplierList} from "@/api/quality/qcTable";
|
||||||
|
import moment from "moment/moment";
|
||||||
|
export default {
|
||||||
|
name: "qcAnalysis",
|
||||||
|
dicts: ["check_type"],
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
newWorkerLoading: false,
|
||||||
|
refreshNewWorkerTable:true,
|
||||||
|
// 选择领料单
|
||||||
|
selectPrepare:[],
|
||||||
|
// 打印
|
||||||
|
formRef: 'form',
|
||||||
|
validateRules: [],
|
||||||
|
printDialogVisible: false,
|
||||||
|
// 遮罩层
|
||||||
|
loading: true,
|
||||||
|
// 选中数组
|
||||||
|
ids: [],
|
||||||
|
// 非单个禁用
|
||||||
|
single: true,
|
||||||
|
// 非多个禁用
|
||||||
|
multiple: true,
|
||||||
|
// 显示搜索条件
|
||||||
|
showSearch: true,
|
||||||
|
// 总条数
|
||||||
|
total: 0,
|
||||||
|
// 表格数据
|
||||||
|
tableList: [],
|
||||||
|
// 弹出层标题
|
||||||
|
title: "",
|
||||||
|
// 是否显示弹出层
|
||||||
|
open: false,
|
||||||
|
// 查询参数
|
||||||
|
queryParams: {
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
checkNo: null,
|
||||||
|
typeCode:null,
|
||||||
|
checkType:null,
|
||||||
|
orderNo: null,
|
||||||
|
productId: null,
|
||||||
|
materialCode: null,
|
||||||
|
prodType: null,
|
||||||
|
materialName: null,
|
||||||
|
productSpc: null,
|
||||||
|
wetDetailPlanId: null,
|
||||||
|
incomeTime: null,
|
||||||
|
incomeBatchNo:null,
|
||||||
|
incomeTimeArray: [],
|
||||||
|
ymArrayStart:null,
|
||||||
|
ymArrayEnd:null
|
||||||
|
},
|
||||||
|
workCenterList:[],
|
||||||
|
checkTypeList:[],
|
||||||
|
// 表单参数
|
||||||
|
form: {},
|
||||||
|
// 表单校验
|
||||||
|
rules: {},
|
||||||
|
openReport : false,
|
||||||
|
titleReport : "工单报工详情"
|
||||||
|
};
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.getWorkCenterList();
|
||||||
|
this.getDate();
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/**获取默认查询时间段**/
|
||||||
|
getDate() {
|
||||||
|
let start = this.Fungetdate (0);
|
||||||
|
let end = this.Fungetdate (1);
|
||||||
|
this.queryParams.incomeTimeArray.push(start,end);
|
||||||
|
},
|
||||||
|
Fungetdate (num) {
|
||||||
|
var dd = new Date();
|
||||||
|
dd.setDate(dd.getDate() + num);
|
||||||
|
var y = dd.getFullYear();
|
||||||
|
var m = dd.getMonth() + 1;//获取当前月份的日期
|
||||||
|
var d = dd.getDate();
|
||||||
|
return y + "-" + m + "-" + d;
|
||||||
|
},
|
||||||
|
/**获取车间数据**/
|
||||||
|
getWorkCenterList(){
|
||||||
|
getWorkcenterList(this.queryParams).then(response => {
|
||||||
|
this.workCenterList = response
|
||||||
|
})
|
||||||
|
},
|
||||||
|
getCheckTypeList(val){
|
||||||
|
//获取检验节点
|
||||||
|
getCheckTypeList(val).then(response => {
|
||||||
|
this.checkTypeList = response
|
||||||
|
});
|
||||||
|
//获取统计单位
|
||||||
|
getSupplierList(val).then(response => {
|
||||||
|
this.workCenterList = response
|
||||||
|
});
|
||||||
|
},
|
||||||
|
indexMethod(index){
|
||||||
|
return index+1 ;
|
||||||
|
},
|
||||||
|
/** 查询备料单列表 */
|
||||||
|
getList() {
|
||||||
|
this.loading = true;
|
||||||
|
|
||||||
|
if(this.queryParams.incomeTimeArray.length>0){
|
||||||
|
this.queryParams.ymArrayStart = moment(this.queryParams.incomeTimeArray[0]).format('YYYY-MM-DD');
|
||||||
|
this.queryParams.ymArrayEnd = moment(this.queryParams.incomeTimeArray[1]).format('YYYY-MM-DD');
|
||||||
|
}
|
||||||
|
|
||||||
|
getQmsRateTable(this.queryParams).then(response => {
|
||||||
|
this.tableList = response.rows;
|
||||||
|
this.total = response.total;
|
||||||
|
this.loading = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
// 取消按钮
|
||||||
|
cancel() {
|
||||||
|
this.open = false;
|
||||||
|
this.openReport = false;
|
||||||
|
this.reset();
|
||||||
|
},
|
||||||
|
// 表单重置
|
||||||
|
reset() {
|
||||||
|
this.form = {
|
||||||
|
prepareId: null,
|
||||||
|
checkNo: null,
|
||||||
|
workorderName: null,
|
||||||
|
parentOrder: null,
|
||||||
|
orderId: null,
|
||||||
|
orderNo: null,
|
||||||
|
productId: null,
|
||||||
|
materialCode: null,
|
||||||
|
prodType: null,
|
||||||
|
materialName: null,
|
||||||
|
productSpc: null,
|
||||||
|
wetDetailPlanId: null,
|
||||||
|
incomeTime: null,
|
||||||
|
incomeBatchNo:null,
|
||||||
|
createBy: null,
|
||||||
|
createTime: null,
|
||||||
|
updateBy: null,
|
||||||
|
updateTime: null,
|
||||||
|
factoryCode: null
|
||||||
|
};
|
||||||
|
this.resetForm("form");
|
||||||
|
},
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
handleQuery() {
|
||||||
|
this.queryParams.pageNum = 1;
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
resetQuery() {
|
||||||
|
this.resetForm("queryForm");
|
||||||
|
this.getDate();
|
||||||
|
this.handleQuery();
|
||||||
|
},
|
||||||
|
// 多选框选中数据
|
||||||
|
handleSelectionChange(selection) {
|
||||||
|
this.ids = selection.map(item => item.prepareId)
|
||||||
|
this.single = selection.length!==1
|
||||||
|
this.multiple = !selection.length
|
||||||
|
this.selectPrepare = selection
|
||||||
|
},
|
||||||
|
/** 新增按钮操作 */
|
||||||
|
handleAdd() {
|
||||||
|
this.reset();
|
||||||
|
this.open = true;
|
||||||
|
this.title = "添加备料单";
|
||||||
|
},
|
||||||
|
/** 修改按钮操作 */
|
||||||
|
handleUpdate(row) {
|
||||||
|
this.reset();
|
||||||
|
const prepareId = row.prepareId || this.ids
|
||||||
|
getPrepare(prepareId).then(response => {
|
||||||
|
this.form = response.data;
|
||||||
|
this.open = true;
|
||||||
|
this.title = "修改备料单";
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 提交按钮 */
|
||||||
|
submitForm() {
|
||||||
|
this.$refs["form"].validate(valid => {
|
||||||
|
if (valid) {
|
||||||
|
if (this.form.prepareId != null) {
|
||||||
|
updatePrepare(this.form).then(response => {
|
||||||
|
this.$modal.msgSuccess("修改成功");
|
||||||
|
this.open = false;
|
||||||
|
this.getList();
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
addPrepare(this.form).then(response => {
|
||||||
|
this.$modal.msgSuccess("新增成功");
|
||||||
|
this.open = false;
|
||||||
|
this.getList();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
},
|
||||||
|
//产品编码格式化
|
||||||
|
productCodeFormate(row, column, cellValue){
|
||||||
|
return cellValue.slice(7,18); //返回值
|
||||||
|
},
|
||||||
|
/** 报工详情按钮操作 */
|
||||||
|
handleDetail(row) {
|
||||||
|
this.reset();
|
||||||
|
let sr = row;
|
||||||
|
|
||||||
|
this.queryParams.orderNo = sr.orderNo;
|
||||||
|
getXJCheckTableDetail(this.queryParams).then(response => {
|
||||||
|
this.pOrderTableList = response;
|
||||||
|
this.openReport = true;
|
||||||
|
this.titleReport = "过程巡检详情";
|
||||||
|
});
|
||||||
|
|
||||||
|
},
|
||||||
|
/** 导出按钮操作 */
|
||||||
|
handleExport() {
|
||||||
|
this.download('quality/staticTable/exportProduceAnalysis', {
|
||||||
|
...this.queryParams
|
||||||
|
}, `noOkRate_${new Date().getTime()}.xlsx`)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<style>
|
||||||
|
.my-print-head {
|
||||||
|
margin-top: 20px;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.my-print-nav {
|
||||||
|
margin-top: 15px;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
.my-print-table {
|
||||||
|
|
||||||
|
}
|
||||||
|
.my-print-foot {
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
</style>
|
@ -0,0 +1,198 @@
|
|||||||
|
<template>
|
||||||
|
<div class="app-container">
|
||||||
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" label-width="100px" style="margin-bottom: 0px;">
|
||||||
|
<el-form-item label="订单编码" prop="orderNo">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.orderNo"
|
||||||
|
placeholder="请输入订单编码"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="产品编号" prop="materialCode">
|
||||||
|
<el-input
|
||||||
|
v-model="queryParams.materialCode"
|
||||||
|
placeholder="请输入产品编号"
|
||||||
|
clearable
|
||||||
|
@keyup.enter.native="handleQuery"
|
||||||
|
/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="工单生产日期" prop="ymdms">
|
||||||
|
<el-date-picker clearable
|
||||||
|
v-model="queryParams.ymdms"
|
||||||
|
type="date"
|
||||||
|
value-format="yyyy-MM-dd"
|
||||||
|
placeholder="请选择工单生产日期"
|
||||||
|
style="width:205px"
|
||||||
|
>
|
||||||
|
</el-date-picker>
|
||||||
|
</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="20">
|
||||||
|
<el-col :sm="24" :lg="24">
|
||||||
|
<span style="font-size: 20px;margin: 40%;color: cadetblue;">{{title}}</span>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
<el-row :gutter="20">
|
||||||
|
<div style="border: 1px solid #cfdee4;">
|
||||||
|
<div id="orderline" style="width:100%;height:500px"></div>
|
||||||
|
</div>
|
||||||
|
</el-row>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import * as echarts from 'echarts'
|
||||||
|
require('echarts/theme/macarons')
|
||||||
|
import { getXJChartData} from "@/api/quality/qcTable";
|
||||||
|
import moment from "moment/moment";
|
||||||
|
export default {
|
||||||
|
name: "XJChart",
|
||||||
|
components: {},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
title:"巡检小时不良率折线图",
|
||||||
|
// 查询参数
|
||||||
|
queryParams: {
|
||||||
|
ymdms: null,
|
||||||
|
workorderCode: null,
|
||||||
|
workorderName: null,
|
||||||
|
parentOrder: null,
|
||||||
|
orderId: null,
|
||||||
|
orderCode: null,
|
||||||
|
productId: null,
|
||||||
|
productCode: null,
|
||||||
|
prodType: null,
|
||||||
|
productName: null,
|
||||||
|
productSpc: null,
|
||||||
|
productDate: null,
|
||||||
|
createTimeStart:null,
|
||||||
|
createTimeEnd:null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted(){
|
||||||
|
this.getDate();
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/**获取默认查询时间段**/
|
||||||
|
getDate() {
|
||||||
|
let start = this.Fungetdate (0)
|
||||||
|
this.queryParams.ymdms =start
|
||||||
|
},
|
||||||
|
Fungetdate (num) {
|
||||||
|
var dd = new Date();
|
||||||
|
dd.setDate(dd.getDate() + num);
|
||||||
|
var y = dd.getFullYear();
|
||||||
|
var m = dd.getMonth() + 1;//获取当前月份的日期
|
||||||
|
var d = dd.getDate();
|
||||||
|
return y + "-" + m +"-"+d;
|
||||||
|
},
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
handleQuery() {
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
resetQuery() {
|
||||||
|
this.resetForm("queryForm");
|
||||||
|
this.getDate();
|
||||||
|
this.handleQuery();
|
||||||
|
},
|
||||||
|
getList() {
|
||||||
|
|
||||||
|
let myChart = this.$echarts.init(document.getElementById('orderline'))
|
||||||
|
getXJChartData(this.queryParams).then(data => {
|
||||||
|
|
||||||
|
if(data == ''){
|
||||||
|
return
|
||||||
|
}
|
||||||
|
let seriesResult = data.series;
|
||||||
|
seriesResult.forEach(se => {
|
||||||
|
se.type = 'line';//bar//line
|
||||||
|
});
|
||||||
|
|
||||||
|
myChart.setOption({
|
||||||
|
tooltip: {
|
||||||
|
trigger: 'axis'
|
||||||
|
},
|
||||||
|
legend: {
|
||||||
|
data: data.legendData
|
||||||
|
},
|
||||||
|
grid: {
|
||||||
|
left: '3%',
|
||||||
|
right: '4%',
|
||||||
|
bottom: '3%',
|
||||||
|
containLabel: true
|
||||||
|
},
|
||||||
|
toolbox: {
|
||||||
|
feature: {
|
||||||
|
saveAsImage: {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
xAxis: {
|
||||||
|
type: 'category',
|
||||||
|
boundaryGap: false,
|
||||||
|
data: data.xAxisData
|
||||||
|
},
|
||||||
|
yAxis: {
|
||||||
|
type: 'value',
|
||||||
|
axisLabel: {
|
||||||
|
formatter: '{value} %'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
series: seriesResult
|
||||||
|
},
|
||||||
|
true
|
||||||
|
)
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.tagbox {
|
||||||
|
display: flex;
|
||||||
|
/* overflow: scroll; */
|
||||||
|
position: relative;
|
||||||
|
width: 80%;
|
||||||
|
padding-left: 26px;
|
||||||
|
margin-bottom: 15px;
|
||||||
|
.tagboxlabel{
|
||||||
|
width: 100px;
|
||||||
|
text-align: right;
|
||||||
|
vertical-align: middle;
|
||||||
|
font-size: 14px;
|
||||||
|
color: black;
|
||||||
|
line-height: 40px;
|
||||||
|
-webkit-box-sizing: border-box;
|
||||||
|
box-sizing: border-box;
|
||||||
|
margin-right: 12px;
|
||||||
|
}
|
||||||
|
.tag {
|
||||||
|
width: 720px;
|
||||||
|
border: 1px #DCDFE6 solid;
|
||||||
|
height: 60px;
|
||||||
|
padding: 5px 15px;
|
||||||
|
overflow-y: scroll;
|
||||||
|
.tagitem{
|
||||||
|
margin-left: 5px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.button1{
|
||||||
|
width: 37px;
|
||||||
|
height: 37px;
|
||||||
|
position: absolute;
|
||||||
|
right: -39px;
|
||||||
|
top: 2px;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
|
@ -0,0 +1,168 @@
|
|||||||
|
<template>
|
||||||
|
<div class="app-container">
|
||||||
|
<el-table
|
||||||
|
:data="itemList"
|
||||||
|
>
|
||||||
|
<!-- 序号 -->
|
||||||
|
<el-table-column
|
||||||
|
type="index"
|
||||||
|
width="90"
|
||||||
|
align="center"
|
||||||
|
:index="indexMethod"
|
||||||
|
label="序号"
|
||||||
|
fixed
|
||||||
|
/>
|
||||||
|
<el-table-column
|
||||||
|
label="单号"
|
||||||
|
align="center"
|
||||||
|
width="200"
|
||||||
|
prop="orderCode"
|
||||||
|
fixed
|
||||||
|
/>
|
||||||
|
<el-table-column
|
||||||
|
label="循环周期"
|
||||||
|
align="center"
|
||||||
|
prop="planLoop"
|
||||||
|
width="80"
|
||||||
|
/>
|
||||||
|
<el-table-column
|
||||||
|
label="实际开始时间"
|
||||||
|
align="center"
|
||||||
|
prop="orderStart"
|
||||||
|
width="200"
|
||||||
|
/>
|
||||||
|
<el-table-column
|
||||||
|
label="实际结束时间"
|
||||||
|
align="center"
|
||||||
|
prop="orderEnd"
|
||||||
|
width="200"
|
||||||
|
/>
|
||||||
|
<el-table-column
|
||||||
|
label="工单状态"
|
||||||
|
align="center"
|
||||||
|
prop="orderStatus"
|
||||||
|
width="100"
|
||||||
|
>
|
||||||
|
<template slot-scope="scope">
|
||||||
|
{{
|
||||||
|
scope.row.orderStatus == 0
|
||||||
|
? "待处理"
|
||||||
|
: scope.row.orderStatus == 1
|
||||||
|
? "已完成"
|
||||||
|
: scope.row.orderStatus == 2
|
||||||
|
? "已逾期"
|
||||||
|
: scope.row.orderStatus == 3
|
||||||
|
? "进行中"
|
||||||
|
: ""
|
||||||
|
}}
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column
|
||||||
|
label="工单费用"
|
||||||
|
align="center"
|
||||||
|
prop="orderCost"
|
||||||
|
width="100"
|
||||||
|
/>
|
||||||
|
<el-table-column
|
||||||
|
label="责任人"
|
||||||
|
align="center"
|
||||||
|
prop="planPerson"
|
||||||
|
width="100"
|
||||||
|
/>
|
||||||
|
<el-table-column
|
||||||
|
label="工单用时"
|
||||||
|
align="center"
|
||||||
|
prop="orderCostTime"
|
||||||
|
width="100"
|
||||||
|
/>
|
||||||
|
<el-table-column
|
||||||
|
label="签字"
|
||||||
|
align="center"
|
||||||
|
prop="orderSignPerson"
|
||||||
|
width="100"
|
||||||
|
/>
|
||||||
|
</el-table>
|
||||||
|
|
||||||
|
<pagination
|
||||||
|
v-show="total > 0"
|
||||||
|
:total="total"
|
||||||
|
:page.sync="queryParams.pageNum"
|
||||||
|
:limit.sync="queryParams.pageSize"
|
||||||
|
@pagination="getList"
|
||||||
|
/>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { getBYRecordsList } from "@/api/wms/equipment";
|
||||||
|
import { Message } from "element-ui";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "MdItemSingle",
|
||||||
|
dicts: ["equipment_status"],
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
itemList :[],
|
||||||
|
showFlag: false,
|
||||||
|
// 选中数组
|
||||||
|
selectedItemId: undefined,
|
||||||
|
selectedRows: undefined,
|
||||||
|
// 非单个禁用
|
||||||
|
single: true,
|
||||||
|
// 非多个禁用
|
||||||
|
multiple: true,
|
||||||
|
// 显示搜索条件
|
||||||
|
showSearch: true,
|
||||||
|
// 总条数
|
||||||
|
total: 0,
|
||||||
|
// 查询参数
|
||||||
|
queryParams: {
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
equipmentCode: this.equipmentCode,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
props: {
|
||||||
|
equipmentCode: undefined,
|
||||||
|
optType: undefined,
|
||||||
|
},
|
||||||
|
|
||||||
|
created() {
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
// 取消按钮
|
||||||
|
cancel() {
|
||||||
|
this.showFlag = false;
|
||||||
|
this.reset();
|
||||||
|
},
|
||||||
|
// 表单重置
|
||||||
|
reset() {
|
||||||
|
this.form = {
|
||||||
|
itemId: null,
|
||||||
|
itemCode: this.processId,
|
||||||
|
itemType: null,
|
||||||
|
};
|
||||||
|
this.resetForm("form");
|
||||||
|
},
|
||||||
|
|
||||||
|
// 生成表头序号
|
||||||
|
indexMethod(index) {
|
||||||
|
return index + 1;
|
||||||
|
},
|
||||||
|
|
||||||
|
/** 查询设备编码列表*/
|
||||||
|
getList() {
|
||||||
|
getBYRecordsList(this.queryParams).then((response) => {
|
||||||
|
this.itemList = response.rows;
|
||||||
|
this.total = response.total;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
@ -0,0 +1,161 @@
|
|||||||
|
<template>
|
||||||
|
<div class="app-container">
|
||||||
|
<el-table
|
||||||
|
:data="itemList"
|
||||||
|
>
|
||||||
|
<!-- 序号 -->
|
||||||
|
<el-table-column
|
||||||
|
type="index"
|
||||||
|
width="90"
|
||||||
|
align="center"
|
||||||
|
:index="indexMethod"
|
||||||
|
label="序号"
|
||||||
|
fixed
|
||||||
|
/>
|
||||||
|
<el-table-column
|
||||||
|
label="维修单号"
|
||||||
|
align="center"
|
||||||
|
prop="workCode"
|
||||||
|
fixed
|
||||||
|
width="200"
|
||||||
|
/>
|
||||||
|
<el-table-column
|
||||||
|
label="维修人员"
|
||||||
|
align="center"
|
||||||
|
prop="workPerson"
|
||||||
|
width="100"
|
||||||
|
/>
|
||||||
|
<el-table-column
|
||||||
|
label="维修班组"
|
||||||
|
align="center"
|
||||||
|
prop="workTeam"
|
||||||
|
width="100"
|
||||||
|
/>
|
||||||
|
<el-table-column
|
||||||
|
label="故障描述"
|
||||||
|
align="center"
|
||||||
|
prop="workFaultDesc"
|
||||||
|
width="150"
|
||||||
|
/>
|
||||||
|
<el-table-column
|
||||||
|
label="原因分析"
|
||||||
|
align="center"
|
||||||
|
prop="workReason"
|
||||||
|
width="150"
|
||||||
|
/>
|
||||||
|
<el-table-column
|
||||||
|
label="维修措施"
|
||||||
|
align="center"
|
||||||
|
prop="repairMeasures"
|
||||||
|
width="150"
|
||||||
|
/>
|
||||||
|
<el-table-column
|
||||||
|
label="维修开始时间"
|
||||||
|
align="center"
|
||||||
|
prop="workStartTime"
|
||||||
|
width="150"
|
||||||
|
/>
|
||||||
|
<el-table-column
|
||||||
|
label="维修结束时间"
|
||||||
|
align="center"
|
||||||
|
prop="workEndTime"
|
||||||
|
width="150"
|
||||||
|
/>
|
||||||
|
<el-table-column
|
||||||
|
label="维修状态"
|
||||||
|
align="center"
|
||||||
|
prop="workStatus"
|
||||||
|
width="100"
|
||||||
|
>
|
||||||
|
<template slot-scope="scope">
|
||||||
|
<dict-tag
|
||||||
|
:options="dict.type.device_repair_status"
|
||||||
|
:value="scope.row.workStatus"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
|
||||||
|
<pagination
|
||||||
|
v-show="total > 0"
|
||||||
|
:total="total"
|
||||||
|
:page.sync="queryParams.pageNum"
|
||||||
|
:limit.sync="queryParams.pageSize"
|
||||||
|
@pagination="getList"
|
||||||
|
/>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { getWXRecordsList } from "@/api/wms/equipment";
|
||||||
|
import { Message } from "element-ui";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "MdItemSingle",
|
||||||
|
dicts: ["device_repair_status"],
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
itemList :[],
|
||||||
|
showFlag: false,
|
||||||
|
// 选中数组
|
||||||
|
selectedItemId: undefined,
|
||||||
|
selectedRows: undefined,
|
||||||
|
// 非单个禁用
|
||||||
|
single: true,
|
||||||
|
// 非多个禁用
|
||||||
|
multiple: true,
|
||||||
|
// 显示搜索条件
|
||||||
|
showSearch: true,
|
||||||
|
// 总条数
|
||||||
|
total: 0,
|
||||||
|
// 查询参数
|
||||||
|
queryParams: {
|
||||||
|
pageNum: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
equipmentCode: this.equipmentCode,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
|
||||||
|
props: {
|
||||||
|
equipmentCode: undefined,
|
||||||
|
optType: undefined,
|
||||||
|
},
|
||||||
|
|
||||||
|
created() {
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
// 取消按钮
|
||||||
|
cancel() {
|
||||||
|
this.showFlag = false;
|
||||||
|
this.reset();
|
||||||
|
},
|
||||||
|
// 表单重置
|
||||||
|
reset() {
|
||||||
|
this.form = {
|
||||||
|
itemId: null,
|
||||||
|
itemCode: this.processId,
|
||||||
|
itemType: null,
|
||||||
|
};
|
||||||
|
this.resetForm("form");
|
||||||
|
},
|
||||||
|
|
||||||
|
// 生成表头序号
|
||||||
|
indexMethod(index) {
|
||||||
|
return index + 1;
|
||||||
|
},
|
||||||
|
|
||||||
|
/** 查询设备编码列表*/
|
||||||
|
getList() {
|
||||||
|
getWXRecordsList(this.queryParams).then((response) => {
|
||||||
|
this.itemList = response.rows;
|
||||||
|
this.total = response.total;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
},
|
||||||
|
};
|
||||||
|
</script>
|
Loading…
Reference in New Issue