fix(faq): repair category schema and icons

This commit is contained in:
Cheng Zhou
2026-06-08 13:38:09 +08:00
parent 30e2398400
commit d472b8410e
8 changed files with 115 additions and 26 deletions
+2 -2
View File
@@ -2,7 +2,7 @@
<div class="page ctms-page-shell page--flush medical-consult-page">
<div class="page-bg-dots"></div>
<section class="faq-hero">
<h1><i class="fas fa-book-medical hero-title-icon"></i>项目知识库</h1>
<h1><el-icon class="hero-title-icon"><Collection /></el-icon>项目知识库</h1>
<div class="hero-tools">
<el-autocomplete
v-model="keyword"
@@ -74,7 +74,7 @@
<script setup lang="ts">
import { computed, onMounted, ref, watch } from "vue";
import { ElMessage } from "element-plus";
import { Plus, Search } from "@element-plus/icons-vue";
import { Collection, Plus, Search } from "@element-plus/icons-vue";
import { fetchFaqCategories, fetchFaqItems } from "../api/faqs";
import FaqCategoryPanel from "../components/FaqCategoryPanel.vue";
import FaqList from "../components/FaqList.vue";