diff --git a/fe/PC/src/components/StepsCountPlanForm/index.vue b/fe/PC/src/components/StepsCountPlanForm/index.vue index 672d1c36f..26990ac01 100644 --- a/fe/PC/src/components/StepsCountPlanForm/index.vue +++ b/fe/PC/src/components/StepsCountPlanForm/index.vue @@ -665,6 +665,10 @@ export default { this.otherFormData.vendCondition = { filters:[] } + if(this.otherFormData.statusList.length <= 0){ + this.$warningMsg("请选择状态"); + return + } this.loading = true; // this.otherFormData.requestType = 2 this.splitFormData(this.otherFormData).then( diff --git a/fe/PC/src/views/inventoryManage/Count/CountPlan-ms.vue b/fe/PC/src/views/inventoryManage/Count/CountPlan-ms.vue index 2567dca0c..edb18d512 100644 --- a/fe/PC/src/views/inventoryManage/Count/CountPlan-ms.vue +++ b/fe/PC/src/views/inventoryManage/Count/CountPlan-ms.vue @@ -294,7 +294,9 @@ export default { this.paging() let inventoryStageArray = this.$staticOptions.inventoryStage() inventoryStageArray.forEach(item => { - this.editOptions.radios.push(item.label) + if(item.value != '31'){ + this.editOptions.radios.push(item.label) + } }) }, methods: {