hookehuyr

fix(pages): 修改所有页面数据中的图标名称为小写

将所有页面和组件数据对象中的图标名称从首字母大写改为小写。

修改的图标名称:
- Shop → shop
- Category → category
- Edit → edit
- Check → check
- Checklist → checklist
- Cart → cart
- People → people
- Clock → clock
- Refresh → refresh
- Location → location
- Service → service
- Star → star
- Find → find
- Top → top
- My → my
- PlayCircleFill → playCircleFill
- Order → order
- Link → link

涉及文件:
- 9个页面组件的数据对象
- DocumentPreview 组件的 iconMap 对象

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
...@@ -139,15 +139,15 @@ const needWebView = computed(() => fileSize.value === 0 || fileSize.value >= 10 ...@@ -139,15 +139,15 @@ const needWebView = computed(() => fileSize.value === 0 || fileSize.value >= 10
139 const fileIcon = computed(() => { 139 const fileIcon = computed(() => {
140 const type = finalFileType.value.toLowerCase() 140 const type = finalFileType.value.toLowerCase()
141 const iconMap = { 141 const iconMap = {
142 - pdf: 'Order', 142 + pdf: 'order',
143 - doc: 'Edit', 143 + doc: 'edit',
144 - docx: 'Edit', 144 + docx: 'edit',
145 - xls: 'Category', 145 + xls: 'category',
146 - xlsx: 'Category', 146 + xlsx: 'category',
147 - ppt: 'PlayCircleFill', 147 + ppt: 'playCircleFill',
148 - pptx: 'PlayCircleFill' 148 + pptx: 'playCircleFill'
149 } 149 }
150 - return iconMap[type] || 'Link' 150 + return iconMap[type] || 'link'
151 }) 151 })
152 152
153 const previewButtonText = computed(() => { 153 const previewButtonText = computed(() => {
......
1 <!-- 1 <!--
2 * @Date: 2026-01-29 20:33:23 2 * @Date: 2026-01-29 20:33:23
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2026-01-29 21:18:33 4 + * @LastEditTime: 2026-01-30 20:13:36
5 * @FilePath: /manulife-weapp/src/components/TabBar.vue 5 * @FilePath: /manulife-weapp/src/components/TabBar.vue
6 * @Description: 通用底部导航栏组件,用于页面底部固定导航栏,展示页面标题。 6 * @Description: 通用底部导航栏组件,用于页面底部固定导航栏,展示页面标题。
7 --> 7 -->
...@@ -47,19 +47,19 @@ const tabs = shallowRef([ ...@@ -47,19 +47,19 @@ const tabs = shallowRef([
47 { 47 {
48 key: 'home', 48 key: 'home',
49 label: '首页', 49 label: '首页',
50 - icon: 'Home', 50 + icon: 'home',
51 path: '/pages/index/index' 51 path: '/pages/index/index'
52 }, 52 },
53 { 53 {
54 key: 'ai', 54 key: 'ai',
55 label: 'AI答疑', 55 label: 'AI答疑',
56 - icon: 'Service', 56 + icon: 'service',
57 path: '/pages/ai/index' 57 path: '/pages/ai/index'
58 }, 58 },
59 { 59 {
60 key: 'me', 60 key: 'me',
61 label: '我的', 61 label: '我的',
62 - icon: 'My', 62 + icon: 'my',
63 path: '/pages/mine/index' 63 path: '/pages/mine/index'
64 } 64 }
65 ]) 65 ])
......
...@@ -37,12 +37,12 @@ const sections = shallowRef([ ...@@ -37,12 +37,12 @@ const sections = shallowRef([
37 { 37 {
38 title: '成员列表', 38 title: '成员列表',
39 subtitle: '管理家庭成员信息', 39 subtitle: '管理家庭成员信息',
40 - icon: 'My' 40 + icon: 'my'
41 }, 41 },
42 { 42 {
43 title: '新增成员', 43 title: '新增成员',
44 subtitle: '添加家庭成员', 44 subtitle: '添加家庭成员',
45 - icon: 'Edit' 45 + icon: 'edit'
46 } 46 }
47 ] 47 ]
48 }, 48 },
...@@ -53,12 +53,12 @@ const sections = shallowRef([ ...@@ -53,12 +53,12 @@ const sections = shallowRef([
53 { 53 {
54 title: '体检报告', 54 title: '体检报告',
55 subtitle: '查看家庭成员体检记录', 55 subtitle: '查看家庭成员体检记录',
56 - icon: 'Order' 56 + icon: 'order'
57 }, 57 },
58 { 58 {
59 title: '就医记录', 59 title: '就医记录',
60 subtitle: '家庭成员就医历史', 60 subtitle: '家庭成员就医历史',
61 - icon: 'Clock' 61 + icon: 'clock'
62 } 62 }
63 ] 63 ]
64 }, 64 },
...@@ -69,12 +69,12 @@ const sections = shallowRef([ ...@@ -69,12 +69,12 @@ const sections = shallowRef([
69 { 69 {
70 title: '保单管理', 70 title: '保单管理',
71 subtitle: '家庭保单汇总', 71 subtitle: '家庭保单汇总',
72 - icon: 'Star' 72 + icon: 'star'
73 }, 73 },
74 { 74 {
75 title: '资产总览', 75 title: '资产总览',
76 subtitle: '家庭资产分布', 76 subtitle: '家庭资产分布',
77 - icon: 'Find' 77 + icon: 'find'
78 } 78 }
79 ] 79 ]
80 }, 80 },
...@@ -85,12 +85,12 @@ const sections = shallowRef([ ...@@ -85,12 +85,12 @@ const sections = shallowRef([
85 { 85 {
86 title: '高端医疗', 86 title: '高端医疗',
87 subtitle: '预约高端医疗服务', 87 subtitle: '预约高端医疗服务',
88 - icon: 'Service' 88 + icon: 'service'
89 }, 89 },
90 { 90 {
91 title: '康养服务', 91 title: '康养服务',
92 subtitle: '健康养生服务', 92 subtitle: '健康养生服务',
93 - icon: 'PlayCircleFill' 93 + icon: 'playCircleFill'
94 } 94 }
95 ] 95 ]
96 } 96 }
......
...@@ -86,7 +86,7 @@ const list = ref([ ...@@ -86,7 +86,7 @@ const list = ref([
86 category: '入职培训', 86 category: '入职培训',
87 date: '2024-01-15', 87 date: '2024-01-15',
88 type: 'onboarding', 88 type: 'onboarding',
89 - icon: 'Order', // Represents a document 89 + icon: 'order', // Represents a document
90 iconColor: '#EF4444', // Red for PDF 90 iconColor: '#EF4444', // Red for PDF
91 iconBgClass: 'bg-red-50', 91 iconBgClass: 'bg-red-50',
92 // 使用真实的可下载 PDF 文件(W3C 测试文件) 92 // 使用真实的可下载 PDF 文件(W3C 测试文件)
...@@ -98,7 +98,7 @@ const list = ref([ ...@@ -98,7 +98,7 @@ const list = ref([
98 category: '签单相关', 98 category: '签单相关',
99 date: '2024-01-14', 99 date: '2024-01-14',
100 type: 'signing', 100 type: 'signing',
101 - icon: 'Order', // Represents a document 101 + icon: 'order', // Represents a document
102 iconColor: '#2563EB', // Blue for Word 102 iconColor: '#2563EB', // Blue for Word
103 iconBgClass: 'bg-blue-50', 103 iconBgClass: 'bg-blue-50',
104 // 使用真实的可下载图片(作为文档示例) 104 // 使用真实的可下载图片(作为文档示例)
...@@ -110,7 +110,7 @@ const list = ref([ ...@@ -110,7 +110,7 @@ const list = ref([
110 category: '产品知识', 110 category: '产品知识',
111 date: '2024-01-13', 111 date: '2024-01-13',
112 type: 'product', 112 type: 'product',
113 - icon: 'Order', // Represents a document 113 + icon: 'order', // Represents a document
114 iconColor: '#F59E0B', // Orange for PPT 114 iconColor: '#F59E0B', // Orange for PPT
115 iconBgClass: 'bg-orange-50', 115 iconBgClass: 'bg-orange-50',
116 // 使用另一个图片作为示例 116 // 使用另一个图片作为示例
...@@ -122,7 +122,7 @@ const list = ref([ ...@@ -122,7 +122,7 @@ const list = ref([
122 category: '政策解读', 122 category: '政策解读',
123 date: '2024-01-12', 123 date: '2024-01-12',
124 type: 'other', 124 type: 'other',
125 - icon: 'Edit', // Represents text 125 + icon: 'edit', // Represents text
126 iconColor: '#10B981', // Green for TXT 126 iconColor: '#10B981', // Green for TXT
127 iconBgClass: 'bg-green-50', 127 iconBgClass: 'bg-green-50',
128 downloadUrl: '' // 空下载地址,用于测试无地址情况 128 downloadUrl: '' // 空下载地址,用于测试无地址情况
......
...@@ -130,21 +130,21 @@ const currentQuestion = ref(null) ...@@ -130,21 +130,21 @@ const currentQuestion = ref(null)
130 // Contact methods data 130 // Contact methods data
131 const contactMethods = [ 131 const contactMethods = [
132 { 132 {
133 - icon: 'Location', 133 + icon: 'location',
134 label: '客服热线', 134 label: '客服热线',
135 value: '400-888-9999', 135 value: '400-888-9999',
136 desc: '工作时间:周一至周五 9:00-18:00', 136 desc: '工作时间:周一至周五 9:00-18:00',
137 color: '#2563EB' // blue-600 137 color: '#2563EB' // blue-600
138 }, 138 },
139 { 139 {
140 - icon: 'Service', 140 + icon: 'service',
141 label: '微信公众号', 141 label: '微信公众号',
142 value: '美乐爱觉', 142 value: '美乐爱觉',
143 desc: '搜索"美乐爱觉"关注我们', 143 desc: '搜索"美乐爱觉"关注我们',
144 color: '#16A34A' // green-600 144 color: '#16A34A' // green-600
145 }, 145 },
146 { 146 {
147 - icon: 'Edit', 147 + icon: 'edit',
148 label: '邮箱', 148 label: '邮箱',
149 value: 'service@manulife.com', 149 value: 'service@manulife.com',
150 desc: '我们会在24小时内回复您的邮件', 150 desc: '我们会在24小时内回复您的邮件',
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
28 <div class="flex justify-between items-start pt-[32rpx] first:pt-0"> 28 <div class="flex justify-between items-start pt-[32rpx] first:pt-0">
29 <div class="flex items-start flex-1 mr-[20rpx]" @tap="onView(item)"> 29 <div class="flex items-start flex-1 mr-[20rpx]" @tap="onView(item)">
30 <div class="w-[80rpx] h-[88rpx] mr-[24rpx] flex-shrink-0 flex items-center justify-center bg-blue-50 rounded-[12rpx]"> 30 <div class="w-[80rpx] h-[88rpx] mr-[24rpx] flex-shrink-0 flex items-center justify-center bg-blue-50 rounded-[12rpx]">
31 - <IconFont :name="item.iconName || 'Order'" size="32" :color="item.iconColor || '#2563EB'" /> 31 + <IconFont :name="item.iconName || 'order'" size="32" :color="item.iconColor || '#2563EB'" />
32 </div> 32 </div>
33 <div class="flex flex-col"> 33 <div class="flex flex-col">
34 <span class="text-[#1F2937] text-[28rpx] font-normal leading-[1.2] mb-[14rpx] line-clamp-2"> 34 <span class="text-[#1F2937] text-[28rpx] font-normal leading-[1.2] mb-[14rpx] line-clamp-2">
...@@ -81,7 +81,7 @@ const list = ref([ ...@@ -81,7 +81,7 @@ const list = ref([
81 title: '2024年保险代理人考试大纲.pdf', 81 title: '2024年保险代理人考试大纲.pdf',
82 desc: '最新考试范围与重点解析', 82 desc: '最新考试范围与重点解析',
83 size: '2.1MB', 83 size: '2.1MB',
84 - iconName: 'Order', 84 + iconName: 'order',
85 iconColor: '#EF4444', 85 iconColor: '#EF4444',
86 collected: true, 86 collected: true,
87 // 添加文件相关数据 87 // 添加文件相关数据
...@@ -92,7 +92,7 @@ const list = ref([ ...@@ -92,7 +92,7 @@ const list = ref([
92 title: '历年真题汇总及解析.pdf', 92 title: '历年真题汇总及解析.pdf',
93 desc: '2019-2023年真题完整版', 93 desc: '2019-2023年真题完整版',
94 size: '5.3MB', 94 size: '5.3MB',
95 - iconName: 'Order', 95 + iconName: 'order',
96 iconColor: '#EF4444', 96 iconColor: '#EF4444',
97 collected: false, 97 collected: false,
98 fileName: '历年真题汇总及解析.pdf', 98 fileName: '历年真题汇总及解析.pdf',
...@@ -102,7 +102,7 @@ const list = ref([ ...@@ -102,7 +102,7 @@ const list = ref([
102 title: '考试技巧与经验分享.pdf', 102 title: '考试技巧与经验分享.pdf',
103 desc: '高分学员备考心得', 103 desc: '高分学员备考心得',
104 size: '1.8MB', 104 size: '1.8MB',
105 - iconName: 'Order', 105 + iconName: 'order',
106 iconColor: '#EF4444', 106 iconColor: '#EF4444',
107 collected: false, 107 collected: false,
108 fileName: '考试技巧与经验分享.pdf', 108 fileName: '考试技巧与经验分享.pdf',
...@@ -112,7 +112,7 @@ const list = ref([ ...@@ -112,7 +112,7 @@ const list = ref([
112 title: '保险基础知识速记手册.pdf', 112 title: '保险基础知识速记手册.pdf',
113 desc: '核心知识点快速记忆', 113 desc: '核心知识点快速记忆',
114 size: '3.2MB', 114 size: '3.2MB',
115 - iconName: 'Order', 115 + iconName: 'order',
116 iconColor: '#EF4444', 116 iconColor: '#EF4444',
117 collected: false, 117 collected: false,
118 fileName: '保险基础知识速记手册.pdf', 118 fileName: '保险基础知识速记手册.pdf',
...@@ -122,7 +122,7 @@ const list = ref([ ...@@ -122,7 +122,7 @@ const list = ref([
122 title: '模拟试卷10套及答案.pdf', 122 title: '模拟试卷10套及答案.pdf',
123 desc: '考前冲刺模拟练习', 123 desc: '考前冲刺模拟练习',
124 size: '4.5MB', 124 size: '4.5MB',
125 - iconName: 'Order', 125 + iconName: 'order',
126 iconColor: '#EF4444', 126 iconColor: '#EF4444',
127 collected: true, 127 collected: true,
128 fileName: '模拟试卷10套及答案.pdf', 128 fileName: '模拟试卷10套及答案.pdf',
...@@ -132,7 +132,7 @@ const list = ref([ ...@@ -132,7 +132,7 @@ const list = ref([
132 title: '法律法规重点条款解读.pdf', 132 title: '法律法规重点条款解读.pdf',
133 desc: '保险相关法规详解', 133 desc: '保险相关法规详解',
134 size: '2.8MB', 134 size: '2.8MB',
135 - iconName: 'Order', 135 + iconName: 'order',
136 iconColor: '#EF4444', 136 iconColor: '#EF4444',
137 collected: false, 137 collected: false,
138 fileName: '法律法规重点条款解读.pdf', 138 fileName: '法律法规重点条款解读.pdf',
...@@ -142,7 +142,7 @@ const list = ref([ ...@@ -142,7 +142,7 @@ const list = ref([
142 title: '考试常见易错题分析.pdf', 142 title: '考试常见易错题分析.pdf',
143 desc: '高频错题归纳总结', 143 desc: '高频错题归纳总结',
144 size: '1.5MB', 144 size: '1.5MB',
145 - iconName: 'Order', 145 + iconName: 'order',
146 iconColor: '#EF4444', 146 iconColor: '#EF4444',
147 collected: false, 147 collected: false,
148 fileName: '考试常见易错题分析.pdf', 148 fileName: '考试常见易错题分析.pdf',
...@@ -152,7 +152,7 @@ const list = ref([ ...@@ -152,7 +152,7 @@ const list = ref([
152 title: '案例分析题库及解答.pdf', 152 title: '案例分析题库及解答.pdf',
153 desc: '实务案例精选练习', 153 desc: '实务案例精选练习',
154 size: '3.9MB', 154 size: '3.9MB',
155 - iconName: 'Order', 155 + iconName: 'order',
156 iconColor: '#EF4444', 156 iconColor: '#EF4444',
157 collected: false, 157 collected: false,
158 fileName: '案例分析题库及解答.pdf', 158 fileName: '案例分析题库及解答.pdf',
...@@ -162,7 +162,7 @@ const list = ref([ ...@@ -162,7 +162,7 @@ const list = ref([
162 title: '考前冲刺复习资料.pdf', 162 title: '考前冲刺复习资料.pdf',
163 desc: '最后一周复习要点', 163 desc: '最后一周复习要点',
164 size: '2.3MB', 164 size: '2.3MB',
165 - iconName: 'Order', 165 + iconName: 'order',
166 iconColor: '#EF4444', 166 iconColor: '#EF4444',
167 collected: false, 167 collected: false,
168 fileName: '考前冲刺复习资料.pdf', 168 fileName: '考前冲刺复习资料.pdf',
...@@ -172,7 +172,7 @@ const list = ref([ ...@@ -172,7 +172,7 @@ const list = ref([
172 title: '考场注意事项及答题技巧.pdf', 172 title: '考场注意事项及答题技巧.pdf',
173 desc: '应试策略与时间分配', 173 desc: '应试策略与时间分配',
174 size: '1.2MB', 174 size: '1.2MB',
175 - iconName: 'Order', 175 + iconName: 'order',
176 iconColor: '#EF4444', 176 iconColor: '#EF4444',
177 collected: false, 177 collected: false,
178 fileName: '考场注意事项及答题技巧.pdf', 178 fileName: '考场注意事项及答题技巧.pdf',
......
...@@ -77,10 +77,10 @@ import Taro from '@tarojs/taro' ...@@ -77,10 +77,10 @@ import Taro from '@tarojs/taro'
77 const go = useGo() 77 const go = useGo()
78 78
79 const menuItems = [ 79 const menuItems = [
80 - { title: '我的计划书', icon: 'Order', path: '/pages/plan/index' }, 80 + { title: '我的计划书', icon: 'order', path: '/pages/plan/index' },
81 - { title: '我的收藏', icon: 'Star', path: '/pages/favorites/index' }, 81 + { title: '我的收藏', icon: 'star', path: '/pages/favorites/index' },
82 - { title: '帮助中心', icon: 'Service', path: '/pages/help-center/index' }, 82 + { title: '帮助中心', icon: 'service', path: '/pages/help-center/index' },
83 - { title: '意见反馈', icon: 'Edit', path: '/pages/feedback/index' } 83 + { title: '意见反馈', icon: 'edit', path: '/pages/feedback/index' }
84 ] 84 ]
85 85
86 const handleMenuClick = (item) => { 86 const handleMenuClick = (item) => {
......
...@@ -34,17 +34,17 @@ const sections = shallowRef([ ...@@ -34,17 +34,17 @@ const sections = shallowRef([
34 title: '入职前', 34 title: '入职前',
35 items: [ 35 items: [
36 { 36 {
37 - icon: 'Edit', 37 + icon: 'edit',
38 title: '考试报名', 38 title: '考试报名',
39 subtitle: '报名参加代理人资格考试' 39 subtitle: '报名参加代理人资格考试'
40 }, 40 },
41 { 41 {
42 - icon: 'Find', 42 + icon: 'find',
43 title: '面试结果查询', 43 title: '面试结果查询',
44 subtitle: '查看面试状态和结果' 44 subtitle: '查看面试状态和结果'
45 }, 45 },
46 { 46 {
47 - icon: 'Order', 47 + icon: 'order',
48 title: '入职材料提交', 48 title: '入职材料提交',
49 subtitle: '上传入职所需证件和资料' 49 subtitle: '上传入职所需证件和资料'
50 } 50 }
...@@ -54,17 +54,17 @@ const sections = shallowRef([ ...@@ -54,17 +54,17 @@ const sections = shallowRef([
54 title: '入职中', 54 title: '入职中',
55 items: [ 55 items: [
56 { 56 {
57 - icon: 'Clock', 57 + icon: 'clock',
58 title: '各个进度时间线表格', 58 title: '各个进度时间线表格',
59 subtitle: '查看入职流程关键节点' 59 subtitle: '查看入职流程关键节点'
60 }, 60 },
61 { 61 {
62 - icon: 'Checklist', 62 + icon: 'checklist',
63 title: '待办事项清单', 63 title: '待办事项清单',
64 subtitle: '你需要完成的任务列表' 64 subtitle: '你需要完成的任务列表'
65 }, 65 },
66 { 66 {
67 - icon: 'Check', 67 + icon: 'check',
68 title: '签署合同', 68 title: '签署合同',
69 subtitle: '电子合同在线签署' 69 subtitle: '电子合同在线签署'
70 } 70 }
...@@ -74,17 +74,17 @@ const sections = shallowRef([ ...@@ -74,17 +74,17 @@ const sections = shallowRef([
74 title: '入职后', 74 title: '入职后',
75 items: [ 75 items: [
76 { 76 {
77 - icon: 'Star', 77 + icon: 'star',
78 title: '新人培训', 78 title: '新人培训',
79 subtitle: '参加新人岗前培训课程' 79 subtitle: '参加新人岗前培训课程'
80 }, 80 },
81 { 81 {
82 - icon: 'Top', 82 + icon: 'top',
83 title: '业绩目标设定', 83 title: '业绩目标设定',
84 subtitle: '制定首月业绩目标' 84 subtitle: '制定首月业绩目标'
85 }, 85 },
86 { 86 {
87 - icon: 'PlayCircleFill', 87 + icon: 'playCircleFill',
88 title: '团队介绍', 88 title: '团队介绍',
89 subtitle: '了解你的团队和主管' 89 subtitle: '了解你的团队和主管'
90 } 90 }
......
...@@ -34,12 +34,12 @@ const sections = shallowRef([ ...@@ -34,12 +34,12 @@ const sections = shallowRef([
34 title: '培训板块', 34 title: '培训板块',
35 items: [ 35 items: [
36 { 36 {
37 - icon: 'Shop', 37 + icon: 'shop',
38 title: '公司介绍', 38 title: '公司介绍',
39 subtitle: '企业背景及发展历程' 39 subtitle: '企业背景及发展历程'
40 }, 40 },
41 { 41 {
42 - icon: 'Category', 42 + icon: 'category',
43 title: '产品介绍及更新', 43 title: '产品介绍及更新',
44 subtitle: '最新产品资料库' 44 subtitle: '最新产品资料库'
45 } 45 }
...@@ -49,12 +49,12 @@ const sections = shallowRef([ ...@@ -49,12 +49,12 @@ const sections = shallowRef([
49 title: '签单前', 49 title: '签单前',
50 items: [ 50 items: [
51 { 51 {
52 - icon: 'Check', 52 + icon: 'check',
53 title: '预核保', 53 title: '预核保',
54 subtitle: '核保流程指引' 54 subtitle: '核保流程指引'
55 }, 55 },
56 { 56 {
57 - icon: 'Edit', 57 + icon: 'edit',
58 title: '做计划书', 58 title: '做计划书',
59 subtitle: '方案设计工具' 59 subtitle: '方案设计工具'
60 } 60 }
...@@ -64,17 +64,17 @@ const sections = shallowRef([ ...@@ -64,17 +64,17 @@ const sections = shallowRef([
64 title: '签单中', 64 title: '签单中',
65 items: [ 65 items: [
66 { 66 {
67 - icon: 'Checklist', 67 + icon: 'checklist',
68 title: '信息收集及健康告知模板', 68 title: '信息收集及健康告知模板',
69 subtitle: '标准表格及注意事项' 69 subtitle: '标准表格及注意事项'
70 }, 70 },
71 { 71 {
72 - icon: 'Cart', 72 + icon: 'cart',
73 title: '缴费方式银行开户', 73 title: '缴费方式银行开户',
74 subtitle: '支付渠道办理指南' 74 subtitle: '支付渠道办理指南'
75 }, 75 },
76 { 76 {
77 - icon: 'People', 77 + icon: 'people',
78 title: '体检经验', 78 title: '体检经验',
79 subtitle: '体检流程及常见问题' 79 subtitle: '体检流程及常见问题'
80 } 80 }
...@@ -84,17 +84,17 @@ const sections = shallowRef([ ...@@ -84,17 +84,17 @@ const sections = shallowRef([
84 title: '签单后', 84 title: '签单后',
85 items: [ 85 items: [
86 { 86 {
87 - icon: 'Order', 87 + icon: 'order',
88 title: '批单跟进', 88 title: '批单跟进',
89 subtitle: '保单变更处理流程' 89 subtitle: '保单变更处理流程'
90 }, 90 },
91 { 91 {
92 - icon: 'Clock', 92 + icon: 'clock',
93 title: '核保/pending', 93 title: '核保/pending',
94 subtitle: '核保进度查询' 94 subtitle: '核保进度查询'
95 }, 95 },
96 { 96 {
97 - icon: 'Refresh', 97 + icon: 'refresh',
98 title: '续保', 98 title: '续保',
99 subtitle: '续期服务指引' 99 subtitle: '续期服务指引'
100 } 100 }
...@@ -104,7 +104,7 @@ const sections = shallowRef([ ...@@ -104,7 +104,7 @@ const sections = shallowRef([
104 title: '售后', 104 title: '售后',
105 items: [ 105 items: [
106 { 106 {
107 - icon: 'Location', 107 + icon: 'location',
108 title: '香港医生资源', 108 title: '香港医生资源',
109 subtitle: '专业医疗机构名录' 109 subtitle: '专业医疗机构名录'
110 } 110 }
......