Commit 14c4c724 authored by Smile's avatar Smile

bug237 (生产)【客户-客户详情-订单】语言为英文时,订单列表有些字段没有翻译

parent 2a98c9f4
...@@ -336,7 +336,7 @@ export default { ...@@ -336,7 +336,7 @@ export default {
this.$modal.msgWarning(this.$t('开始日期不能早于今天')) this.$modal.msgWarning(this.$t('开始日期不能早于今天'))
return false return false
} }
if(specificDate>endDate) { if(this.queryParams.endTime!=null&&specificDate>endDate) {
this.$modal.msgWarning(this.$t('开始日期不能大于结束时间')) this.$modal.msgWarning(this.$t('开始日期不能大于结束时间'))
return false return false
} }
...@@ -366,7 +366,7 @@ export default { ...@@ -366,7 +366,7 @@ export default {
this.$modal.msgWarning(this.$t('开始日期不能早于今天')) this.$modal.msgWarning(this.$t('开始日期不能早于今天'))
return false return false
} }
if(specificDate>endDate) { if(this.queryParams.endTime!=null&&specificDate>endDate) {
this.$modal.msgWarning(this.$t('开始日期不能大于结束时间')) this.$modal.msgWarning(this.$t('开始日期不能大于结束时间'))
return false return false
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment