上一页 1 2 3 4 5 6 ··· 16 下一页
摘要: <template> <div class="index"> <el-dialog class="dialog" :visible.sync="dialogStatus"> <div class="info"> <div class="fl"> <p class="p1">自动生成截图框 固定比例 阅读全文
posted @ 2020-05-20 14:55 fm060 阅读(388) 评论(0) 推荐(0) 编辑
摘要: 在项目内添加一个 .npmrc 文件: phantomjs_cdnurl=http://cnpmjs.org/downloads sass_binary_site=https://npm.taobao.org/mirrors/node-sass/ registry=https://registry. 阅读全文
posted @ 2020-05-20 11:04 fm060 阅读(622) 评论(0) 推荐(0) 编辑
摘要: var svgCaptcha = require('svg-captcha'); session.code = [] router.get('/bb', async (ctx, next) => { ctx.set('Access-Control-Allow-Origin', '*'); var c 阅读全文
posted @ 2020-05-18 15:42 fm060 阅读(178) 评论(0) 推荐(0) 编辑
摘要: art-template页面模板 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> 阅读全文
posted @ 2020-05-18 15:05 fm060 阅读(307) 评论(0) 推荐(1) 编辑
摘要: 1.npm install vant-weapp 2.在webpack.base.conf.js加参数 new CopyWebpackPlugin([ { from: resolve('node_modules/vant-weapp/dist'), to: resolve('dist/wx/vant 阅读全文
posted @ 2020-05-12 22:13 fm060 阅读(308) 评论(0) 推荐(0) 编辑
摘要: Linux系统装Docker 待更新 阅读全文
posted @ 2020-05-10 01:03 fm060 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 原生mysql操作 var mysql = require('mysql'); var connection = mysql.createConnection(sqlServer); connection.connect(); connection.beginTransaction(function 阅读全文
posted @ 2020-05-10 01:02 fm060 阅读(130) 评论(0) 推荐(0) 编辑
摘要: ie9以下不支持 1.placeholder属性 2.不支持二进制文件转blob类型,就是下载不了文件 阅读全文
posted @ 2020-05-03 11:19 fm060 阅读(119) 评论(0) 推荐(0) 编辑
摘要: ie9以下不支持 1.placeholder属性 2.不支持二进制文件转blob类型,就是下载不了文件 阅读全文
posted @ 2020-05-03 11:00 fm060 阅读(185) 评论(0) 推荐(0) 编辑
摘要: debounce(fn,delay=500) { let timer = null return function(){ if(timer){ clearTimeout(timer) } timer = setTimeout(fn,delay) } } 阅读全文
posted @ 2020-05-02 14:13 fm060 阅读(61) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 16 下一页