You need to sign in or sign up before continuing.
hookehuyr

feat(plan): 添加储蓄GS多阶段产品2年缴费期选项

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
...@@ -52,3 +52,9 @@ describe('critical illness mpc special age options', () => { ...@@ -52,3 +52,9 @@ describe('critical illness mpc special age options', () => {
52 expect(PLAN_TEMPLATES['critical-illness-mbc2'].config.special_age_options).toBeUndefined() 52 expect(PLAN_TEMPLATES['critical-illness-mbc2'].config.special_age_options).toBeUndefined()
53 }) 53 })
54 }) 54 })
55 +
56 +describe('savings gs multistage payment periods', () => {
57 + it('should include 2-year payment period option', () => {
58 + expect(PLAN_TEMPLATES['savings-gs-multistage'].config.payment_periods).toContain('2 年')
59 + })
60 +})
......
...@@ -408,6 +408,7 @@ export const PLAN_TEMPLATES = { ...@@ -408,6 +408,7 @@ export const PLAN_TEMPLATES = {
408 currency: 'USD', 408 currency: 'USD',
409 payment_periods: [ 409 payment_periods: [
410 '整付', 410 '整付',
411 + '2 年',
411 '3 年', 412 '3 年',
412 '5 年', 413 '5 年',
413 '10 年', 414 '10 年',
......