feat:统计分析->光锥成品检测

This commit is contained in:
shijing 2025-11-12 10:55:26 +08:00
parent ac8fe25ea2
commit 6a73dedbb8
1 changed files with 161 additions and 0 deletions

View File

@ -0,0 +1,161 @@
<template>
<el-container>
<el-header>
<div class="right-panel">
<!-- <el-input v-model="query.name__contains"
placeholder="产品名称"
clearable
style="width: 200px;"
></el-input> -->
<el-input v-model="query.batch__contains"
placeholder="批次号"
clearable
style="width: 200px;"
></el-input>
<el-button
type="primary"
icon="el-icon-search"
@click="handleQuery"
></el-button>
<el-button
@click="handleExport"
class="tables"
type="primary"
>导出</el-button
>
</div>
</el-header>
<el-main class="nopadding">
<scTable
ref="table"
:apiObj="apiObj"
:params="params"
:query="params"
id="exportDiv"
stripe
>
<el-table-column type="index" width="50" fixed="left"/>
<el-table-column label="批次号" fixed="left">
<template #default="scope">
<span>{{ scope.row.data.光锥成品检测_批次号 }}</span>
</template>
</el-table-column>
<el-table-column label="板号" prop="number" fixed="left">
</el-table-column>
<el-table-column label="放大率" align="center" class-name="colorheader1">
<template #default="scope">
<span>{{ scope.row.data.光锥成品检测_缺陷项_放大率?scope.row.data.光锥成品检测_缺陷项_放大率:0 }}</span>
</template>
</el-table-column>
<el-table-column label="方台" align="center" class-name="colorheader2">
<template #default="scope">
<span>{{ scope.row.data.光锥成品检测_缺陷项_方台?scope.row.data.光锥成品检测_缺陷项_方台:0 }}</span>
</template>
</el-table-column>
<el-table-column label="缺角" align="center" class-name="colorheader3">
<template #default="scope">
<span>{{ scope.row.data.光锥成品检测_缺陷项_缺角?scope.row.data.光锥成品检测_缺陷项_缺角:0 }}</span>
</template>
</el-table-column>
<el-table-column label="畸变" align="center" class-name="colorheader4">
<template #default="scope">
<span>{{ scope.row.data.光锥成品检测_缺陷项_畸变?scope.row.data.光锥成品检测_缺陷项_畸变:0 }}</span>
</template>
</el-table-column>
<el-table-column label="高度" align="center" class-name="colorheader5">
<template #default="scope">
<span>{{ scope.row.data.光锥成品检测_缺陷项_高度?scope.row.data.光锥成品检测_缺陷项_高度:0 }}</span>
</template>
</el-table-column>
<el-table-column label="外径" align="center" class-name="colorheader6">
<template #default="scope">
<span>{{ scope.row.data.光锥成品检测_缺陷项_外径?scope.row.data.光锥成品检测_缺陷项_外径:0 }}</span>
</template>
</el-table-column>
<el-table-column label="小经" align="center" class-name="colorheader7">
<template #default="scope">
<span>{{ scope.row.data.光锥成品检测_缺陷项_小经?scope.row.data.光锥成品检测_缺陷项_小经:0 }}</span>
</template>
</el-table-column>
<el-table-column label="凹面直径" align="center" class-name="colorheader1">
<template #default="scope">
<span>{{ scope.row.data.光锥成品检测_缺陷项_凹面直径?scope.row.data.光锥成品检测_缺陷项_凹面直径:0 }}</span>
</template>
</el-table-column>
<el-table-column label="备注" align="center" class-name="colorheader3">
<template #default="scope">
<span>{{ scope.row.data.光锥成品检测_缺陷项_备注 }}</span>
</template>
</el-table-column>
</scTable>
</el-main>
</el-container>
</template>
<script>
export default {
name: "statistics_guan",
data() {
return {
params: {
ordering:'data__光锥成品检测_批次号',
querys:[[{field:"wm",value:0,compare:"isnull"},{field:"data__has_key",compare:"",value:"光锥成品检测_批次号"}]],
},
query:{
name__contains:'',
batch__contains:'',
last_time__gte:'',
last_time__lte:'',
},
apiObj: this.$API.wpm.wpr.query,
options:[],
tableData:[],
};
},
methods: {
handleQuery(){
let that = this;
let querys = [[{field:"wm",value:0,compare:"isnull"},{field:"data__has_key",compare:"",value:"光锥成品检测_批次号"}]];
let obj = {},obj1 = {},obj2 = {},obj3 = {};
obj.field = 'data__光锥成品检测_批次号';
obj.value = that.query.batch__contains;
obj.compare = '';
obj1.field = 'last_time';
obj1.value = that.query.last_time__gte;
obj1.compare = 'gte';
obj2.field = 'last_time';
obj2.value = that.query.last_time__lte;
obj2.compare = 'lte';
obj3.field = 'data__光锥成品检测_物料名';
obj3.value = that.query.name__contains;
obj3.compare = '';
if(that.query.batch__contains!==''&&that.query.batch__contains!==null){
querys[0].push(obj);
}
if(that.query.last_time__gte!==''&&that.query.last_time__gte!==null){
querys[0].push(obj1);
}
if(that.query.last_time__lte!==''&&that.query.last_time__lte!==null){
querys[0].push(obj2);
}
if(that.query.name__contains!==''&&that.query.name__contains!==null){
querys[0].push(obj3);
}
that.params.querys = querys;
this.$refs.table.queryData(that.params);
},
getCountQt(data,type){
let count_qt = 0,count = 0;
}
},
};
</script>
<style scoped>
</style>