摘要:
window.alert = function(name){ var iframe = document.createElement("IFRAME"); iframe.style.display="none"; iframe.setAttribute("src", 'data:text/plain 阅读全文
摘要:
通过npm 安装插件 1.安装 npm install vue-print-nb --save 2.引入 安装好以后在main.js文件中引入 import Print from 'vue-print-nb' Vue.use(Print); //注册 3. <div id="printTest" > 阅读全文
摘要:
1.检查并安装环境 node -vnpm -v 2.安装vue-cli npm install -g vue-cli 3.生成项目 vue init webpack 4.安装依赖 npm install 5.启动项目 npm run dev 阅读全文
摘要:
1.template中内容 <div style="width:150px;float: left;margin-left: 10px;" > <div :class='["cloudCabinetList",item.status=="空闲"?"freeBackgroundColor":item. 阅读全文
摘要:
selectList1:[{ label:" " ,value:" ",price:" "}] 遍历得到的数组 item的payGrade 对应label , item的index对应 value , item的payMoney对应price 阅读全文
摘要:
1.html内容 <el-col :span="20" style="margin-left: 100px;"> <input type="file" name="avatar" accept="image/gif,image/jpeg,image/jpg,image/png" @change="c 阅读全文
摘要:
场景: 获取到一个file类型的图片,如果直接在html中预览?这里就是利用html5的新特性,将图片转换为Base64的形式显示出来。有两种方法: 方法一:利用URL.createObjectURL() <!DOCTYPE html><html> <head> <title>base</title 阅读全文
摘要:
经过调试HbuilderX“终端”插件,最终定位问题,问题是插件在打开终端时,无法定位具体的窗口程序,如“cmd.exe”、“powershell.exe”等。可能产生原因:1、可能是电脑系统升级产生;2、可能是安装其他程序引起;3、hbuilderX本身原因;解决办法:1、打开HbuilderX安 阅读全文