Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
hager
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2024-12-13 10:06:17 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
569bb649cccfb26defcaa4378999e2e7b25dc59c
569bb649
1 parent
19cc5301
fix
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
src/views/product/detail.vue
src/views/solution/case.vue
src/views/product/detail.vue
View file @
569bb64
<!--
* @Date: 2024-09-29 14:26:41
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-12-1
2 13:54:06
* @LastEditTime: 2024-12-1
3 10:03:11
* @FilePath: /hager/src/views/product/detail.vue
* @Description: 文件描述
-->
...
...
@@ -10,7 +10,7 @@
<hager-box>
<div style="margin-top: 1.5rem;">
<el-breadcrumb separator="/">
<el-breadcrumb-item v-if="!is_xs" :to="{ path:
'/product/index'
}">所有产品</el-breadcrumb-item>
<el-breadcrumb-item v-if="!is_xs" :to="{ path:
allPath
}">所有产品</el-breadcrumb-item>
<el-breadcrumb-item :to="{ path: productPath }">{{ info.parent_name }}</el-breadcrumb-item>
<!-- <el-breadcrumb-item>{{ info.parent_name }}</el-breadcrumb-item> -->
<el-breadcrumb-item :to="{ path: categoryPath }">{{ info.category_name }}</el-breadcrumb-item>
...
...
@@ -185,6 +185,9 @@ export default {
});
return sum;
},
allPath () {
return `/product/index/all/${Date.now()}`;
},
productPath () {
return `/product/index/${this.info.parent_id}/${Date.now()}`;
},
...
...
src/views/solution/case.vue
View file @
569bb64
<!--
* @Date: 2024-10-18 12:06:09
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-12-12 17:3
7:23
* @LastEditTime: 2024-12-12 17:3
9:55
* @FilePath: /hager/src/views/solution/case.vue
* @Description: 文件描述
-->
...
...
@@ -163,7 +163,6 @@ export default {
},
watch: {
'top_banner' (v) {
console.warn(v);
}
},
async mounted () {
...
...
Please
register
or
login
to post a comment