hookehuyr

fix(MastersDetail): 使用v-html渲染描述内容以支持富文本

1 <!-- 1 <!--
2 * @Date: 2025-10-30 20:00:25 2 * @Date: 2025-10-30 20:00:25
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-11-04 11:28:14 4 + * @LastEditTime: 2025-11-04 18:15:15
5 * @FilePath: /stdj_h5/src/views/MastersDetail.vue 5 * @FilePath: /stdj_h5/src/views/MastersDetail.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
13 <div class="item-content"> 13 <div class="item-content">
14 <div class="item-role">{{ article_item.role }}</div> 14 <div class="item-role">{{ article_item.role }}</div>
15 <div class="item-name" v-html="formatNameWithSuperscript(article_item.name)"></div> 15 <div class="item-name" v-html="formatNameWithSuperscript(article_item.name)"></div>
16 - <div class="item-desc">{{ article_item.desc }}</div> 16 + <div class="item-desc" v-html="article_item.desc"></div>
17 </div> 17 </div>
18 </div> 18 </div>
19 </section> 19 </section>
......