摘要: 表格内容自滚动效果 // 拿到表格挂载后的真实DOM const table = this.$refs.table // 拿到表格中承载数据的div元素 const divData = table.bodyWrapper // 拿到元素后,对元素进行定时增加距离顶部距离,实现滚动效果(此配置为每10 阅读全文
posted @ 2022-01-10 10:43 又拿代码换酒钱 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 设计图效果 封装组件 <template> <div class="gauge" ref="chart"></div> </template> <script> export default { name: 'DrawGauge', data() { return { colorSource: [ 阅读全文
posted @ 2022-01-10 10:26 又拿代码换酒钱 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 封装绘制八边形函数 export function drawOctagon( id, width, height, text, startFillColor, endFillColor, startLineColor, endLineColor, textColor ) { function pol 阅读全文
posted @ 2022-01-10 10:17 又拿代码换酒钱 阅读(64) 评论(0) 推荐(0) 编辑