默认提交
Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -132,8 +132,8 @@ export default { | ... | @@ -132,8 +132,8 @@ export default { |
132 | if (this.policyDetail.activeDate) { | 132 | if (this.policyDetail.activeDate) { |
133 | let ymds = this.policyDetail.activeDate.split(" ")[0].split("-"); | 133 | let ymds = this.policyDetail.activeDate.split(" ")[0].split("-"); |
134 | if (this.$i18n.locale == 'en') { | 134 | if (this.$i18n.locale == 'en') { |
135 | this.policyDetail.ymd1 = ymds[1]; | 135 | this.policyDetail.ymd1 = ymds[2]; |
136 | this.policyDetail.ymd2 = ymds[2]; | 136 | this.policyDetail.ymd2 = ymds[1]; |
137 | this.policyDetail.ymd3 = ymds[0]; | 137 | this.policyDetail.ymd3 = ymds[0]; |
138 | } else { | 138 | } else { |
139 | this.policyDetail.ymd1 = ymds[0]; | 139 | this.policyDetail.ymd1 = ymds[0]; | ... | ... |
-
Please register or sign in to post a comment