Merge branch 'master' of https://e.coding.net/ctcdevteam/ehs/ehs_web
This commit is contained in:
commit
b31ae9403c
|
@ -144,6 +144,8 @@
|
|||
:value="item.id"
|
||||
>
|
||||
<span>{{ item.batch }}</span>
|
||||
<span v-if="item.material_">({{ item.material_.process_name }})</span>
|
||||
|
||||
<div style="float: right">
|
||||
<span>{{ item.count }}</span>
|
||||
<span v-if="item.notok_sign_name !== null" style="color: #aaaaaa">
|
||||
|
|
|
@ -86,7 +86,8 @@
|
|||
min-width="80"
|
||||
>
|
||||
<template #default="scope">
|
||||
<el-link :underline="false" type="primary" @click="showWpr(scope.row)">{{scope.row.count}}</el-link>
|
||||
<span v-if="scope.row.material_&&scope.row.material_.tracking==10">{{scope.row.count}}</span>
|
||||
<el-link v-else :underline="false" type="primary" @click="showWpr(scope.row)">{{scope.row.count}}</el-link>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
|
@ -111,9 +112,8 @@
|
|||
>
|
||||
<template #default="scope">
|
||||
<el-link :underline="false" @click="printMaterial(scope.row)" type="primary">物料标签</el-link>
|
||||
<!-- <el-link
|
||||
v-if="scope.row.material_&&scope.row.material_.tracking==10" -->
|
||||
<el-link
|
||||
v-if="scope.row.material_&&scope.row.material_.tracking==10"
|
||||
:underline="false"
|
||||
@click="inmCheck(scope.row)"
|
||||
type="primary"
|
||||
|
|
|
@ -156,6 +156,8 @@ export default {
|
|||
return item.parent==null;
|
||||
})
|
||||
that.form.parent = that.mlogbInOptions[0].id;
|
||||
}else{
|
||||
that.form.parent = '';
|
||||
}
|
||||
})
|
||||
},
|
||||
|
@ -209,7 +211,8 @@ export default {
|
|||
that.form.batch = '';
|
||||
that.form.parent = '';
|
||||
that.form.count_use = 0;
|
||||
that.getParentList();
|
||||
that.$emit("closed");
|
||||
that.visible = false;
|
||||
}).catch((err) => {});
|
||||
},
|
||||
//设置过滤项
|
||||
|
|
Loading…
Reference in New Issue