lifanagju_citu 11 місяців тому
батько
коміт
040d0d23fc

+ 0 - 6
src/views/personal/myPublicRecruitment/components/bountyDisplay.vue

@@ -19,7 +19,6 @@
         <div class="d-flex align-center">
           <v-avatar size="30" :image="item.avatar || 'https://minio.citupro.com/dev/menduner/7.png'"></v-avatar>
           <div class="ml-2">{{ formatName(item.name) }}</div>
-          <!-- <div class="ml-2">{{ item.name }}</div> -->
         </div>
         <div class="d-flex" style="width: calc(100% - 65px);">
           <!-- 内容 -->
@@ -32,8 +31,6 @@
           <div>提现¥<span class="red">{{ item.money }}</span></div>
         </div>
       </div>
-       <!-- <div class="scrollBox" id="scrollBox">
-       </div> -->
     </div>
   </div>
 </template>
@@ -62,7 +59,6 @@ for (let index = 0; index < 68; index++) {
   const obj = {
     id: 'id' + (index+1),
     name: '用户' + (index+1),
-    // name: (index+1),
     avatar: avatarList[index % 7],
     company: '某某公司' + (index+1),
     job: '某某职位' + (index+1),
@@ -89,7 +85,6 @@ const dataItemHeight = 40
 // 容器的 dom 节点
 const scrollRef = ref()
 // // 模拟列表数据
-// const listSource = new Array(10).fill(0).map((_, index) => ({ title: `这是一条信息${index}`}))
 const list = ref([...listSource])
 
 // 记录原始数据的长度
@@ -137,7 +132,6 @@ onMounted(() => {
     }
     scroll()
   }
-  // if (len*dataItemHeight > clientHeight) scroll()
 })
 </script>
 <style lang="scss" scoped>