From 45f507363633f52ff9cae62732155f4fefd6fe76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=94=A1=E8=8A=B1?= Date: Wed, 24 Jun 2020 10:53:23 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=BC=82=E5=B8=B8=E5=A4=87?= =?UTF-8?q?=E6=B3=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/pick/components/exceptionEdit.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/views/pick/components/exceptionEdit.vue b/src/views/pick/components/exceptionEdit.vue index c26bf14..e210859 100644 --- a/src/views/pick/components/exceptionEdit.vue +++ b/src/views/pick/components/exceptionEdit.vue @@ -24,6 +24,9 @@ placeholder="选择日期"> + + + @@ -46,12 +49,14 @@ return { objEditData: { orderRleaseGid: '', // 系统运单号(大文本框) + exceptionReason: '', // 异常原因 isCanSend: '', // 是否异常可以发运(N为不可发,Y为可发) houseId: '', // 获取当前仓库houseId estimatedProcessingTime: '' // 预计处理完成时间(时间做判断。不能早于当前时间,不能晚于当前时间30天) }, objEditRules: { orderRleaseGid: [{ required: true, message: '请选择', trigger: 'change' }], + exceptionReason: [{ required: true, message: '请选择', trigger: 'change' }], isCanSend: [{ required: true, message: '请选择', trigger: 'change' }], estimatedProcessingTime: [{ required: true, message: '请选择', trigger: 'change' }] }, @@ -76,6 +81,7 @@ that.makeInputDisabled = false that.objEditData = { orderRleaseGid: '', // 系统运单号(大文本框) + exceptionReason: '', // 异常原因 isCanSend: '', // 是否异常可以发运(N为不可发,Y为可发) houseId: '', // 获取当前仓库houseId estimatedProcessingTime: '' -- Gitee