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-10-24 14:00:37 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
1f49d108ed44113766684dbb53fe90527a5d4fce
1f49d108
1 parent
95b4220e
fix
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
6 deletions
src/components/common/hagerFooter.vue
src/views/index.vue
src/views/product/detail.vue
src/components/common/hagerFooter.vue
View file @
1f49d10
<!--
* @Date: 2024-09-26 13:42:22
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-10-24 1
1:50:08
* @LastEditTime: 2024-10-24 1
2:51:47
* @FilePath: /hager/src/components/common/hagerFooter.vue
* @Description: 文件描述
-->
...
...
@@ -174,7 +174,6 @@ export default {
const { code, data } = await getFooterAPI();
if (code) {
this.footer_data = data;
console.warn(data);
}
},
methods: {
...
...
src/views/index.vue
View file @
1f49d10
<!--
* @Date: 2024-08-27 10:06:30
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-10-24 1
1:08:47
* @LastEditTime: 2024-10-24 1
2:51:53
* @FilePath: /hager/src/views/index.vue
* @Description: 首页
-->
...
...
@@ -254,7 +254,6 @@ export default {
async mounted () {
const { code, data } = await getHomeAPI();
if (code) {
console.warn(data);
this.product_list = data.product;
// this.banner_list = data.banner;
this.solution_list = data.solution;
...
...
src/views/product/detail.vue
View file @
1f49d10
<!--
* @Date: 2024-09-29 14:26:41
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-10-24 12:
31:24
* @LastEditTime: 2024-10-24 12:
51:33
* @FilePath: /hager/src/views/product/detail.vue
* @Description: 文件描述
-->
...
...
@@ -184,7 +184,6 @@ export default {
const element = arr[index];
if (element) {
this.download_list = element;
console.warn(this.download_list);
this.is_active = this.download_list.id;
return;
}
...
...
Please
register
or
login
to post a comment