hookehuyr

fix

<!--
* @Date: 2024-10-17 09:22:56
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-10-31 11:44:29
* @LastEditTime: 2024-10-31 14:15:06
* @FilePath: /hager/src/views/about/index.vue
* @Description: 文件描述
-->
......@@ -50,7 +50,7 @@
<div v-else>
<div v-for="(item, index) in intro_list" :key="index" style="padding: 1rem;">
<div class="about-img xs" :style="{ 'background-image': 'url('+ item.img +')' }"></div>
<div class="about-box">
<div class="about-box xs">
<div class="title">
<p class="c xs">{{ item.c_title }}</p>
<p class="e xs">{{ item.e_title }}</p>
......@@ -160,6 +160,9 @@ export default {
padding: 2rem;
height: 25rem; /* 让 .about-box 撑满父容器 */
box-sizing: border-box;
&.xs {
height: 20rem;
}
.title {
font-weight: bold;
.c {
......
<!--
* @Date: 2024-09-29 14:26:41
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-10-31 13:44:49
* @LastEditTime: 2024-10-31 14:16:25
* @FilePath: /hager/src/views/product/detail.vue
* @Description: 文件描述
-->
......@@ -354,7 +354,6 @@ export default {
},
checkItem (item) { // 选中资料项目
item.checked = !item.checked;
console.warn(item);
this.download_list.forEach(item => {
item.checked_sum = item.list.filter(item => item.checked).length;
});
......