- 博客(9)
- 收藏
- 关注
原创 vue中el-tooptip 气泡小箭头样式修改
小箭头不能跟气泡融合,显得很生硬,修改原理就是修改气泡框下方有两个三角的颜色,一个压在另一个三角上方,稍稍漏出一点作为边框。需要注意的是,这些样式添加scoped 就不生效了!如图,根据要求设置了气泡的背景颜色和边框;
2023-02-03 16:56:56 2141
原创 el-table点击分页自动跳至表格顶部
1、给el-table添加ref属性 <el-table :data="tableData" border size="mini" height="100%" highlight-current-row ref="multipleTable" >2、在分页的方法里加上this.$refs["multipleTable"].bodyWrapper.scrollTop=0 ; // 分页--分页大小改变事件 h...
2022-03-29 11:16:29 1646
原创 post方法下载文件
function openPostWindow(url, data) { var tempForm = document.createElement("form"); tempForm.id = "tempForm1"; tempForm.method = "post"; tempForm.action = url; tempForm.target = "_blank"; //打开新页面...
2022-03-08 20:22:05 1349
原创 npm设置淘宝镜像及npm常用指令
一、npm设置淘宝镜像1.查询当前配置的镜像npm get registry2.设置成淘宝镜像npm config set registry http://registry.npm.taobao.org/3.换成原来的npm config set registry https://registry.npmjs.org/二、npm常用指令...
2021-10-22 15:54:09 1721
原创 快速分清 Math.round 、Math.ceil 和 Math.floor的区别
//Math的三个去除小数点的方法1、Math.round()//四舍五入console.log(Math.round(3.1));//结果3console.log(Math.round(3.5));//结果4console.log(Math.round(-3.5));//结果-3console.log(Math.round(-3.6));//结果-4/2、Math.ceil()//向上取整//当取值是正数时Math.ceil(3.1)===M...
2021-08-10 01:14:37 303
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人