hookehuyr

fix

<!--
* @Date: 2024-09-26 13:42:22
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-10-24 11:50:08
* @LastEditTime: 2024-10-24 12: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: {
......
<!--
* @Date: 2024-08-27 10:06:30
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-10-24 11:08:47
* @LastEditTime: 2024-10-24 12: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;
......
<!--
* @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;
}
......