摘要:
1. 业务场景 由前台导入Excel表格,获取批量数据。根据一个数组导出Excel表格。 2.1 引入工具库 npm install xlsx --save npm install file-saver --save npm install script-loader --save-dev 2.2 阅读全文
摘要:
关于v-html中存在<img>出现图片溢出所在div或dialog等情况处理 用深度选择器修改v-html里面的内容样式即可。 <div class="dialog" v-html="content"></div> // css写法 <style> .dialog { width: 1024px; 阅读全文
摘要:
记录在flex布局中某些元素需要居右的处理方式 <div class="box"> <div class="left"> 左边内容 </div> <div class="right"> 右边内容 </div> </div> { .box { width: 300px; height: 200px; 阅读全文
摘要:
根据屏幕分辨率进而修改CSS样式 使用方法 <div class="box"/> <style> @media screen and (max-width:600px){ .box{ height: 200px; width: 200px; background-color: blueviolet; 阅读全文
摘要:
##主要记录一些曾经写过的有关el-ui样式修改的代码 修改 el-radio 激活颜色 .el-radio{ &.is-checked { .el-radio__inner{ background-color: #2CCF2A; border-color: #2CCF2A; } .el-radio 阅读全文