fix:原料库添加物料类型
This commit is contained in:
parent
23570fd84b
commit
d3db926789
|
@ -44,11 +44,11 @@
|
|||
</el-table-column>
|
||||
<el-table-column label="物料名称" prop="material_name">
|
||||
</el-table-column>
|
||||
<!-- <el-table-column label="规格型号">
|
||||
<el-table-column label="类型">
|
||||
<template #default="scope">
|
||||
{{ scope.row.specification }} {{ scope.row.model }}
|
||||
<el-tag :type="getType(scope.row.state)">{{ state_[scope.row.state] }}</el-tag>
|
||||
</template>
|
||||
</el-table-column> -->
|
||||
</el-table-column>
|
||||
<el-table-column label="仓库" prop="warehouse_name">
|
||||
</el-table-column>
|
||||
<el-table-column label="物料存量" prop="count">
|
||||
|
@ -92,12 +92,26 @@ export default {
|
|||
materialsVisible:false,
|
||||
apiObjPrint:this.$API.cm.labelmat.fromMb,
|
||||
wmId:'',
|
||||
state_:{
|
||||
10:'合格品',
|
||||
20:'不合格品',
|
||||
30:'返修品',
|
||||
},
|
||||
};
|
||||
},
|
||||
mounted() {
|
||||
this.getWarehouse();
|
||||
},
|
||||
methods: {
|
||||
getType(type){
|
||||
if(type==10){
|
||||
return 'success'
|
||||
}else if(type==20){
|
||||
return 'danger'
|
||||
}else if(type==30){
|
||||
return 'warning'
|
||||
}
|
||||
},
|
||||
getWarehouse() {
|
||||
this.$API.inm.warehouse.list.req({ page: 0 }).then((res) => {
|
||||
this.warehouseOptions = res;
|
||||
|
|
Loading…
Reference in New Issue