Browse Source

发料接收添加生产线

hella_online_20240829
lijuncheng 2 months ago
parent
commit
6d33f3722f
  1. 8
      src/pages/productionReceipt/job/productionReceiptJob.vue

8
src/pages/productionReceipt/job/productionReceiptJob.vue

@ -34,7 +34,7 @@
import {
getProductionReceiptJobList,
cancleTakeProductionReceiptJob,
getIssueJobByProductionline
getProductionReceiptJobByProductionline
} from '@/api/request2.js';
import {
@ -90,7 +90,7 @@
},
onLoad(option) {
this.title = option.title
this.getIssueJobByProductionline()
this.getProductionReceiptJobByProductionline()
},
onShow() {
@ -138,8 +138,8 @@
this.productionLine = productionLineCode
this.getList('refresh', this.productionLine)
},
getIssueJobByProductionline() {
getIssueJobByProductionline().then(res => {
getProductionReceiptJobByProductionline() {
getProductionReceiptJobByProductionline().then(res => {
if (res.code == 0) {
this.productionLineList = res.data.map(item => ({
value: item.value,

Loading…
Cancel
Save