tnblog
首页
视频
资源
登录
什么时候才能领悟,取之越多失之越多
排名
5
文章
229
粉丝
15
评论
7
ICP备案 :渝ICP备18016597号-1
网站信息:2018-2025TNBLOG.NET
技术交流:群号656732739
联系我们:contact@tnblog.net
公网安备:50010702506256
欢迎加群交流技术

vue实现数据滚动。vue实现列表自动滚动的方式

4281人阅读 2023/3/9 16:23 总访问:1167662 评论:0 收藏:0 手机
分类: 前端

代码如下

代码是在原有基础上增加了一点测试数据就可以运行的

  1. <template>
  2. <div class="orderProcess">
  3. <div class="loading_div" v-show="!showFlag">
  4. <!-- Loading样式自己写,不需要,直接删除即可 -->
  5. <div>Loading222...</div>
  6. </div>
  7. <div class="success_info_body" v-show="showFlag">
  8. <div class="table_head">
  9. <div class="tr1 tr">订单号</div>
  10. <div class="tr2 tr">项目名称</div>
  11. <div class="tr3 tr">需求方量</div>
  12. <div class="tr4 tr">预交付日期</div>
  13. <div class="tr5 tr">进度</div>
  14. </div>
  15. <div class="table_body">
  16. <!-- tableTop随时间推移不对增减,即列表不断往上 -->
  17. <div class="table_list" :style="{top: tableTop + 'px'}">
  18. <div
  19. class="tr_div"
  20. v-for="(item,index) in tableList"
  21. :key="index"
  22. :class="{'exception_style_tr':item.overDays>6 && item.process < 100}"
  23. >
  24. <div
  25. class="tr1 tr"
  26. :class="{'exception_style':item.overDays>6 && item.process < 100, 'notice_style':item.overDays>0 && item.overDays<7 && item.process < 100}"
  27. >{{item.orderNo}}</div>
  28. <div
  29. class="tr2 tr"
  30. :class="{'exception_style':item.overDays>6 && item.process < 100, 'notice_style':item.overDays>0 && item.overDays<7 && item.process < 100}"
  31. >{{item.projectName}}</div>
  32. <div
  33. class="tr3 tr"
  34. :class="{'exception_style':item.overDays>6 && item.process < 100, 'notice_style':item.overDays>0 && item.overDays<7 && item.process < 100}"
  35. v-if="item.needVol!='-'&&item.needVol!='无法计算'"
  36. >{{Number(item.needVol).toFixed(3)}} m3</div>
  37. <div
  38. class="tr3 tr"
  39. :class="{'exception_style':item.overDays>6 && item.process < 100, 'notice_style':item.overDays>0 && item.overDays<7 && item.process < 100}"
  40. v-else
  41. >-</div>
  42. <div
  43. class="tr4 tr"
  44. :class="{'exception_style':item.overDays>6 && item.process < 100, 'notice_style':item.overDays>0 && item.overDays<7 && item.process < 100}"
  45. >{{item.completeDate}}</div>
  46. <div
  47. class="tr5 tr"
  48. :class="{'exception_style':item.overDays>6 && item.process < 100, 'notice_style':item.overDays>0 && item.overDays<7 && item.process < 100}"
  49. v-if="item.process!='-'"
  50. >{{Number(item.process).toFixed(2)}} %</div>
  51. <div
  52. class="tr5 tr"
  53. :class="{'exception_style':item.overDays>6 && item.process < 100, 'notice_style':item.overDays>0 && item.overDays<7 && item.process < 100}"
  54. v-else
  55. >-</div>
  56. </div>
  57. </div>
  58. </div>
  59. </div>
  60. </div>
  61. </template>
  62. <script>
  63. export default {
  64. data() {
  65. return {
  66. tableTimer: null,
  67. tableTop: 0, //列表向上移动的像素
  68. tableList: [{
  69. overDays:7,
  70. process:60,
  71. orderNo:1,
  72. projectName:"xx",
  73. needVol:30
  74. },
  75. {
  76. overDays:7,
  77. process:60,
  78. orderNo:2,
  79. projectName:"xx",
  80. needVol:30
  81. },
  82. {
  83. overDays:7,
  84. process:60,
  85. orderNo:3,
  86. projectName:"xx",
  87. needVol:30
  88. },
  89. {
  90. overDays:7,
  91. process:60,
  92. orderNo:4,
  93. projectName:"xx",
  94. needVol:30
  95. },
  96. {
  97. overDays:7,
  98. process:60,
  99. orderNo:5,
  100. projectName:"xx",
  101. needVol:30
  102. },
  103. {
  104. overDays:7,
  105. process:60,
  106. orderNo:6,
  107. projectName:"xx",
  108. needVol:30
  109. },
  110. {
  111. overDays:7,
  112. process:60,
  113. orderNo:7,
  114. projectName:"xx",
  115. needVol:30
  116. },
  117. {
  118. overDays:7,
  119. process:60,
  120. orderNo:8,
  121. projectName:"xx",
  122. needVol:30
  123. },
  124. {
  125. overDays:7,
  126. process:60,
  127. orderNo:9,
  128. projectName:"xx",
  129. needVol:30
  130. }
  131. ], //tableList是列表的数据对象
  132. showFlag: false,
  133. componentTimer: null,
  134. maxCanSee: 6, //maxCanSee代表可视范围内的最大完整数据条数
  135. tableLineHeight: 45 //tableLineHeight代表列表中一行的高度
  136. };
  137. },
  138. props: ["activeFactoryId"],
  139. watch: {
  140. activeFactoryId() {
  141. clearInterval(this.componentTimer);
  142. this.bsGetOrderProcessList();
  143. this.componentTimerFun();
  144. }
  145. },
  146. beforeDestroy() {
  147. clearInterval(this.componentTimer);
  148. clearInterval(this.tableTimer);
  149. },
  150. mounted() {
  151. // 模拟触发一下值变化,就可以触发watch
  152. this.activeFactoryId="aa"
  153. },
  154. methods: {
  155. bsGetOrderProcessList() {
  156. clearInterval(this.tableTimer);
  157. this.tableTop = 0;
  158. if (this.activeFactoryId != "") {
  159. //this.showFlag = false;
  160. this.showFlag = true;
  161. this.actionFun();
  162. // this.$ajax({
  163. // method: "get",
  164. // url: `` //接口地址,不公开
  165. // })
  166. // .then(res => {
  167. // this.tableList = res.data.data;
  168. // this.showFlag = true;
  169. // this.actionFun();
  170. // })
  171. // .catch(function(err) {
  172. // console.log("bsGetOrderProcessList error!");
  173. // });
  174. }
  175. },
  176. actionFun() {
  177. //超过6行才滚动
  178. if (this.tableList.length > 6) {
  179. this.tableTimerFun();
  180. }
  181. //没有超过6行就不滚动了
  182. else {
  183. this.fillTableList();
  184. }
  185. this.showFlag = true;
  186. },
  187. fillTableList() {
  188. var addLength = this.maxCanSee - this.tableList.length;
  189. for (var i = 0; i < addLength; i++) {
  190. this.tableList.push({
  191. orderNo: "-",
  192. projectName: "-",
  193. needVol: "-",
  194. completeDate: "-",
  195. process: "-"
  196. });
  197. }
  198. },
  199. tableTimerFun() {
  200. var count = 0; //每滚动一次,count加1
  201. if (this.tableList.length > this.maxCanSee) { //tableList是列表的数据对象,maxCanSee代表可视范围内的最大完整数据条数
  202. this.tableTimer = setInterval(() => {
  203. if (count < this.tableList.length - this.maxCanSee) { //如果还没滚动到最后一条数据,则列表向上移动以上的高度
  204. this.tableTop -= this.tableLineHeight; //tableLineHeight代表列表中一行的高度
  205. count++; //每滚动一次,count加1
  206. } else { //如果滚动到最后一条,则恢复初始状态
  207. count = 0;
  208. this.tableTop = 0;
  209. }
  210. }, 3000);
  211. }
  212. },
  213. componentTimerFun() {
  214. this.componentTimer = setInterval(() => {
  215. this.bsGetOrderProcessList();
  216. }, 3600000);
  217. }
  218. }
  219. };
  220. </script>
  221. <style scoped>
  222. .orderProcess {
  223. width: 600px;
  224. height: 313px;
  225. }
  226. .loading_div {
  227. color: #eee;
  228. padding-top: 100px;
  229. }
  230. .table_head {
  231. width: 100%;
  232. height: 30px;
  233. line-height: 30px;
  234. background: rgba(90, 127, 200, 0.5);
  235. display: flex;
  236. color: #eee;
  237. text-align: center;
  238. font-size: 15px;
  239. }
  240. .tr1 {
  241. width: 25%;
  242. }
  243. .tr2 {
  244. width: 25%;
  245. }
  246. .tr3 {
  247. width: 18%;
  248. }
  249. .tr4 {
  250. width: 18%;
  251. }
  252. .tr5 {
  253. flex: 1;
  254. }
  255. .tr {
  256. overflow: hidden;
  257. text-overflow: ellipsis;
  258. white-space: nowrap;
  259. box-sizing: border-box;
  260. padding: 0 5px;
  261. text-align: center;
  262. font-size: 14px;
  263. }
  264. .table_body {
  265. width: 100%;
  266. height: 270px;
  267. overflow: hidden;
  268. position: relative;
  269. }
  270. .table_list {
  271. width: 100%;
  272. position: absolute;
  273. transition: all 0.5s;
  274. }
  275. .tr_div {
  276. width: 100%;
  277. display: flex;
  278. color: #eee;
  279. text-align: center;
  280. line-height: 45px;
  281. font-size: 13px;
  282. }
  283. .exception_style_tr {
  284. animation: exception_style_tr 0.8s linear;
  285. -moz-animation: exception_style_tr 0.8s linear;
  286. -webkit-animation: exception_style_tr 0.8s linear;
  287. -o-animation: exception_style_tr 0.8s linear;
  288. animation-iteration-count: infinite;
  289. -webkit-animation-iteration-count: infinite;
  290. }
  291. @keyframes exception_style_tr {
  292. 0% {
  293. background: rgba(3, 145, 167, 0.1);
  294. }
  295. 50% {
  296. background: rgba(250, 4, 4, 0.15);
  297. }
  298. 100% {
  299. background: rgba(3, 145, 167, 0.1);
  300. }
  301. }
  302. @-moz-keyframes exception_style_tr {
  303. 0% {
  304. background: rgba(3, 145, 167, 0.1);
  305. }
  306. 50% {
  307. background: rgba(250, 4, 4, 0.15);
  308. }
  309. 100% {
  310. background: rgba(3, 145, 167, 0.1);
  311. }
  312. }
  313. @-webkit-keyframes exception_style_tr {
  314. 0% {
  315. background: rgba(3, 145, 167, 0.1);
  316. }
  317. 50% {
  318. background: rgba(250, 4, 4, 0.15);
  319. }
  320. 100% {
  321. background: rgba(3, 145, 167, 0.1);
  322. }
  323. }
  324. @-o-keyframes exception_style_tr {
  325. 0% {
  326. background: rgba(3, 145, 167, 0.1);
  327. }
  328. 50% {
  329. background: rgba(250, 4, 4, 0.15);
  330. }
  331. 100% {
  332. background: rgba(3, 145, 167, 0.1);
  333. }
  334. }
  335. .exception_style {
  336. font-weight: bold;
  337. animation: exception_style 0.8s linear;
  338. -moz-animation: exception_style 0.8s linear;
  339. -webkit-animation: exception_style 0.8s linear;
  340. -o-animation: exception_style 0.8s linear;
  341. animation-iteration-count: infinite;
  342. -webkit-animation-iteration-count: infinite;
  343. }
  344. @keyframes exception_style {
  345. 0% {
  346. color: #eee;
  347. }
  348. 50% {
  349. color: #fa0404;
  350. }
  351. 100% {
  352. color: #eee;
  353. }
  354. }
  355. @-moz-keyframes exception_style {
  356. 0% {
  357. color: #eee;
  358. }
  359. 50% {
  360. color: #fa0404;
  361. }
  362. 100% {
  363. color: #eee;
  364. }
  365. }
  366. @-webkit-keyframes exception_style {
  367. 0% {
  368. color: #eee;
  369. }
  370. 50% {
  371. color: #fa0404;
  372. }
  373. 100% {
  374. color: #eee;
  375. }
  376. }
  377. @-o-keyframes exception_style {
  378. 0% {
  379. color: #eee;
  380. }
  381. 50% {
  382. color: #fa0404;
  383. }
  384. 100% {
  385. color: #eee;
  386. }
  387. }
  388. .notice_style {
  389. font-weight: bold;
  390. color: #d1ce02;
  391. }
  392. </style>

原文:https://blog.csdn.net/zxczero/article/details/126104905


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

评价

vue.js+Layer实现表格数据绑定与更新

一:使用Vue.js绑定好数据与更新事件 使用v-on绑定好事件,在事件里边直接把该行数据传递进去,在更新方法里边就可以直接...

vue.js 实现省市联动

HTML代码&lt;divid=&quot;pro_citys&quot;&gt; 省:&lt;selectid=&quot;provice&quot;v-on:change=&quot;prochange()&quo...

vue.js常见问题

一:花括号当做字符串显示的问题1:检查下绑定到vue.js的id是否重复,如果id重复了,就有可能存在这种问题,因为有可能把数...

vue.js常用指令

v-html可以把字符串当成一个html来渲染,而不是原样输出Html类似.net mvc中的@Html.Raw()方法&lt;divv-html=&quot;item.tit...

干货!div滚动到一定位置就固定他。vue中实现一侧滚动到底部就固定

尊重原创:转载请注名出处div滚动到一定位置就固定他,例如左边的内容很多,右边的内容很少,如果不处理滚动到一定位置后右...

vue.js常用指令,事件绑定等,vue过滤器解析状态过滤器多个参数。vue表格状态解析。vue解析类型,element ui解析类型,状态,el-tag

按照html的编码显示:v-html&lt;div class=&quot;font_info&quot; v-html=&quot;item.Content&quot;&gt;{{item.Content}}&l...

vue.js if用法

vue.js if可以做一些判断例如我们要把下面这个输出varvm=newVue({ el:&quot;#content&quot;, data:{ titles:[&quot;小明...

vue.js 学习日记第一章-安装vue开发环境

官网:https://cn.vuejs.org/v2/guide/ 这是一篇学习性文章,不定时更新,用来记录我学习vue.js的过程。 首先,是v...

vue.js 学习日记第二章-在vue中编写function及一些简单指令

官网:https://cn.vuejs.org/v2/guide/ vue.js 学习日记第一章:http://www.tnblog.net/18323015640/article/details/2...

vue.js 学习日记第三章-vue中的简单事件及事件修饰符

官网:https://cn.vuejs.org/v2/guide/ vue.js 学习日记第二章:http://www.tnblog.net/18323015640/article/details/2...

vue.js 学习日记第四章-vue中文本框数据获取与绑定及computed计算属性

官网:https://cn.vuejs.org/v2/guide/ vue.js学习日记第三章: http://www.tnblog.net/18323015640/article/details/2...

vue.js 学习日记第五章-v-if和v-for指令的使用方式

官网:https://cn.vuejs.org/v2/guide/ vue.js学习日记第四章: http://www.tnblog.net/18323015640/article/details/2...

vue.js 学习日记第六章-vue组件初步学习

官网:https://cn.vuejs.org/v2/guide/ vue.js学习日记第五章: http://www.tnblog.net/18323015640/article/details/2...

vue.js学习日记第七章-搭建脚手架

官网:https://cn.vuejs.org/v2/guide/ vue.js学习日记第六章: http://www.tnblog.net/18323015640/article/details/2...

vue实现好友选中效果

逛过vue官网肯定会发现一个有趣的指令“v-for”,相比与以前拼接html代码确实要上档次一点,而且减少了工作量,先看一波效...

js时间格式化vue.js时间格式化,带T 时间格式化

也可以借助moment库, 参考:https://www.tnblog.net/aojiancc2/article/details/8079moment库有点大,推荐可以使用day.js...
高山仰止,景行行止。