liding
2026-04-10 c05b81c7f50df80ab247a05f9f92af2d799e77cd
src/views/productionManagement/productionOrder/New.vue
@@ -90,6 +90,12 @@
          <el-input-number v-model="formState.quantity" :step="1" :min="1" style="width: 100%" />
        </el-form-item>
        <el-form-item
            label="备注"
            prop="remark"
        >
          <el-input v-model="formState.remark" placeholder="备注" />
        </el-form-item>
      </el-form>
      <!-- 产品选择弹窗 -->
@@ -140,6 +146,7 @@
  priority: undefined,
  quantity: 0,
  batchNo: "",
  remark: "",
});
const isShow = computed({
@@ -173,6 +180,7 @@
    priority: priority_type.value && priority_type.value.length > 0 ? priority_type.value[2].value : undefined,
    quantity: '',
    batchNo: "",
    remark: "",
  };
  isShow.value = false;
};