commit 20221027
This commit is contained in:
@@ -40,15 +40,6 @@
|
||||
<!-- :value="item.value"-->
|
||||
<!-- size="mini"/>-->
|
||||
<!-- </el-select>-->
|
||||
<span style="margin-left: 10px">总成编号:</span>
|
||||
<el-select v-model="assemblyNumberValue" placeholder="请选择总成编号" filterable clearable size="small" style="width: 200px;">
|
||||
<el-option
|
||||
v-for="item in assemblyNumber"
|
||||
:key="item.value"
|
||||
:label="item.label"
|
||||
:value="item.value"
|
||||
size="mini"/>
|
||||
</el-select>
|
||||
<!-- <span style="margin-left: 10px">总成编号:</span>-->
|
||||
<!-- <el-input v-model="assemblyNumber" style="width:150px;" placeholder="总成编号" size="small" clearable/>-->
|
||||
<span style="margin-left: 10px">测量位置:</span>
|
||||
@@ -60,6 +51,15 @@
|
||||
:value="item.value"
|
||||
size="mini"/>
|
||||
</el-select>
|
||||
<span style="margin-left: 10px">总成编号:</span>
|
||||
<el-select v-model="assemblyNumberValue" placeholder="请选择总成编号" filterable clearable size="small" style="width: 240px;">
|
||||
<el-option
|
||||
v-for="item in assemblyNumber"
|
||||
:key="item.value"
|
||||
:label="item.label"
|
||||
:value="item.value"
|
||||
size="mini"/>
|
||||
</el-select>
|
||||
</div>
|
||||
<div style="margin-top: 10px">
|
||||
<span style="margin-left: 10px">订单号:</span>
|
||||
@@ -112,7 +112,7 @@
|
||||
</el-select>
|
||||
</div>
|
||||
<div style="margin: 10px 0 0 89%">
|
||||
<el-button type="primary" plain size="small" icon="el-icon-search" style="margin-left: 5px" @click="pageCurrent = 1,pageSize = 30,selectDate()">查询</el-button>
|
||||
<el-button type="primary" plain size="small" icon="el-icon-search" style="margin-left: 5px" @click="selectDate()">查询</el-button>
|
||||
<el-button type="info" size="small" icon="el-icon-download" @click="exportExcel()">Excel</el-button>
|
||||
</div>
|
||||
<el-table
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
size="mini"/>
|
||||
</el-select>
|
||||
<span style="margin-left: 10px">总成编号:</span>
|
||||
<el-select v-model="assemblyNumberValue" placeholder="请选择总成编号" filterable clearable size="small" style="width: 200px; margin-left: 13px">
|
||||
<el-select v-model="assemblyNumberValue" placeholder="请选择总成编号" filterable clearable size="small" style="width: 240px; margin-left: 13px">
|
||||
<el-option
|
||||
v-for="item in assemblyNumber"
|
||||
:key="item.ID"
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
<!-- size="mini"/>-->
|
||||
<!-- </el-select>-->
|
||||
<span style="margin-left: 10px">分总成编号:</span>
|
||||
<el-select v-model="assemblyNumberValue" placeholder="请选择总成编号" filterable clearable size="small" style="width: 200px">
|
||||
<el-select v-model="assemblyNumberValue" placeholder="请选择总成编号" filterable clearable size="small" style="width: 240px">
|
||||
<el-option
|
||||
v-for="item in assemblyNumber"
|
||||
:key="item.value"
|
||||
@@ -314,8 +314,10 @@ export default {
|
||||
this.engineTypeValue ? engineTypeValue_check = 1 : engineTypeValue_check = 0
|
||||
this.stationNumberValue ? stationNumberValue_check = 1 : stationNumberValue_check = 0
|
||||
var param = []
|
||||
param[0] = ['开始时间', this.dateTime[0]]
|
||||
param[1] = ['结束时间', this.dateTime[1]]
|
||||
param[0] = ['开始时间', this.dateTime[0] + ' ' + '00:00']
|
||||
param[1] = ['结束时间', this.dateTime[1] + ' ' + '23:59']
|
||||
// param[0] = ['开始时间', this.dateTime[0]]
|
||||
// param[1] = ['结束时间', this.dateTime[1]]
|
||||
param[2] = ['发动机型号_ischeck', engineTypeValue_check]
|
||||
param[3] = ['发动机型号', this.engineTypeValue]
|
||||
param[4] = ['工位号_ischeck', stationNumberValue_check]
|
||||
@@ -338,8 +340,8 @@ export default {
|
||||
this.engineTypeValue ? engineTypeValue_check = 1 : engineTypeValue_check = 0
|
||||
this.stationNumberValue ? stationNumberValue_check = 1 : stationNumberValue_check = 0
|
||||
var param = []
|
||||
param[0] = ['开始时间', this.dateTime[0]]
|
||||
param[1] = ['结束时间', this.dateTime[1]]
|
||||
param[0] = ['开始时间', this.dateTime[0] + ' ' + '00:00']
|
||||
param[1] = ['结束时间', this.dateTime[1] + ' ' + '23:59']
|
||||
param[2] = ['发动机型号_ischeck', engineTypeValue_check]
|
||||
param[3] = ['发动机型号', this.engineTypeValue]
|
||||
param[4] = ['工位号_ischeck', stationNumberValue_check]
|
||||
@@ -358,8 +360,8 @@ export default {
|
||||
getBatchBarcode() {
|
||||
this.batchBarcode = []
|
||||
var param = []
|
||||
param[0] = ['开始时间', this.dateTime[0]]
|
||||
param[1] = ['结束时间', this.dateTime[1]]
|
||||
param[0] = ['开始时间', this.dateTime[0] + ' ' + '00:00']
|
||||
param[1] = ['结束时间', this.dateTime[1] + ' ' + '23:59']
|
||||
param[2] = ['工位号', this.stationNumberValue]
|
||||
console.log(param, 'param')
|
||||
var Data = this.CreateData('11', '物料数据分线_视图_物料条码批次号_查询 ', param)
|
||||
@@ -397,8 +399,8 @@ export default {
|
||||
this.traceabilityCode ? traceabilityCode_check = 1 : (traceabilityCode_check = 0, this.traceabilityCode = '')
|
||||
this.batchBarcodeValue ? batchBarcodeValue_check = 1 : (batchBarcodeValue_check = 0, this.batchBarcodeValue = '')
|
||||
var param = []
|
||||
param[0] = ['开始时间', this.dateTime[0]]
|
||||
param[1] = ['结束时间', this.dateTime[1]]
|
||||
param[0] = ['开始时间', this.dateTime[0] + ' ' + '00:00']
|
||||
param[1] = ['结束时间', this.dateTime[1] + ' ' + '23:59']
|
||||
param[2] = ['发动机型号_ischeck', engineTypeValue_check]
|
||||
param[3] = ['发动机型号', this.engineTypeValue]
|
||||
param[4] = ['发动机号_ischeck', assemblyNumberValue_check]
|
||||
@@ -435,8 +437,8 @@ export default {
|
||||
this.traceabilityCode ? traceabilityCode_check = 1 : (traceabilityCode_check = 0, this.traceabilityCode = '')
|
||||
this.batchBarcodeValue ? batchBarcodeValue_check = 1 : (batchBarcodeValue_check = 0, this.batchBarcodeValue = '')
|
||||
var param = []
|
||||
param[0] = ['开始时间', this.dateTime[0]]
|
||||
param[1] = ['结束时间', this.dateTime[1]]
|
||||
param[0] = ['开始时间', this.dateTime[0] + ' ' + '00:00']
|
||||
param[1] = ['结束时间', this.dateTime[1] + ' ' + '23:59']
|
||||
param[2] = ['发动机型号_ischeck', engineTypeValue_check]
|
||||
param[3] = ['发动机型号', this.engineTypeValue]
|
||||
param[4] = ['发动机号_ischeck', assemblyNumberValue_check]
|
||||
|
||||
@@ -10,8 +10,8 @@
|
||||
filterable
|
||||
clearable
|
||||
size="small"
|
||||
style="width: 200px; margin-left: 13px"
|
||||
@change="getPartName();getBatchBarcode();getAssemblyNumber();getTraceabilityCode()">
|
||||
style="width: 200px"
|
||||
@change="getMeasuringPosition();getTraceabilityCode();getBatchBarcode();getAssemblyNumber()">
|
||||
<el-option
|
||||
v-for="item in stationNumber"
|
||||
:key="item.value"
|
||||
@@ -20,7 +20,7 @@
|
||||
size="mini"/>
|
||||
</el-select>
|
||||
<span style="margin-left: 10px">机型:</span>
|
||||
<el-select v-model="engineTypeValue" placeholder="请选择机型" filterable clearable size="small" style="width: 240px" @change="getPartName();getAssemblyNumber">
|
||||
<el-select v-model="engineTypeValue" placeholder="请选择机型" filterable clearable size="small" style="width: 240px" @change="getAssemblyNumber()">
|
||||
<el-option
|
||||
v-for="item in engineType"
|
||||
:key="item.value"
|
||||
@@ -29,18 +29,16 @@
|
||||
size="mini"/>
|
||||
</el-select>
|
||||
<span style="margin-left: 10px">精确追溯码:</span>
|
||||
<el-input v-model="traceabilityCode" placeholder="请输入精确追溯码" clearable size="small" style="width: 200px;"/>
|
||||
<!-- <span style="margin-left: 10px">精确追溯码:</span>-->
|
||||
<!-- <el-select v-model="traceabilityCode" placeholder="请选择精确追溯码" filterable clearable size="small" style="width: 200px">-->
|
||||
<!-- <el-option-->
|
||||
<!-- v-for="item in traceabilityCodeArr"-->
|
||||
<!-- :key="item.ID"-->
|
||||
<!-- :label="item.label"-->
|
||||
<!-- :value="item.value"-->
|
||||
<!-- size="mini"/>-->
|
||||
<!-- </el-select>-->
|
||||
<span style="margin-left: 10px">分总成编号:</span>
|
||||
<el-select v-model="assemblyNumberValue" placeholder="请选择总成编号" filterable clearable size="small" style="width: 200px">
|
||||
<el-select v-model="traceabilityCode" placeholder="请选择精确追溯码" filterable clearable size="small" style="width: 200px">
|
||||
<el-option
|
||||
v-for="item in traceabilityCodeArr"
|
||||
:key="item.ID"
|
||||
:label="item.label"
|
||||
:value="item.value"
|
||||
size="mini"/>
|
||||
</el-select>
|
||||
<span style="margin-left: 10px">总成编号:</span>
|
||||
<el-select v-model="assemblyNumberValue" placeholder="请选择总成编号" filterable clearable size="small" style="width: 240px; margin-left: 13px">
|
||||
<el-option
|
||||
v-for="item in assemblyNumber"
|
||||
:key="item.value"
|
||||
@@ -48,13 +46,24 @@
|
||||
:value="item.value"
|
||||
size="mini"/>
|
||||
</el-select>
|
||||
<!-- <span style="margin-left: 10px">总成编号:</span>-->
|
||||
<!-- <el-input v-model="assemblyNumber" style="width:150px;" placeholder="总成编号" size="small" clearable/>-->
|
||||
<span style="margin-left: 10px">测量位置:</span>
|
||||
<el-select v-model="measuringPositionValue" placeholder="请选择测量位置" filterable clearable size="small" style="width: 200px" @change="getMeasuringProject()">
|
||||
<el-option
|
||||
v-for="item in measuringPosition"
|
||||
:key="item.value"
|
||||
:label="item.label"
|
||||
:value="item.value"
|
||||
size="mini"/>
|
||||
</el-select>
|
||||
</div>
|
||||
<div style="margin-top: 10px">
|
||||
<span style="margin-left: 10px">零件名称:</span>
|
||||
<el-select v-model="partNameValue" placeholder="请选择零件名称" filterable clearable size="small" style="width: 200px;">
|
||||
<span style="margin-left: 10px">订单号:</span>
|
||||
<el-select v-model="orderNumberValue" placeholder="请选择订单" clearable filterable size="small" style="width: 200px">
|
||||
<el-option
|
||||
v-for="item in partName"
|
||||
:key="item.ID"
|
||||
v-for="item in orderNumber"
|
||||
:key="item.value"
|
||||
:label="item.label"
|
||||
:value="item.value"
|
||||
size="mini"/>
|
||||
@@ -71,21 +80,37 @@
|
||||
range-separator="~"
|
||||
start-placeholder="开始日期"
|
||||
end-placeholder="结束日期"
|
||||
@change="getTraceabilityCode();getBatchBarcode();getAssemblyNumber()"/>
|
||||
@change="getOrderNumber();getTraceabilityCode();getBatchBarcode();getAssemblyNumber()"/>
|
||||
<span style="margin-left: 10px">批次条码:</span>
|
||||
<el-input v-model="batchBarcodeValue" placeholder="请输入批次条码" clearable size="small" style="width: 200px; margin-left: 13px"/>
|
||||
<!-- <span style="margin-left: 10px">批次条码:</span>-->
|
||||
<!-- <el-select v-model="batchBarcodeValue" placeholder="请选择批次条码" clearable filterable size="small" style="width: 200px;margin-left: 13px">-->
|
||||
<!-- <el-option-->
|
||||
<!-- v-for="item in batchBarcode"-->
|
||||
<!-- :key="item.value"-->
|
||||
<!-- :label="item.label"-->
|
||||
<!-- :value="item.value"-->
|
||||
<!-- size="mini"/>-->
|
||||
<!-- </el-select>-->
|
||||
<el-select v-model="batchBarcodeValue" placeholder="请选择批次条码" clearable filterable size="small" style="width: 200px; margin-left: 13px">
|
||||
<el-option
|
||||
v-for="item in batchBarcode"
|
||||
:key="item.value"
|
||||
:label="item.label"
|
||||
:value="item.value"
|
||||
size="mini"/>
|
||||
</el-select>
|
||||
<span style="margin-left: 10px">是否合格:</span>
|
||||
<el-select v-model="isQualifiedValue" placeholder="请选择是否合格" clearable size="small" style="width: 240px; margin-left: 13px">
|
||||
<el-option
|
||||
v-for="item in isQualified"
|
||||
:key="item.value"
|
||||
:label="item.label"
|
||||
:value="item.value"
|
||||
size="mini"/>
|
||||
</el-select>
|
||||
<span style="margin-left: 10px">测量项目:</span>
|
||||
<el-select v-model="measuringProjectValue" placeholder="请选择测量项目" filterable clearable size="small" style="width: 200px">
|
||||
<el-option
|
||||
v-for="item in measuringProject"
|
||||
:key="item.value"
|
||||
:label="item.label"
|
||||
:value="item.value"
|
||||
size="mini"/>
|
||||
</el-select>
|
||||
</div>
|
||||
<div style="margin: 10px 0 0 89%">
|
||||
<el-button type="primary" plain size="small" icon="el-icon-search" style="margin-left: 5px" @click="pageCurrent = 1,pageSize = 30,selectDate()">查询</el-button>
|
||||
<el-button type="primary" plain size="small" icon="el-icon-search" style="margin-left: 5px" @click="selectDate()">查询</el-button>
|
||||
<el-button type="info" size="small" icon="el-icon-download" @click="exportExcel()">Excel</el-button>
|
||||
</div>
|
||||
<el-table
|
||||
@@ -97,6 +122,7 @@
|
||||
element-loading-text="数据加载中"
|
||||
element-loading-spinner="el-icon-loading"
|
||||
element-loading-background="rgba(0, 0, 0, 0.2)"
|
||||
stripe
|
||||
class="main"
|
||||
tooltip-effect="dark"
|
||||
height="660px"
|
||||
@@ -115,7 +141,7 @@
|
||||
{{ scope.row.发动机型号 }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column align="center" label="分总成编号">
|
||||
<el-table-column align="center" label="总成编号">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.发动机号 }}
|
||||
</template>
|
||||
@@ -130,44 +156,49 @@
|
||||
{{ scope.row.工序名称 }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column align="center" label="零件数量">
|
||||
<el-table-column align="center" label="测量位置">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.零件数量 }}
|
||||
{{ scope.row.测量位置 }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column align="center" label="零件名称">
|
||||
<el-table-column align="center" label="测量项目">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.零件名称 }}
|
||||
{{ scope.row.测量项目 }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column align="center" label="零件图号">
|
||||
<el-table-column align="center" label="测量值" width="80px">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.零件图号 }}
|
||||
{{ scope.row.测量值 }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column align="center" label="物料号">
|
||||
<el-table-column align="center" label="测量单位" width="80px">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.物料号 }}
|
||||
{{ scope.row.测量单位 }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column align="center" label="生产厂家">
|
||||
<el-table-column align="center" label="理论值" width="80px">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.生产厂家 }}
|
||||
{{ scope.row.理论值 }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column align="center" label="物料条码">
|
||||
<el-table-column align="center" label="值上限" width="80px">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.物料条码 }}
|
||||
{{ scope.row.上限值 }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column align="center" label="物料条码批次">
|
||||
<el-table-column align="center" label="值下限" width="80px">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.物料条码批次 }}
|
||||
{{ scope.row.下限值 }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column align="center" label="操作时间">
|
||||
<el-table-column align="center" label="生产日期">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.操作时间 }}
|
||||
{{ scope.row.生产日期 }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column align="center" label="合格标志" width="80px">
|
||||
<template slot-scope="scope">
|
||||
{{ scope.row.合格标志 }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
@@ -207,21 +238,19 @@ export default {
|
||||
engineType: [], // 机型
|
||||
batchBarcode: [], // 批次条码
|
||||
batchBarcodeValue: '', // 批次条码
|
||||
partName: [], // 零件名称
|
||||
partNameValue: '', // 零件名称
|
||||
isQualified: [
|
||||
{
|
||||
label: '合格',
|
||||
value: 1
|
||||
}, {
|
||||
label: '不合格',
|
||||
value: 2
|
||||
value: 0
|
||||
}, {
|
||||
label: '全部',
|
||||
value: 0
|
||||
value: 2
|
||||
}
|
||||
], // 是否合格
|
||||
isQualifiedValue: 1, // 是否合格
|
||||
isQualifiedValue: 2, // 是否合格
|
||||
dateTime: '', // 时间
|
||||
loading: false, // 时间
|
||||
tableData: [], // 时间
|
||||
@@ -246,9 +275,9 @@ export default {
|
||||
this.getEngineType()
|
||||
},
|
||||
mounted() {
|
||||
this.getOrderNumber()
|
||||
this.getTraceabilityCode()
|
||||
this.getAssemblyNumber()
|
||||
setTimeout(() => { this.getPartName() }, 200)
|
||||
},
|
||||
methods: {
|
||||
// 表格颜色变化
|
||||
@@ -274,6 +303,7 @@ export default {
|
||||
}
|
||||
}).then(() => {
|
||||
this.getBatchBarcode()
|
||||
this.getMeasuringPosition()
|
||||
})
|
||||
},
|
||||
// 机型
|
||||
@@ -290,19 +320,18 @@ export default {
|
||||
}
|
||||
})
|
||||
},
|
||||
// 零件名称
|
||||
getPartName() {
|
||||
this.partName = []
|
||||
// 订单号
|
||||
getOrderNumber() {
|
||||
this.orderNumber = []
|
||||
var param = []
|
||||
param[0] = ['发动机型号', this.engineTypeValue]
|
||||
param[1] = ['工位号', this.stationNumberValue]
|
||||
var Data = this.CreateData('11', '电子看板装配零件_零件名称_初始化查询 ', param)
|
||||
param[0] = ['开始时间', this.dateTime[0] + ' ' + '00:00']
|
||||
param[1] = ['结束时间', this.dateTime[1] + ' ' + '23:59']
|
||||
var Data = this.CreateData('11', '测量数据发动机在线状态_订单号_查询 ', param)
|
||||
this.ExecDatabase(Data).then(response => {
|
||||
for (let i = 0; i < response.data.length; i++) {
|
||||
this.partName.push({
|
||||
label: response.data[i].零件名称,
|
||||
value: response.data[i].零件名称,
|
||||
ID: response.data[i].ID
|
||||
this.orderNumber.push({
|
||||
label: response.data[i].订单号,
|
||||
value: response.data[i].订单号
|
||||
})
|
||||
}
|
||||
})
|
||||
@@ -316,8 +345,6 @@ export default {
|
||||
var param = []
|
||||
param[0] = ['开始时间', this.dateTime[0] + ' ' + '00:00']
|
||||
param[1] = ['结束时间', this.dateTime[1] + ' ' + '23:59']
|
||||
// param[0] = ['开始时间', this.dateTime[0]]
|
||||
// param[1] = ['结束时间', this.dateTime[1]]
|
||||
param[2] = ['发动机型号_ischeck', engineTypeValue_check]
|
||||
param[3] = ['发动机型号', this.engineTypeValue]
|
||||
param[4] = ['工位号_ischeck', stationNumberValue_check]
|
||||
@@ -342,8 +369,6 @@ export default {
|
||||
var param = []
|
||||
param[0] = ['开始时间', this.dateTime[0] + ' ' + '00:00']
|
||||
param[1] = ['结束时间', this.dateTime[1] + ' ' + '23:59']
|
||||
// param[0] = ['开始时间', this.dateTime[0]]
|
||||
// param[1] = ['结束时间', this.dateTime[1]]
|
||||
param[2] = ['发动机型号_ischeck', engineTypeValue_check]
|
||||
param[3] = ['发动机型号', this.engineTypeValue]
|
||||
param[4] = ['工位号_ischeck', stationNumberValue_check]
|
||||
@@ -364,10 +389,7 @@ export default {
|
||||
var param = []
|
||||
param[0] = ['开始时间', this.dateTime[0] + ' ' + '00:00']
|
||||
param[1] = ['结束时间', this.dateTime[1] + ' ' + '23:59']
|
||||
// param[0] = ['开始时间', this.dateTime[0]]
|
||||
// param[1] = ['结束时间', this.dateTime[1]]
|
||||
param[2] = ['工位号', this.stationNumberValue]
|
||||
console.log(param, 'param')
|
||||
var Data = this.CreateData('11', '物料数据分线_视图_物料条码批次号_查询 ', param)
|
||||
this.ExecDatabase(Data).then(response => {
|
||||
for (let i = 0; i < response.data.length; i++) {
|
||||
@@ -378,6 +400,22 @@ export default {
|
||||
}
|
||||
})
|
||||
},
|
||||
getMeasuringPosition() {
|
||||
this.measuringPosition = []
|
||||
var param = []
|
||||
param[0] = ['工位号', this.stationNumberValue]
|
||||
var Data = this.CreateData('11', '质量数据查询_测量位置 ', param)
|
||||
this.ExecDatabase(Data).then(response => {
|
||||
for (let i = 0; i < response.data.length; i++) {
|
||||
this.measuringPosition.push({
|
||||
label: response.data[i].测量位置,
|
||||
value: response.data[i].测量位置
|
||||
})
|
||||
}
|
||||
}).then(() => {
|
||||
this.getMeasuringProject()
|
||||
})
|
||||
},
|
||||
getMeasuringProject() {
|
||||
this.measuringProject = []
|
||||
var param = []
|
||||
@@ -395,35 +433,37 @@ export default {
|
||||
},
|
||||
selectDate() {
|
||||
this.tableData = []
|
||||
let engineTypeValue_check, assemblyNumberValue_check, stationNumberValue_check, partNameValue_check, traceabilityCode_check, batchBarcodeValue_check
|
||||
let engineTypeValue_check, assemblyNumberValue_check, stationNumberValue_check, measuringPositionValue_check, measuringProjectValue_check, traceabilityCode_check, orderNumberValue_check
|
||||
this.engineTypeValue ? engineTypeValue_check = 1 : (engineTypeValue_check = 0, this.engineTypeValue = '')
|
||||
this.assemblyNumberValue ? assemblyNumberValue_check = 1 : (assemblyNumberValue_check = 0, this.assemblyNumberValue = '')
|
||||
this.stationNumberValue ? stationNumberValue_check = 1 : (stationNumberValue_check = 0, this.stationNumberValue = '')
|
||||
this.partNameValue ? partNameValue_check = 1 : (partNameValue_check = 0, this.partNameValue = '')
|
||||
this.measuringPositionValue ? measuringPositionValue_check = 1 : (measuringPositionValue_check = 0, this.measuringPositionValue = '')
|
||||
this.measuringProjectValue ? measuringProjectValue_check = 1 : (measuringProjectValue_check = 0, this.measuringProjectValue = '')
|
||||
this.traceabilityCode ? traceabilityCode_check = 1 : (traceabilityCode_check = 0, this.traceabilityCode = '')
|
||||
this.batchBarcodeValue ? batchBarcodeValue_check = 1 : (batchBarcodeValue_check = 0, this.batchBarcodeValue = '')
|
||||
this.orderNumberValue ? orderNumberValue_check = 1 : (orderNumberValue_check = 0, this.orderNumberValue = '')
|
||||
var param = []
|
||||
param[0] = ['开始时间', this.dateTime[0] + ' ' + '00:00']
|
||||
param[1] = ['结束时间', this.dateTime[1] + ' ' + '23:59']
|
||||
// param[0] = ['开始时间', this.dateTime[0]]
|
||||
// param[1] = ['结束时间', this.dateTime[1]]
|
||||
param[2] = ['发动机型号_ischeck', engineTypeValue_check]
|
||||
param[3] = ['发动机型号', this.engineTypeValue]
|
||||
param[4] = ['发动机号_ischeck', assemblyNumberValue_check]
|
||||
param[5] = ['发动机号', this.assemblyNumberValue]
|
||||
param[6] = ['工位号_ischeck', stationNumberValue_check]
|
||||
param[7] = ['工位号', this.stationNumberValue]
|
||||
param[8] = ['零件名称_ischeck', partNameValue_check]
|
||||
param[9] = ['零件名称', this.partNameValue]
|
||||
param[10] = ['二维码_ischeck', traceabilityCode_check]
|
||||
param[11] = ['二维码', this.traceabilityCode]
|
||||
param[12] = ['物料条码批次_ischeck', batchBarcodeValue_check]
|
||||
param[13] = ['物料条码批次', this.batchBarcodeValue]
|
||||
param[14] = ['PageCurrent', this.pageCurrent]
|
||||
param[15] = ['PageSize', this.pageSize]
|
||||
param[16] = ['PageCount', '1111', 'int', '1']
|
||||
param[17] = ['ItemCount', '1111', 'int', '1']
|
||||
var Data = this.CreateData('11', '物料数据分线_视图_查询', param)
|
||||
param[8] = ['测量位置_ischeck', measuringPositionValue_check]
|
||||
param[9] = ['测量位置', this.measuringPositionValue]
|
||||
param[10] = ['测量项目_ischeck', measuringProjectValue_check]
|
||||
param[11] = ['测量项目', this.measuringProjectValue]
|
||||
param[12] = ['订单号_ischeck', orderNumberValue_check]
|
||||
param[13] = ['订单号', this.orderNumberValue]
|
||||
param[14] = ['批次条码_ischeck', traceabilityCode_check]
|
||||
param[15] = ['批次条码', this.traceabilityCode]
|
||||
param[16] = ['合格标志', this.isQualifiedValue]
|
||||
param[17] = ['PageCurrent', this.pageCurrent]
|
||||
param[18] = ['PageSize', this.pageSize]
|
||||
param[19] = ['PageCount', '1111', 'int', '1']
|
||||
param[20] = ['ItemCount', '1111', 'int', '1']
|
||||
var Data = this.CreateData('11', '质量数据_发动机分线质量数据_综合查询', param)
|
||||
this.ExecDatabase(Data).then(response => {
|
||||
console.log(response, 66)
|
||||
if (response.data.result.length !== 0) {
|
||||
@@ -435,31 +475,33 @@ export default {
|
||||
},
|
||||
exportExcel() {
|
||||
if (this.tableData.length !== 0) {
|
||||
let engineTypeValue_check, assemblyNumberValue_check, stationNumberValue_check, partNameValue_check, traceabilityCode_check, batchBarcodeValue_check
|
||||
let engineTypeValue_check, assemblyNumberValue_check, stationNumberValue_check, measuringPositionValue_check, measuringProjectValue_check, traceabilityCode_check, orderNumberValue_check
|
||||
this.engineTypeValue ? engineTypeValue_check = 1 : (engineTypeValue_check = 0, this.engineTypeValue = '')
|
||||
this.assemblyNumberValue ? assemblyNumberValue_check = 1 : (assemblyNumberValue_check = 0, this.assemblyNumberValue = '')
|
||||
this.stationNumberValue ? stationNumberValue_check = 1 : (stationNumberValue_check = 0, this.stationNumberValue = '')
|
||||
this.partNameValue ? partNameValue_check = 1 : (partNameValue_check = 0, this.partNameValue = '')
|
||||
this.measuringPositionValue ? measuringPositionValue_check = 1 : (measuringPositionValue_check = 0, this.measuringPositionValue = '')
|
||||
this.measuringProjectValue ? measuringProjectValue_check = 1 : (measuringProjectValue_check = 0, this.measuringProjectValue = '')
|
||||
this.traceabilityCode ? traceabilityCode_check = 1 : (traceabilityCode_check = 0, this.traceabilityCode = '')
|
||||
this.batchBarcodeValue ? batchBarcodeValue_check = 1 : (batchBarcodeValue_check = 0, this.batchBarcodeValue = '')
|
||||
this.orderNumberValue ? orderNumberValue_check = 1 : (orderNumberValue_check = 0, this.orderNumberValue = '')
|
||||
var param = []
|
||||
param[0] = ['开始时间', this.dateTime[0] + ' ' + '00:00']
|
||||
param[1] = ['结束时间', this.dateTime[1] + ' ' + '23:59']
|
||||
// param[0] = ['开始时间', this.dateTime[0]]
|
||||
// param[1] = ['结束时间', this.dateTime[1]]
|
||||
param[2] = ['发动机型号_ischeck', engineTypeValue_check]
|
||||
param[3] = ['发动机型号', this.engineTypeValue]
|
||||
param[4] = ['发动机号_ischeck', assemblyNumberValue_check]
|
||||
param[5] = ['发动机号', this.assemblyNumberValue]
|
||||
param[6] = ['工位号_ischeck', stationNumberValue_check]
|
||||
param[7] = ['工位号', this.stationNumberValue]
|
||||
param[8] = ['零件名称_ischeck', partNameValue_check]
|
||||
param[9] = ['零件名称', this.partNameValue]
|
||||
param[10] = ['二维码_ischeck', traceabilityCode_check]
|
||||
param[11] = ['二维码', this.traceabilityCode]
|
||||
param[12] = ['物料条码批次_ischeck', batchBarcodeValue_check]
|
||||
param[13] = ['物料条码批次', this.batchBarcodeValue]
|
||||
var Data = this.CreateData('2001', '物料数据分线查询_报表新', param)
|
||||
param[8] = ['测量位置_ischeck', measuringPositionValue_check]
|
||||
param[9] = ['测量位置', this.measuringPositionValue]
|
||||
param[10] = ['测量项目_ischeck', measuringProjectValue_check]
|
||||
param[11] = ['测量项目', this.measuringProjectValue]
|
||||
param[12] = ['订单号_ischeck', orderNumberValue_check]
|
||||
param[13] = ['订单号', this.orderNumberValue]
|
||||
param[14] = ['批次条码_ischeck', traceabilityCode_check]
|
||||
param[15] = ['批次条码', this.traceabilityCode]
|
||||
param[16] = ['合格标志', this.isQualifiedValue]
|
||||
var Data = this.CreateData('2001', '质量数据分线_导出新', param)
|
||||
this.exportExcel_NPOI(Data)
|
||||
} else {
|
||||
this.$message.warning('暂无数据')
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
<!-- size="mini"/>-->
|
||||
<!-- </el-select>-->
|
||||
<span style="margin-left: 10px">总成编号:</span>
|
||||
<el-select v-model="assemblyNumberValue" placeholder="请选择总成编号" filterable clearable size="small" style="width: 200px">
|
||||
<el-select v-model="assemblyNumberValue" placeholder="请选择总成编号" filterable clearable size="small" style="width: 240px">
|
||||
<el-option
|
||||
v-for="item in assemblyNumber"
|
||||
:key="item.value"
|
||||
@@ -308,8 +308,6 @@ export default {
|
||||
var param = []
|
||||
param[0] = ['开始时间', this.dateTime[0] + ' ' + '00:00']
|
||||
param[1] = ['结束时间', this.dateTime[1] + ' ' + '23:59']
|
||||
// param[0] = ['开始时间', this.dateTime[0]]
|
||||
// param[1] = ['结束时间', this.dateTime[1]]
|
||||
param[2] = ['发动机型号_ischeck', engineTypeValue_check]
|
||||
param[3] = ['发动机型号', this.engineTypeValue]
|
||||
param[4] = ['工位号_ischeck', stationNumberValue_check]
|
||||
@@ -334,8 +332,6 @@ export default {
|
||||
var param = []
|
||||
param[0] = ['开始时间', this.dateTime[0] + ' ' + '00:00']
|
||||
param[1] = ['结束时间', this.dateTime[1] + ' ' + '23:59']
|
||||
// param[0] = ['开始时间', this.dateTime[0]]
|
||||
// param[1] = ['结束时间', this.dateTime[1]]
|
||||
param[2] = ['发动机型号_ischeck', engineTypeValue_check]
|
||||
param[3] = ['发动机型号', this.engineTypeValue]
|
||||
param[4] = ['工位号_ischeck', stationNumberValue_check]
|
||||
@@ -356,8 +352,6 @@ export default {
|
||||
var param = []
|
||||
param[0] = ['开始时间', this.dateTime[0] + ' ' + '00:00']
|
||||
param[1] = ['结束时间', this.dateTime[1] + ' ' + '23:59']
|
||||
// param[0] = ['开始时间', this.dateTime[0]]
|
||||
// param[1] = ['结束时间', this.dateTime[1]]
|
||||
param[2] = ['工位号', this.stationNumberValue]
|
||||
var Data = this.CreateData('11', '物料数据_视图_物料条码批次号_查询 ', param)
|
||||
this.ExecDatabase(Data).then(response => {
|
||||
|
||||
@@ -256,7 +256,7 @@ export default {
|
||||
series: [
|
||||
{
|
||||
name: 'PASS',
|
||||
data: this.number,
|
||||
data: this.yData,
|
||||
type: 'bar',
|
||||
showBackground: true,
|
||||
backgroundStyle: {
|
||||
@@ -277,7 +277,7 @@ export default {
|
||||
},
|
||||
{
|
||||
name: 'NO',
|
||||
data: this.yData,
|
||||
data: this.number,
|
||||
type: 'bar',
|
||||
showBackground: true,
|
||||
backgroundStyle: {
|
||||
@@ -311,8 +311,10 @@ export default {
|
||||
this.stationNumberValue ? stationNumberValue_check = 1 : (stationNumberValue_check = 0, this.stationNumberValue = '')
|
||||
this.orderNumberValue ? orderNumberValue_check = 1 : (orderNumberValue_check = 0, this.orderNumberValue = '')
|
||||
var param = []
|
||||
param[0] = ['开始时间', this.dateTime[0]]
|
||||
param[1] = ['结束时间', this.dateTime[1]]
|
||||
param[0] = ['开始时间', this.dateTime[0] + ' ' + '00:00']
|
||||
param[1] = ['结束时间', this.dateTime[1] + ' ' + '23:59']
|
||||
// param[0] = ['开始时间', this.dateTime[0]]
|
||||
// param[1] = ['结束时间', this.dateTime[1]]
|
||||
param[2] = ['工位号_ischeck', stationNumberValue_check]
|
||||
param[3] = ['工位号', this.stationNumberValue]
|
||||
param[4] = ['订单号_ischeck', orderNumberValue_check]
|
||||
@@ -349,8 +351,10 @@ export default {
|
||||
this.stationNumberValue ? stationNumberValue_check = 1 : (stationNumberValue_check = 0, this.stationNumberValue = '')
|
||||
this.orderNumberValue ? orderNumberValue_check = 1 : (orderNumberValue_check = 0, this.orderNumberValue = '')
|
||||
var param = []
|
||||
param[0] = ['开始时间', this.dateTime[0]]
|
||||
param[1] = ['结束时间', this.dateTime[1]]
|
||||
param[0] = ['开始时间', this.dateTime[0] + ' ' + '00:00']
|
||||
param[1] = ['结束时间', this.dateTime[1] + ' ' + '23:59']
|
||||
// param[0] = ['开始时间', this.dateTime[0]]
|
||||
// param[1] = ['结束时间', this.dateTime[1]]
|
||||
param[2] = ['工位号_ischeck', stationNumberValue_check]
|
||||
param[3] = ['工位号', this.stationNumberValue]
|
||||
param[4] = ['订单号_ischeck', orderNumberValue_check]
|
||||
@@ -389,8 +393,10 @@ export default {
|
||||
this.stationNumberValue ? stationNumberValue_check = 1 : (stationNumberValue_check = 0, this.stationNumberValue = '')
|
||||
this.orderNumberValue ? orderNumberValue_check = 1 : (orderNumberValue_check = 0, this.orderNumberValue = '')
|
||||
var param = []
|
||||
param[0] = ['开始时间', this.dateTime[0]]
|
||||
param[1] = ['结束时间', this.dateTime[1]]
|
||||
param[0] = ['开始时间', this.dateTime[0] + ' ' + '00:00']
|
||||
param[1] = ['结束时间', this.dateTime[1] + ' ' + '23:59']
|
||||
// param[0] = ['开始时间', this.dateTime[0]]
|
||||
// param[1] = ['结束时间', this.dateTime[1]]
|
||||
param[2] = ['工位号_ischeck', stationNumberValue_check]
|
||||
param[3] = ['工位号', this.stationNumberValue]
|
||||
param[4] = ['订单号_ischeck', orderNumberValue_check]
|
||||
|
||||
Reference in New Issue
Block a user