hookehuyr

fix(plan): 移除保险期间字段显示

根据客户需求,移除计划书模版中的保险期间显示字段。
配置文件中的 insurance_period 配置保留,以备未来需要。

- 移除 LifeInsuranceTemplate 中的保险期间显示
- 移除 CriticalIllnessTemplate 中的保险期间显示
- 保留配置文件中的 insurance_period 配置

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
...@@ -50,14 +50,6 @@ ...@@ -50,14 +50,6 @@
50 :options="config.payment_periods" 50 :options="config.payment_periods"
51 class="mb-5" 51 class="mb-5"
52 /> 52 />
53 -
54 - <!-- 保险期间 -->
55 - <div class="flex justify-between items-start mb-5">
56 - <span class="text-sm text-gray-600 mt-1.5">保险期间</span>
57 - <div class="bg-blue-50 rounded-md px-3 py-1.5">
58 - <span class="text-sm text-blue-600">{{ config.insurance_period }}</span>
59 - </div>
60 - </div>
61 </div> 53 </div>
62 54
63 <!-- 配置缺失提示 --> 55 <!-- 配置缺失提示 -->
......
...@@ -50,14 +50,6 @@ ...@@ -50,14 +50,6 @@
50 :options="config.payment_periods" 50 :options="config.payment_periods"
51 class="mb-5" 51 class="mb-5"
52 /> 52 />
53 -
54 - <!-- 保险期间 -->
55 - <div class="flex justify-between items-start mb-5">
56 - <span class="text-sm text-gray-600 mt-1.5">保险期间</span>
57 - <div class="bg-blue-50 rounded-md px-3 py-1.5">
58 - <span class="text-sm text-blue-600">{{ config.insurance_period }}</span>
59 - </div>
60 - </div>
61 </div> 53 </div>
62 54
63 <!-- 配置缺失提示 --> 55 <!-- 配置缺失提示 -->
......