Merge remote-tracking branch 'origin/master'
commit
d8adad0dba
@ -0,0 +1,10 @@
|
|||||||
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
// 获取工厂下拉列表
|
||||||
|
export function finishProductBoard(data) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/mesborad/finishProductBoard',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
}
|
@ -0,0 +1,51 @@
|
|||||||
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
// 查询unitprice列表
|
||||||
|
export function listChildprocess(query) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/childprocess/list',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
});
|
||||||
|
}
|
||||||
|
// 查询全部列表
|
||||||
|
export function listChildprocessall(query) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/childprocess/listall',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
});
|
||||||
|
}
|
||||||
|
// 查询unitprice详细
|
||||||
|
export function getChildprocess(childprocessId) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/childprocess/' + childprocessId,
|
||||||
|
method: 'get'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 新增unitprice
|
||||||
|
export function addChildprocess(data) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/childprocess',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 修改unitprice
|
||||||
|
export function updateChildprocesse(data) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/childprocess',
|
||||||
|
method: 'put',
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 删除unitprice
|
||||||
|
export function delChildprocesse(childprocessId) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/childprocess/' + childprocessId,
|
||||||
|
method: 'delete'
|
||||||
|
});
|
||||||
|
}
|
@ -0,0 +1,44 @@
|
|||||||
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
// 查询unitPrice列表
|
||||||
|
export function listUnitPrice(query) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/unitPrice/list',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 查询unitPrice详细
|
||||||
|
export function getUnitPrice(picId) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/unitPrice/' + picId,
|
||||||
|
method: 'get'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 新增unitPrice
|
||||||
|
export function addUnitPrice(data) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/unitPrice',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 修改unitPrice
|
||||||
|
export function updateUnitPrice(data) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/unitPrice',
|
||||||
|
method: 'put',
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 删除unitPrice
|
||||||
|
export function delUnitPrice(picId) {
|
||||||
|
return request({
|
||||||
|
url: '/mes/unitPrice/' + picId,
|
||||||
|
method: 'delete'
|
||||||
|
});
|
||||||
|
}
|
@ -0,0 +1,93 @@
|
|||||||
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
// 查询来料报告列表
|
||||||
|
export function listIncome(query) {
|
||||||
|
return request({
|
||||||
|
url: '/quality/qcFirstReport/list',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 查询来料报告详细
|
||||||
|
export function getIncome(recordId) {
|
||||||
|
return request({
|
||||||
|
url: '/quality/qcFirstReport/' + recordId,
|
||||||
|
method: 'get'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 新增来料报告
|
||||||
|
export function addIncome(data) {
|
||||||
|
return request({
|
||||||
|
url: '/quality/qcFirstReport',
|
||||||
|
method: 'post',
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 修改来料报告
|
||||||
|
export function updateIncome(data) {
|
||||||
|
return request({
|
||||||
|
url: '/quality/qcFirstReport',
|
||||||
|
method: 'put',
|
||||||
|
data: data
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 删除来料报告
|
||||||
|
export function delIncome(recordId) {
|
||||||
|
return request({
|
||||||
|
url: '/quality/qcFirstReport/' + recordId,
|
||||||
|
method: 'delete'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 查询BOM物料管理列表
|
||||||
|
export function getQcListBom(query) {
|
||||||
|
return request({
|
||||||
|
url: '/quality/qcFirstReport/getQcListBom',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 查询供应商管理列表
|
||||||
|
export function getQcListSupplier(query) {
|
||||||
|
return request({
|
||||||
|
url: '/quality/qcFirstReport/getQcListSupplier',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// 查询人员列表
|
||||||
|
export function getQcListUser(query) {
|
||||||
|
return request({
|
||||||
|
url: '/quality/qcFirstReport/getQcListUser',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
//状态修改
|
||||||
|
export function changeIncomeStatus(recordId, status) {
|
||||||
|
const data = {
|
||||||
|
recordId,
|
||||||
|
status
|
||||||
|
}
|
||||||
|
return request({
|
||||||
|
url: '/quality/qcFirstReport/changeIncomeStatus',
|
||||||
|
method: 'put',
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 查询检测项列表
|
||||||
|
export function getCkeckProjectList(query) {
|
||||||
|
return request({
|
||||||
|
url: '/quality/qcFirstReport/getCkeckProjectList',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
});
|
||||||
|
}
|
Binary file not shown.
After Width: | Height: | Size: 202 KiB |
@ -0,0 +1,112 @@
|
|||||||
|
<template>
|
||||||
|
<div class="top-left-cmp">
|
||||||
|
<div class="dc-left">
|
||||||
|
<dv-border-box-5>
|
||||||
|
<div class="main-value"><span>{{ data.sumplanquantity }}</span>件</div>
|
||||||
|
<!-- <div class="compare-value"><span>同比</span>81</div>-->
|
||||||
|
<!-- <div class="compare-value"><span>环比</span>15</div>-->
|
||||||
|
</dv-border-box-5>
|
||||||
|
<div class="dc-text">
|
||||||
|
当日产量
|
||||||
|
<dv-decoration-3 style="width:200px;height:20px;" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="dc-right">
|
||||||
|
<div class="dc-text">
|
||||||
|
当日计划
|
||||||
|
<dv-decoration-3 style="width:200px;height:20px;" />
|
||||||
|
</div>
|
||||||
|
<dv-border-box-5 :reverse="true">
|
||||||
|
<div class="main-value"><span>{{ data.sumFinshQuantity }}</span>件</div>
|
||||||
|
<!-- <div class="compare-value"><span>同比</span>66</div>-->
|
||||||
|
<!-- <div class="compare-value"><span>环比</span>9</div>-->
|
||||||
|
</dv-border-box-5>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'TopLeftCmp',
|
||||||
|
props: {
|
||||||
|
data: []
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
// Accessing the prop directly in the data function
|
||||||
|
receivedValue: this.data,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
data(newVal) {
|
||||||
|
// Watching the data prop for changes
|
||||||
|
this.receivedValue = newVal;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="less">
|
||||||
|
.top-left-cmp {
|
||||||
|
display: flex;
|
||||||
|
|
||||||
|
.dc-left, .dc-right {
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dv-border-box-5 {
|
||||||
|
height: 60%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dc-text {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
height: 40%;
|
||||||
|
font-size: 20px;
|
||||||
|
padding: 20px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dc-left .dc-text {
|
||||||
|
align-items: flex-end;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dc-right .dc-text {
|
||||||
|
justify-content: flex-start;
|
||||||
|
padding-top: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dc-left .dv-border-box-5 {
|
||||||
|
padding: 30px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.dc-right .dv-border-box-5 {
|
||||||
|
padding: 40px;
|
||||||
|
padding-left: 75px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-value {
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 30px;
|
||||||
|
|
||||||
|
span {
|
||||||
|
font-size: 40px;
|
||||||
|
color: #00c0ff;
|
||||||
|
margin-right: 15px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.compare-value {
|
||||||
|
height: 35px;
|
||||||
|
line-height: 35px;
|
||||||
|
font-size: 18px;
|
||||||
|
|
||||||
|
span {
|
||||||
|
margin-right: 30px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
@ -0,0 +1,100 @@
|
|||||||
|
<template>
|
||||||
|
<div class="top-right-cmp">
|
||||||
|
<div class="chart-name">
|
||||||
|
产线停机次数
|
||||||
|
<dv-decoration-3 style="width:200px;height:20px;" />
|
||||||
|
</div>
|
||||||
|
<dv-charts :option="option" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'TopRightCmp',
|
||||||
|
data () {
|
||||||
|
return {
|
||||||
|
option: {
|
||||||
|
legend: {
|
||||||
|
data: [
|
||||||
|
{
|
||||||
|
name: '停机次数',
|
||||||
|
color: '#00baff'
|
||||||
|
}
|
||||||
|
|
||||||
|
],
|
||||||
|
textStyle: {
|
||||||
|
fill: '#fff'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
xAxis: {
|
||||||
|
data: [
|
||||||
|
],
|
||||||
|
axisLine: {
|
||||||
|
style: {
|
||||||
|
stroke: '#fff'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
axisLabel: {
|
||||||
|
style: {
|
||||||
|
fill: '#fff'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
axisTick: {
|
||||||
|
show: false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
yAxis: {
|
||||||
|
data: 'value',
|
||||||
|
splitLine: {
|
||||||
|
show: false
|
||||||
|
},
|
||||||
|
axisLine: {
|
||||||
|
style: {
|
||||||
|
stroke: '#fff'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
axisLabel: {
|
||||||
|
style: {
|
||||||
|
fill: '#fff'
|
||||||
|
}
|
||||||
|
},
|
||||||
|
axisTick: {
|
||||||
|
show: false
|
||||||
|
},
|
||||||
|
min: 0,
|
||||||
|
max: 8
|
||||||
|
},
|
||||||
|
series: [
|
||||||
|
{
|
||||||
|
name: '停机次数',
|
||||||
|
data: [
|
||||||
|
|
||||||
|
],
|
||||||
|
type: 'bar',
|
||||||
|
barStyle: {
|
||||||
|
fill: 'rgba(0, 186, 255, 0.4)'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="less">
|
||||||
|
.top-right-cmp {
|
||||||
|
position: relative;
|
||||||
|
padding: 0 50px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
|
||||||
|
.chart-name {
|
||||||
|
position: absolute;
|
||||||
|
right: 70px;
|
||||||
|
text-align: right;
|
||||||
|
font-size: 20px;
|
||||||
|
top: 10px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</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