tnblog
首页
视频
资源
登录

vue3实现展开更多,加载全部

548人阅读 2024/12/3 14:51 总访问:827543 评论:0 收藏:0 手机
分类: 前端

方法一:分成两份来展示,一份显示出来,一份隐藏掉,点击加载全部在把隐藏的显示出来

封装的组件的代码如下:

  1. <template>
  2. <div class="completeUerList-container">
  3. <div class="cu-ct-title">
  4. {{ props.title }}
  5. </div>
  6. <div class="cu-ct-users">
  7. <div class="cu-ct-us-item" v-for="(item, index) in state.firstUsers" :key="index">
  8. <img class="cu-ct-us-head" src="https://image.tnblog.net/dbc68332d521436c983fbc3adc6d9c7f.jpeg" />
  9. <div class="cu-ct-us-name">
  10. 成都标榜:闵杨
  11. <!-- <div class="cu-ct-us-spline"></div> -->
  12. </div>
  13. </div>
  14. <div class="cu-ct-us-item" v-show="state.isShowMore" v-for="(item, index) in state.remainingUsers" :key="index">
  15. <img class="cu-ct-us-head" src="https://image.tnblog.net/dbc68332d521436c983fbc3adc6d9c7f.jpeg" />
  16. <div class="cu-ct-us-name">成都标榜:闵杨</div>
  17. </div>
  18. </div>
  19. <div class="cu-ct-more" v-if="completeuCount > 10 && !state.isShowMore">
  20. <div class="cuct-wrap" @click="loadMore">
  21. 加载全部<el-icon size="16"><ArrowDownBold class="cuct-wrap-icon" /></el-icon>
  22. </div>
  23. </div>
  24. </div>
  25. </template>
  26. <script setup lang="ts" name="CompleteUerList">
  27. import { defineAsyncComponent, reactive, onMounted, toRefs, ref } from 'vue'
  28. import { ArrowDownBold } from '@element-plus/icons-vue'
  29. const props = defineProps({
  30. title: {
  31. type: String,
  32. default: '已完成任务'
  33. },
  34. completeUsers: {
  35. type: [] as any,
  36. default: []
  37. }
  38. })
  39. const state = reactive({
  40. firstUsers: [],
  41. remainingUsers: [],
  42. isShowMore: false
  43. })
  44. const completeuCount = ref(0)
  45. onMounted(() => {
  46. completeuCount.value = props.completeUsers.length
  47. if (completeuCount.value > 10) {
  48. // 分成两份来展示,默认显示10条
  49. state.firstUsers = props.completeUsers.slice(0, 10)
  50. state.remainingUsers = props.completeUsers.slice(10)
  51. }
  52. else{
  53. state.firstUsers = props.completeUsers
  54. }
  55. })
  56. // 加载更多,让另外一份隐藏的显示出来
  57. const loadMore = () => {
  58. state.isShowMore = true
  59. }
  60. </script>
  61. <style scoped="scoped" lang="scss">
  62. .completeUerList-container {
  63. .cu-ct-title {
  64. font-family: Microsoft YaHei;
  65. font-weight: 600;
  66. font-size: 16px;
  67. color: #292f3d;
  68. }
  69. .cu-ct-users {
  70. margin-top: 15px;
  71. .cu-ct-us-item:last-child {
  72. border-bottom: none;
  73. padding-bottom: 0px;
  74. }
  75. .cu-ct-us-item {
  76. display: flex;
  77. align-items: center;
  78. margin-bottom: 10px;
  79. border-bottom: solid 1px #f7f7f7;
  80. padding-bottom: 10px;
  81. cursor: pointer;
  82. .cu-ct-us-head {
  83. width: 28px;
  84. height: 28px;
  85. border-radius: 50%;
  86. }
  87. .cu-ct-us-name {
  88. font-family: Microsoft YaHei;
  89. font-weight: 400;
  90. font-size: 14px;
  91. color: #60646e;
  92. line-height: 26px;
  93. margin-left: 15px;
  94. }
  95. .cu-ct-us-spline {
  96. height: 1px;
  97. background: #f7f7f7;
  98. width: 300px;
  99. margin-top: 10px;
  100. }
  101. }
  102. }
  103. .cu-ct-more {
  104. margin-top: 13px;
  105. margin-bottom: 7px;
  106. text-align: center;
  107. font-family: Microsoft YaHei;
  108. font-weight: 400;
  109. font-size: 14px;
  110. color: #1880ff;
  111. .cuct-wrap {
  112. display: flex;
  113. align-items: center;
  114. justify-content: center;
  115. cursor: pointer;
  116. .cuct-wrap-icon {
  117. margin-left: 5px;
  118. }
  119. }
  120. }
  121. }
  122. </style>

对这个组件的使用:

  1. <template>
  2. <div class="teacher-training-container">
  3. <CompleteUerList title="已完成任务" :completeUsers=state.completeUsers></CompleteUerList>
  4. </div>
  5. </template>
  6. <script setup lang="ts" name="teacher-training-details">
  7. const CompleteUerList = defineAsyncComponent(() => import('/@/components/CompleteUerList.vue'))
  8. const state = reactive({
  9. // 模拟提供数据源
  10. completeUsers:function(){
  11. let users = []
  12. for (let index = 0; index < 16; index++) {
  13. users.push({name:index})
  14. }
  15. return users
  16. }(),
  17. })
  18. </script>

增加了一个是否显示全部的配置IsShowAll

  1. <template>
  2. <div class="completeUerList-container">
  3. <div class="cu-ct-title">
  4. {{ props.title }}
  5. </div>
  6. <div class="cu-ct-users">
  7. <div class="cu-ct-us-item" v-for="(item, index) in state.firstUsers" :key="index">
  8. <img class="cu-ct-us-head" src="https://image.tnblog.net/dbc68332d521436c983fbc3adc6d9c7f.jpeg" />
  9. <div class="cu-ct-us-name">
  10. 成都标榜:闵杨
  11. </div>
  12. </div>
  13. <div class="cu-ct-us-item" v-show="state.isShowMore" v-for="(item, index) in state.remainingUsers" :key="index">
  14. <img class="cu-ct-us-head" src="https://image.tnblog.net/dbc68332d521436c983fbc3adc6d9c7f.jpeg" />
  15. <div class="cu-ct-us-name">成都标榜:闵杨</div>
  16. </div>
  17. </div>
  18. <div class="cu-ct-more" v-if="completeuCount > 10 &&!IsShowAll && !state.isShowMore">
  19. <div class="cuct-wrap" @click="loadMore">
  20. 加载全部<el-icon size="16"><ArrowDownBold class="cuct-wrap-icon" /></el-icon>
  21. </div>
  22. </div>
  23. </div>
  24. </template>
  25. <script setup lang="ts" name="CompleteUerList">
  26. import { defineAsyncComponent, reactive, onMounted, toRefs, ref } from 'vue'
  27. import { ArrowDownBold } from '@element-plus/icons-vue'
  28. const props = defineProps({
  29. title: {
  30. type: String,
  31. default: '已完成任务'
  32. },
  33. IsShowAll: {
  34. type: Boolean,
  35. default: false
  36. },
  37. completeUsers: {
  38. type: [] as any,
  39. default: []
  40. }
  41. })
  42. const state = reactive({
  43. firstUsers: [],
  44. remainingUsers: [],
  45. isShowMore: false
  46. })
  47. const completeuCount = ref(0)
  48. onMounted(() => {
  49. completeuCount.value = props.completeUsers.length
  50. if (completeuCount.value > 10 && props.IsShowAll===false) {
  51. state.firstUsers = props.completeUsers.slice(0, 10)
  52. state.remainingUsers = props.completeUsers.slice(10)
  53. }
  54. else{
  55. state.firstUsers = props.completeUsers
  56. }
  57. })
  58. const loadMore = () => {
  59. state.isShowMore = true
  60. }
  61. </script>
  62. <style scoped="scoped" lang="scss">
  63. .completeUerList-container {
  64. .cu-ct-title {
  65. font-family: Microsoft YaHei;
  66. font-weight: 600;
  67. font-size: 16px;
  68. color: #292f3d;
  69. }
  70. .cu-ct-users {
  71. margin-top: 15px;
  72. .cu-ct-us-item:last-child {
  73. border-bottom: none;
  74. padding-bottom: 0px;
  75. }
  76. .cu-ct-us-item {
  77. display: flex;
  78. align-items: center;
  79. margin-bottom: 10px;
  80. border-bottom: solid 1px #f7f7f7;
  81. padding-bottom: 10px;
  82. cursor: pointer;
  83. .cu-ct-us-head {
  84. width: 28px;
  85. height: 28px;
  86. border-radius: 50%;
  87. }
  88. .cu-ct-us-name {
  89. font-family: Microsoft YaHei;
  90. font-weight: 400;
  91. font-size: 14px;
  92. color: #60646e;
  93. line-height: 26px;
  94. margin-left: 15px;
  95. }
  96. .cu-ct-us-spline {
  97. height: 1px;
  98. background: #f7f7f7;
  99. width: 300px;
  100. margin-top: 10px;
  101. }
  102. }
  103. }
  104. .cu-ct-more {
  105. margin-top: 13px;
  106. margin-bottom: 7px;
  107. text-align: center;
  108. font-family: Microsoft YaHei;
  109. font-weight: 400;
  110. font-size: 14px;
  111. color: #1880ff;
  112. .cuct-wrap {
  113. display: flex;
  114. align-items: center;
  115. justify-content: center;
  116. cursor: pointer;
  117. .cuct-wrap-icon {
  118. margin-left: 5px;
  119. }
  120. }
  121. }
  122. }
  123. </style>

使用

  1. <CompleteUerList title="已完成任务" :IsShowAll="false" :completeUsers=state.completeUsers></CompleteUerList>

欢迎加群讨论技术,1群:677373950(满了,可以加,但通过不了),2群:656732739。有需要软件开发,或者学习软件技术的朋友可以和我联系~(Q:815170684)

评价

vue3vue组件props给一个对象参数。vue组件间传参数vue父组件给子组件传参数。组件参数类型。父组件调用子组件的方法。vue组件事件监听给子组件传递方法子组件调用父组件方法

[TOC]组件可以使用props给组件传值,可以同时传递多个,可以是任意类型,比如字符串或者对象。 下面是个简单的例子: &lt...

vue3最基础的数据加载表格table

vue3表格加载一点静态数据 &lt;template&gt; &lt;el-table :data=&quot;tableData&quot; style=&quot;width: 100%&quot...

vue3 Element Plus 表单输入框放到一行

当垂直方向空间受限且表单较简单时,可以在一行内放置表单。 通过设置 inline 属性为 true 可以让表单域变为行内的表单域...

vue3 Element ui Plus 表格 分页vue3 el-pagination分页

其实就是el-pagination控件的使用而已 &lt;template&gt; &lt;div&gt; &lt;el-table :data=&quot;tableData&quot; ...

vue触发a标签的点击事件。vue3 dom操作 触发点击事件 。文件选择库只会触发一次change事件的问题

[TOC]vue触发a标签的点击事件直接操作dom节点的方式比较简单 &lt;button @click=&quot;handleBtnClick&quot;&gt;点击按钮&...

vue3 ref的使用多个ref的使用。通过ref触发点击事件

多个ref获取的方法可以使用一样的,通过变量名来区分就行了 const vabUploadRef = ref() const multipleTableRef = ref() ...

vue elementuivue3 element plus 文件上传的时候设置其他参数。后台.net接收传递的额外参数。图片上传

比如上传文件的时候额外传递两个select选择的值 前台前面上传文件的时候要提供默认参数很简单,el-upload绑定一个data即可...

vuevue3 打开新页面页面跳转。vue跳转到一个新页面。vue路由传参vue3路由传参vue3 获取路由参数

[TOC]VUE页面跳转本地页面跳转 goApplicationCenter() { //进行页面跳转 let path = &quot;/application-center&quo...

vuevue3组件封装vue组件模板。简单组件模板。基础组件模板。vue引入自定义的组件。vue使用自定义的组件。插槽slot使用。vue封装格子效果一块一块的grid布局效果

[TOC]vue封装组件的简单模板贴一个简单模板方便自定义组件的时候直接复制 &lt;template&gt; &lt;div class=&quot;app...

.net6 Signalr+vue3 的运用(上)

.net6 Signalr+Vue3 的运用(上)[TOC] 什么是 SignalR?ASP.NET Core SignalR 是一个开放源代码库,可用于简化向应用添加...

.net6 Signalr+vue3 的运用(下)

.net6 Signalr+Vue3 的运用(下)[TOC] 上篇链接:https://www.tnblog.net/hb/article/details/7961SignalR 中的用户 Sig...

.net6 Signalr+vue3 配合Ingress Nginx的运用

.net6 Signalr+Vue3 配合Ingress Nginx的运用[TOC] 结合上篇:https://www.tnblog.net/hb/article/details/7963 项目打...

vue3 Element Plus 表格使用vue3常用界面搭配。vue3基础模板使用

一个简单的表格加时间搜索界面效果如下: 代码如下: &lt;template&gt; &lt;div class=&quot;app-container&quot;&g...

vue3 如何加prototype。vue3使用globalProperties

在2.X版本中创建一个vue 实例是通过 new Vue()来实现的,到了3.X中则是通过使用createApp这个 API返回一个应用实例,并且可...
这一生多幸运赶上过你.
排名
8
文章
222
粉丝
7
评论
7
ICP备案 :渝ICP备18016597号-1
网站信息:2018-2025TNBLOG.NET
技术交流:群号656732739
联系我们:contact@tnblog.net
公网安备:50010702506256
欢迎加群交流技术