diff --git a/src/pages/count/job/countJob.vue b/src/pages/count/job/countJob.vue index b8c361b7..3d33f089 100644 --- a/src/pages/count/job/countJob.vue +++ b/src/pages/count/job/countJob.vue @@ -310,7 +310,7 @@ }) if (list.length == 0) { - that.showMessage('未查找到库位' + '【' + result.label.code + '】的盘点任务'); + that.showMessage('库位' + '【' + result.label.code + '】未关联到盘点任务'); } else if (list.length == 1) { that.selectItem(list[0]); } else { diff --git a/src/pages/count/job/countLightDetail.vue b/src/pages/count/job/countLightDetail.vue index 0c603637..3514b85c 100644 --- a/src/pages/count/job/countLightDetail.vue +++ b/src/pages/count/job/countLightDetail.vue @@ -187,6 +187,7 @@ that.dataList.forEach(res => { res.scaned = false; }) + // that.dataList =[] that.updateList(false) } @@ -577,17 +578,12 @@ }, submitJob() { - if (!this.checkData()) { - this.showErrorMessage("当前扫描数据为0,请先扫描") - return; - } uni.showLoading({ title: "提交中....", mask: true }); var params = this.setParams() - // return; countJobSubmit(params).then(res => { uni.hideLoading() const str = res.data || '' @@ -614,7 +610,6 @@ locationCode: this.locationCode, recordList: [] } - var subList = [] this.dataList.forEach(item => { if (item.scaned && item.recordList && item.recordList.length > 0) { submitData.recordList = submitData.recordList.concat(item.recordList)