Commit 4303b7fb authored by zhangderong's avatar zhangderong

设置邮箱同步时间只能在一个月范围内

parent 34b8fa25
...@@ -153,7 +153,7 @@ export default { ...@@ -153,7 +153,7 @@ export default {
Tname:'', Tname:'',
options3: { options3: {
disabledDate (date) { disabledDate (date) {
return date && date.valueOf() > Date.now()|| date.valueOf()<3600*1000*30*24; return date && date.valueOf() > Date.now()|| date.valueOf()<Date.now()-3600*1000*30*24;
} }
}, },
UpassWord:'', UpassWord:'',
......
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