hookehuyr

style(plan): 弹窗标题显示产品名称而非模板名称

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
2 <!-- 使用 PlanPopupNew 容器组件(支持全局弹窗管理器) --> 2 <!-- 使用 PlanPopupNew 容器组件(支持全局弹窗管理器) -->
3 <PlanPopupNew 3 <PlanPopupNew
4 :visible="props.visible" 4 :visible="props.visible"
5 - :title="templateConfig?.name || '计划书'" 5 + :title="product?.product_name || '计划书'"
6 :has-template="hasTemplate" 6 :has-template="hasTemplate"
7 @close="close" 7 @close="close"
8 @submit="submit" 8 @submit="submit"
......