【bug】 修改生产环境报名地址

This commit is contained in:
fengachen
2021-10-21 17:49:23 +08:00
parent f3f15b9d78
commit 14b387cb2b
2 changed files with 6 additions and 2 deletions
+3
View File
@@ -12,4 +12,7 @@ window._CONFIG["casPrefixUrl"] = "http://cas.example.org:8443/cas";
// 预览文件地址
window._CONFIG["onlinePreviewDomainURL"] = "http://10.10.10.46:8012/onlinePreview";
// 会议管理报名二维码地址
window._CONFIG['singUpQRCodeURL'] = 'http://10.10.10.46:8055/signUpEntrance'
+3 -2
View File
@@ -8,8 +8,8 @@ export const RangeDateMixin = {
endKey: 'endTime'
},
rangeDateFormat: {
begin: 'YYYY-MM-DD HH:mm:ss',
end: 'YYYY-MM-DD HH:mm:ss'
begin: 'YYYY-MM-DD',
end: 'YYYY-MM-DD'
}
}
},
@@ -20,6 +20,7 @@ export const RangeDateMixin = {
if (!startValue || !endValue) {
return false
}
console.log(endValue.valueOf(),'endValue.valueOf()')
return startValue.valueOf() > endValue.valueOf()
},