壮壮灬

 

2022年4月1日

js数组对比

摘要: 1、两个数组通过唯一编码进行比较 /** * 根据某一属性找出差异 * @param {arry} arr1 第一个参数需要对比的数组 * @param {arry} arr2 第二个参数需要对比的数组 * @param {string} fildId 需要对比的属性 * @returns 返回有差 阅读全文

posted @ 2022-04-01 17:23 壮壮灬 阅读(336) 评论(0) 推荐(0) 编辑

js数据对比

摘要: 判断新数据与原始数据中有何不同(增删改) const formatSaveList = (newList, oldList) => { const insertList = []; const deleteList = []; const updateList = []; // 找到新增和修改 ne 阅读全文

posted @ 2022-04-01 17:21 壮壮灬 阅读(383) 评论(0) 推荐(0) 编辑

vue 消息推送 WebSocket

摘要: 1、创建WebSocket.js文件 2、设置链接 const url = "localhost:8080" 3、方法 class WebSocketClass { constructor() { this.instance = null; this.connect(); } static getI 阅读全文

posted @ 2022-04-01 17:18 壮壮灬 阅读(336) 评论(0) 推荐(0) 编辑

日历

摘要: 1、布局 <template> <div class="WorkCanlender"> <div class="content not-select" @mouseup="endMove"> <div class="calendBox day" v-for="(item, index) in cal 阅读全文

posted @ 2022-04-01 17:14 壮壮灬 阅读(21) 评论(0) 推荐(0) 编辑

element-ui 弹窗实现拖拽

摘要: 1、组件部分 <el-dialog v-dialogDrag ref="xhzqDialog" class="xhzqDialog" :title="title" :fullscreen="isfullscreen" :visible.sync="dialogVisible" :append-to- 阅读全文

posted @ 2022-04-01 17:08 壮壮灬 阅读(189) 评论(0) 推荐(0) 编辑

vue 移动端 px 转 rem

摘要: 1、安装两个依赖 "postcss-pxtorem": "^5.1.1", "amfe-flexible": "^2.2.1", 2、main.js 中引入 import "amfe-flexible"; 3、创建vue.config.js (如果有不需要创建) const autoprefixer 阅读全文

posted @ 2022-04-01 17:02 壮壮灬 阅读(78) 评论(0) 推荐(0) 编辑

导航