提交 fcaabbba896f40f2f7c165665034a92d6ebcf67d

作者 pangy
1 个父辈 52efc80d

优化 编辑时时间制约逻辑

... ... @@ -836,18 +836,26 @@ Page({
836 836 studystartdate.datelong = data.education_start
837 837 setData.studystartdate = studystartdate
838 838 var studyEndDate = this.data.studyEndDate
  839 + var studyPeriodDate = this.data.studyPeriodDate
839 840 if (data.education_end > 0) {
840 841 studyEndDate.selected = format.formatTime_month(data.education_end)
841 842 studyEndDate.datelong = data.education_end
842   - setData.studyEndDate = studyEndDate
843 843 }
844   - var studyPeriodDate = this.data.studyPeriodDate
845 844 if (data.education_period_end > 0){
846 845 studyPeriodDate.selected = format.formatTime_month(data.education_period_end)
847 846 studyPeriodDate.datelong = data.education_period_end
848 847 }
849   - studyPeriodDate.start = studystartdate.selected
  848 + var start = studystartdate.selected, select_year = 0
  849 + if (start.length > 4) {
  850 + select_year = start.substring(0, 4)
  851 + }
  852 + if (select_year < 2019) {
  853 + start = '2019-01'
  854 + }
  855 + studyEndDate.start = start
  856 + studyPeriodDate.start = start
850 857 studyPeriodDate.end = studyEndDate.selected
  858 + setData.studyEndDate = studyEndDate
851 859 setData.studyPeriodDate = studyPeriodDate
852 860 setData.deduction_amount = data.deduction_amount
853 861 if (data.children_id_card_no && data.children_id_card_no.length) {
... ...
注册登录 后发表评论