mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-11 01:36:43 +08:00
证件截止日期和是否长期联动关系处理
This commit is contained in:
@@ -141,7 +141,7 @@ export default {
|
|||||||
* @Description: 年满46周岁的公民申领居民身份证有效期为长期
|
* @Description: 年满46周岁的公民申领居民身份证有效期为长期
|
||||||
* @Date: 2023/7/4
|
* @Date: 2023/7/4
|
||||||
**/
|
**/
|
||||||
else if (startage > 65) {
|
else if (startage > 45) {
|
||||||
return endDate
|
return endDate
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -643,6 +643,10 @@ export default {
|
|||||||
this.effectiveDateTypeAble = age <= 45
|
this.effectiveDateTypeAble = age <= 45
|
||||||
if(this.userInfo.birthday){
|
if(this.userInfo.birthday){
|
||||||
this.userInfo.certiexpiredate = countCredentialValidity.getEndDate(age,val)
|
this.userInfo.certiexpiredate = countCredentialValidity.getEndDate(age,val)
|
||||||
|
if(this.userInfo.certiexpiredate) {
|
||||||
|
this.effectiveDateTypeAble = true
|
||||||
|
this.userInfo.effectiveDateType = false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1011,6 +1011,10 @@
|
|||||||
this.effectiveDateTypeAble = age <= 45
|
this.effectiveDateTypeAble = age <= 45
|
||||||
if(this.userInfo.birthday){
|
if(this.userInfo.birthday){
|
||||||
this.userInfo.certiexpiredate = countCredentialValidity.getEndDate(this.userInfo.birthday,val)
|
this.userInfo.certiexpiredate = countCredentialValidity.getEndDate(this.userInfo.birthday,val)
|
||||||
|
if(this.userInfo.certiexpiredate) {
|
||||||
|
this.effectiveDateTypeAble = true
|
||||||
|
this.userInfo.effectiveDateType = false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1111,6 +1111,10 @@
|
|||||||
this.effectiveDateTypeAble = age <= 45
|
this.effectiveDateTypeAble = age <= 45
|
||||||
if(this.userInfo.birthday){
|
if(this.userInfo.birthday){
|
||||||
this.userInfo.certiexpiredate = countCredentialValidity.getEndDate(this.userInfo.birthday,val)
|
this.userInfo.certiexpiredate = countCredentialValidity.getEndDate(this.userInfo.birthday,val)
|
||||||
|
if(this.userInfo.certiexpiredate) {
|
||||||
|
this.effectiveDateTypeAble = true
|
||||||
|
this.userInfo.effectiveDateType = false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user