- 博客(18)
- 收藏
- 关注
原创 el-table 添加右固定列、横向滚动条、竖向滚动条
el-table在固定列,并且添加滚动条后,可能会出现各种各样的样式错乱问题,比如竖向滚动时固定列不滚动,又或者固定列高度少一截等问题。以下代码可以放在全局scss文件,除此之外还要在。
2024-03-11 09:54:12 1893
原创 uni-data-select 插件配置接收字段
由于uni-data-select插件只能接收“text”和“value”字段,实际使用中不可能都包含这两个字段,因此改为可配置项,避免遍历数据。修改插件代码uni-data-select.vue文件。
2024-01-11 09:47:22 2002
原创 uni-app 文件预览 兼容App、h5以及Android和iOS系统
【代码】uni-app 文件预览 兼容App、h5以及Android和iOS系统。
2023-05-06 14:50:20 1424
转载 echarts 为地图添加背景图片
在script中定义:var domImg = document.createElement("img");domImg.style.height = domImg.height = domImg.width = domImg.style.width = "100px";domImg.src = `图片转换为base64的编码`在地图配置项geo中:itemStyle:{ normal:{ areaColor: { image: domImg, .
2022-04-07 09:34:20 4831 4
原创 echarts 仪表盘 超出指定范围改变表盘颜色
let myChart = this.$echarts.init(document.getElementById("yibiao1"));let JbColor = new this.$echarts.graphic.LinearGradient(1, 1, 1, 0, [ { offset: 0.1, color: "#FDE73B" }, { offset: 0.4, color: "#00D21A" }, { offset: 1, color: "#.
2022-03-22 14:13:40 2009
原创 uni-app改变radio的默认样式 去掉小对号
.uni-radio-input.uni-radio-input-checked{ background-color: gray!important; border-color: gray!important; background-clip: content-box!important; padding: 7rpx!important; box-sizing: border-box; &:before{ display: none !important; }.
2022-03-03 16:01:53 1331
原创 css 在原来宽度的基础上加上或减去宽度
width:-webkit-calc(25% - 1px); width:-moz-calc(25% - 1px); width:calc(25% - 1px);
2022-01-25 16:07:44 1815
原创 正则匹配以http开头mp4/png/jpg结尾的字符串
this.content = this.content.match(/http.*\.(mp4|png|jpg)/gi);
2021-12-27 09:50:19 3200
原创 vue 使用quill-editor富文本编辑框
1、安装插件npm install vue-quill-editor --save2、在main.js中引入import VueQuillEditor from 'vue-quill-editor'import 'quill/dist/quill.snow.css'Vue.use(VueQuillEditor);3、在需要引入富文本框的页面<quill-editor class="editor" v-model="form.content"> <el-
2021-12-24 08:18:25 1067
原创 elementui 走马灯指示器设置为圆点
/deep/ .el-carousel__indicator--horizontal .el-carousel__button { width: 10px; height: 10px; background: transparent; border: 1px solid #ffffff; border-radius: 50%; opacity: 0.5; } /deep/ .el-carousel__indicator--horizontal...
2021-12-20 09:59:36 4665 6
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人