Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
stdj_h5
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
hookehuyr
2026-03-10 09:32:55 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
af2fbbc04c435bcc1bc03822df4cbd0e441d4ff4
af2fbbc0
1 parent
6e5ee27a
fix: 将暂无相关新闻提示改为暂无相关内容
统一两个函数中的提示文本,使其更通用
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
src/views/Home.vue
src/views/Home.vue
View file @
af2fbbc
...
...
@@ -497,7 +497,7 @@ watch(currentStep, () => {
// 法会流程 - 跳转新闻详情页
const viewMoreCeremony = (item) => {
if (!item.articles?.length) {
showToast('暂无相关
新闻
')
showToast('暂无相关
内容
')
return
}
router.push({ name: 'NewsDetail', params: { id: item.articles[0]['id'] } })
...
...
@@ -506,7 +506,7 @@ const viewMoreCeremony = (item) => {
// 三坛大戒 - 参考法会流程,跳转新闻详情页
const viewMoreThreeAltars = (item) => {
if (!item.articles?.length) {
showToast('暂无相关
新闻
')
showToast('暂无相关
内容
')
return
}
router.push({ name: 'NewsDetail', params: { id: item.articles[0]['id'] } })
...
...
Please
register
or
login
to post a comment