diff --git a/src/views/emis/emisWaybill/waybillRecord.vue b/src/views/emis/emisWaybill/waybillRecord.vue index ab78c235..565e0c1c 100644 --- a/src/views/emis/emisWaybill/waybillRecord.vue +++ b/src/views/emis/emisWaybill/waybillRecord.vue @@ -1048,6 +1048,12 @@ data() { message: this.$t('运单号格式错误,仅支持字母、数字和横杠,横杠需在字母/数字中间'), trigger: 'blur' }, + { + min: 6, + max: 18, + message: this.$t('运单号长度在6-18个字符之间'), + trigger: 'blur' + } ], destinationCountry: [ { required: true, message: "目的国不能为空", trigger: ["blur",'change'] }