86b3fa8f84
实现内容:
- 扩展 Markdown 组件支持三级标题 (###) 和粗体 (**text**)
- ScriptView.vue 卡片摘要使用 Markdown 组件渲染
- 新增 ScriptDetailView.vue 剧本详情页,展示完整 Markdown 内容
- 点击卡片可跳转查看详情,"路径映射"按钮使用@click.stop 避免事件冒泡
修改文件:
- components/Markdown.vue: 添加 h3 标题、粗体解析和样式
- pages/main/ScriptView.vue: 导入 Markdown 组件,修改摘要渲染方式,添加跳转逻辑
- pages/main/ScriptDetailView.vue: 新建详情页,展示剧本完整内容
- pages.json: 注册 ScriptDetailView 页面
解决 issues: 小程序"创造未来"页面剧本内容以纯文本显示,
无法正确渲染 Markdown 格式(标题、列表、粗体等)
49 lines
841 B
JSON
49 lines
841 B
JSON
{
|
|
"pages": [
|
|
{
|
|
"path": "pages/splash/index",
|
|
"style": {
|
|
"navigationStyle": "custom"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/login/index",
|
|
"style": {
|
|
"navigationStyle": "custom"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/onboarding/index",
|
|
"style": {
|
|
"navigationStyle": "custom"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/main/index",
|
|
"style": {
|
|
"navigationStyle": "custom"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/main/ScriptDetailView",
|
|
"style": {
|
|
"navigationStyle": "custom",
|
|
"navigationBarTitleText": "剧本详情"
|
|
}
|
|
},
|
|
{
|
|
"path": "pages/profile/index",
|
|
"style": {
|
|
"navigationBarTitleText": "个人中心"
|
|
}
|
|
}
|
|
],
|
|
"globalStyle": {
|
|
"navigationBarTextStyle": "white",
|
|
"navigationBarTitleText": "人生OS",
|
|
"navigationBarBackgroundColor": "#0F071A",
|
|
"backgroundColor": "#0F071A"
|
|
},
|
|
"uniIdRouter": {}
|
|
}
|