diff --git a/src/views/statistics/bxerp/fenjian.vue b/src/views/statistics/bxerp/fenjian.vue
index 7978f2c8..92b64fbf 100644
--- a/src/views/statistics/bxerp/fenjian.vue
+++ b/src/views/statistics/bxerp/fenjian.vue
@@ -115,13 +115,18 @@
{{scope.row.data.分检_缺陷项_扭转角不合格?scope.row.data.分检_缺陷项_扭转角不合格:0}}
-
+
+
+ {{toolList[scope.row.pre_info.tooling]}}
+
+
+
{{scope.row.data.喷码_一体刀_操作人}}
{{scope.row.data.喷码_磨床开台_操作人}}
-
+
{{ scope.row.data.分检_缺陷项_备注 }}
@@ -151,9 +156,21 @@ export default {
apiObj: this.$API.wpm.wpr.query,
options:[],
tableData:[],
+ toolList:{},
};
},
+ mounted() {
+ this.getToolings();
+ },
methods: {
+ getToolings(){
+ let that = this;
+ that.$API.em.equipment.list.req({ page: 0,type:10,cate__code:'7'}).then((res) => {
+ res.forEach((item) => {
+ that.toolList[item.id] = item.number;
+ });
+ });
+ },
handleQuery(){
let that = this;
let querys = [[{field:"wm",value:false,compare:"isnull"},{field:"data__分检_日期",compare:"isnull",value:false},{field:"data__has_key",compare:"",value:"分检_批次号"}]];