摘要: element的表格el-table和el-pagination分页根据表格数据实现纯【前端分页】 阅读全文
posted @ 2025-07-31 14:34 江北小乔 阅读(72) 评论(0) 推荐(0)
摘要: 这篇文章废话不多,只列出关键代码,其余布局自行实现,效果就是如下图,左侧类型列表,右侧上下滚动区域 关键代码: 1、scroll-view中加滚动监听和锚点属性,以及每个字item设置一个动态ID用于锚点 <scroll-view :scroll-y="true" :scroll-into-view 阅读全文
posted @ 2025-05-24 15:37 江北小乔 阅读(418) 评论(0) 推荐(0)
摘要: echarts设置图例图标和文本左对齐 阅读全文
posted @ 2025-05-15 10:32 江北小乔 阅读(176) 评论(0) 推荐(0)
摘要: js获取某个月的星期每周的集合 阅读全文
posted @ 2024-12-09 10:05 江北小乔 阅读(78) 评论(0) 推荐(0)
摘要: 效果如图 解决方案: // 防止表格 tooltip 偏移 .el-table { transform: scale(1); } 阅读全文
posted @ 2024-12-05 17:01 江北小乔 阅读(291) 评论(0) 推荐(0)
摘要: <el-carousel ref="refCarousel" class="wh100Per" :autoplay="false" :loop="true" type="card" arrow="never" indicator-position="none" @change="priceChang 阅读全文
posted @ 2024-11-23 11:50 江北小乔 阅读(298) 评论(0) 推荐(0)
摘要: 修改的样式css如下: .wx-swiper-dot { bottom: 8rpx !important; width: 10rpx !important; height: 10rpx !important; border-radius: 50% !important; } .wx-swiper-d 阅读全文
posted @ 2024-09-10 13:54 江北小乔 阅读(755) 评论(0) 推荐(0)
摘要: <el-table ref="table" :data="tableData" border height="100%" :row-key="getRowKeys" @selection-change="handleSelectionChange"> </el-table> 关键代码: 1: :ro 阅读全文
posted @ 2024-02-27 16:18 江北小乔 阅读(2087) 评论(0) 推荐(0)
摘要: 一、在线视频 rtsp、rtmp、m3u8、flv、mkv、3gp、mp4 1.公网 mp4 测试地址: http://www.w3school.com.cn/i/movie.mp4 http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4 http://v 阅读全文
posted @ 2023-11-23 14:10 江北小乔 阅读(17541) 评论(1) 推荐(1)
摘要: //保存图片 clickSaveImage(url) { let image = new Image(); // 解决跨域 canvas污染问题 image.setAttribute('crossOrigin', 'anonymous') image.src = url + '?time=' + n 阅读全文
posted @ 2023-03-28 13:49 江北小乔 阅读(1245) 评论(0) 推荐(0)