摘要:
1. text-indent:cm; 设置首行的缩进距离 2. letter-spacing:px; 汉字间字间距设置或者英文单词中每个字母的间距 3. word-spacing:px; 设置英文每个单词之间的距离,对中文文字之间的距离没有效果 阅读全文
摘要:
text-shadow: 0 0 10px #e9f8d8,0 0 10px #e9f8d8,0 0 10px #e9f8d8,0 0 10px #e9f8d8; 阅读全文
摘要:
一、 where name like '%${name}%' 这种会有sql注入的问题,需要明白在 Mybatis中 $ 和 # 使用的区别。这种写法也不能加jdbcType=VARCHAR,否则也会报错。 二、 where name like #{name,jdbcType=VARCHAR} 这种 阅读全文
摘要:
效果: .el-row::before { content: ""; width:0; height: 0; border:60px solid transparent; border-right:60px solid #e3e3e3; transform: rotate(135deg); posi 阅读全文
摘要:
vue中不会解析html的占位符 1.不间断空格\u00A0,主要用在office中,让一个单词在结尾处不会换行显示,快捷键ctrl+shift+space ; 2.半角空格(英文符号)\u0020,代码中常用的; 3.全角空格(中文符号)\u3000,中文文章中使用; 阅读全文
摘要:
效果: 安装组件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 阅读全文
摘要:
addRedStar(h, { column }) { // 给表头加必选标识 return [h('span', { style: 'color: red' }, '*'), h('span', ' ' + column.label)] }, 效果: vue: <el-table-column l 阅读全文
摘要:
<el-table ref="tableFile" v-loading="createLoading" :row-key="getRowKeys" :data="createDetailList" @selection-change="handleSelectionCreateChange"> <e 阅读全文
摘要:
效果: 代码: series: [{ data: [], type: 'line', smooth: true, /* symbol: 'circle', */ symbolSize: 5, lineStyle: { normal: { width: 2, color: '#af5347' } }, 阅读全文
摘要:
组件下载: 链接:https://pan.baidu.com/s/1Q43zRCQeauSsOpAknx98Bw 提取码:5vls 有修改了原组件。 调用: import uniEcCanvas from "@/components/uni-ec-canvas/uni-ec-canvas"; tap 阅读全文