Commit 7a7ed0aa authored by Smile's avatar Smile

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

parent 5b9d11e3
......@@ -391,11 +391,11 @@ export default {
var nowMidnight = new Date(now.getFullYear(), now.getMonth(), now.getDate());
var specificDate = new Date(this.queryParams.startTime);
if(specificDate<nowMidnight) {
this.$modal.msgWarning('开始日期不能早于今天')
this.$modal.msgWarning(this.$t('开始日期不能早于今天'))
return false
}
if(this.queryParams.startTime>this.queryParams.endTime) {
this.$modal.msgWarning('开始日期不能大于结束时间')
this.$modal.msgWarning(this.$t('开始日期不能大于结束时间'))
return false
}
this.$refs["queryForm"].validate((valid) => {
......
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