Browse Source

补料按数量跳转问题

intex
张立 6 days ago
parent
commit
4987599f70
  1. 4
      src/pages/repleinsh/job/repleinshJob.vue

4
src/pages/repleinsh/job/repleinshJob.vue

@ -368,8 +368,8 @@
if (ret.success) {
this.managementList = ret.list;
this.managementType = this.managementList.some(cur => cur.ManagementPrecision == 'BY_BATCH') ?
'BY_BATCH' : ''
if (this.managementType == 'BY_BATCH') {
'BY_BATCH' : this.managementList.some(cur => cur.ManagementPrecision == 'BY_QUANTITY') ? 'BY_QUANTITY':''
if (this.managementType == 'BY_BATCH' || this.managementType == 'BY_QUANTITY') {
uni.navigateTo({
url: './repleinshDetailBatch?id=' + result.masterId + '&status=' + result.status +
'&scanMessage=' +

Loading…
Cancel
Save