会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
凉面好好吃
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
4
5
6
···
15
下一页
2022年9月20日
css 设置字间距
摘要: 1. text-indent:cm; 设置首行的缩进距离 2. letter-spacing:px; 汉字间字间距设置或者英文单词中每个字母的间距 3. word-spacing:px; 设置英文每个单词之间的距离,对中文文字之间的距离没有效果
阅读全文
posted @ 2022-09-20 09:16 凉面好好吃
阅读(258)
评论(0)
推荐(0)
2022年9月9日
css 文字发光效果
摘要: text-shadow: 0 0 10px #e9f8d8,0 0 10px #e9f8d8,0 0 10px #e9f8d8,0 0 10px #e9f8d8;
阅读全文
posted @ 2022-09-09 10:32 凉面好好吃
阅读(130)
评论(0)
推荐(0)
2022年6月16日
Mybatis where中Like 的三种使用方式
摘要: 一、 where name like '%${name}%' 这种会有sql注入的问题,需要明白在 Mybatis中 $ 和 # 使用的区别。这种写法也不能加jdbcType=VARCHAR,否则也会报错。 二、 where name like #{name,jdbcType=VARCHAR} 这种
阅读全文
posted @ 2022-06-16 11:30 凉面好好吃
阅读(723)
评论(0)
推荐(0)
2022年5月31日
css 实现div 右上角加三角形
摘要: 效果: .el-row::before { content: ""; width:0; height: 0; border:60px solid transparent; border-right:60px solid #e3e3e3; transform: rotate(135deg); posi
阅读全文
posted @ 2022-05-31 15:42 凉面好好吃
阅读(1750)
评论(0)
推荐(0)
2022年5月19日
vue 占位符
摘要: vue中不会解析html的占位符 1.不间断空格\u00A0,主要用在office中,让一个单词在结尾处不会换行显示,快捷键ctrl+shift+space ; 2.半角空格(英文符号)\u0020,代码中常用的; 3.全角空格(中文符号)\u3000,中文文章中使用;
阅读全文
posted @ 2022-05-19 18:08 凉面好好吃
阅读(1110)
评论(0)
推荐(0)
2022年5月18日
vue-pdf 预览pdf文件
摘要: 效果: 安装组件vue-pdf 附上vue-pdf的官方地址:https://www.npmjs.com/package/vue-pdf yarn: yarn install vue-pdf npm: npm install --save vue-pdf 1、pdf.vue 代码,只有一页的 <pd
阅读全文
posted @ 2022-05-18 10:47 凉面好好吃
阅读(12365)
评论(0)
推荐(0)
2022年4月28日
vue table 表头 加“*"
摘要: addRedStar(h, { column }) { // 给表头加必选标识 return [h('span', { style: 'color: red' }, '*'), h('span', ' ' + column.label)] }, 效果: vue: <el-table-column l
阅读全文
posted @ 2022-04-28 13:55 凉面好好吃
阅读(518)
评论(0)
推荐(0)
2022年2月16日
vue elementui table 切换页面后select选中数据被清空问题
摘要: <el-table ref="tableFile" v-loading="createLoading" :row-key="getRowKeys" :data="createDetailList" @selection-change="handleSelectionCreateChange"> <e
阅读全文
posted @ 2022-02-16 14:35 凉面好好吃
阅读(3569)
评论(0)
推荐(0)
2022年2月8日
小程序 echarts 图表设置渐变
摘要: 效果: 代码: series: [{ data: [], type: 'line', smooth: true, /* symbol: 'circle', */ symbolSize: 5, lineStyle: { normal: { width: 2, color: '#af5347' } },
阅读全文
posted @ 2022-02-08 10:45 凉面好好吃
阅读(409)
评论(0)
推荐(0)
2022年1月24日
小程序 echarts组件 图表 监听点击事件 触摸事件 (组件: uni-ec-canvas)
摘要: 组件下载: 链接:https://pan.baidu.com/s/1Q43zRCQeauSsOpAknx98Bw 提取码:5vls 有修改了原组件。 调用: import uniEcCanvas from "@/components/uni-ec-canvas/uni-ec-canvas"; tap
阅读全文
posted @ 2022-01-24 16:55 凉面好好吃
阅读(2533)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
···
15
下一页
公告