上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 28 下一页
摘要: Iconfont-阿里巴巴矢量图标库 登录账户是 github自动登录 阅读全文
posted @ 2019-09-29 18:08 彭成刚 阅读(3716) 评论(0) 推荐(0) 编辑
摘要: vue 阻止冒泡 @click.stop= 阅读全文
posted @ 2019-09-29 10:42 彭成刚 阅读(3275) 评论(0) 推荐(0) 编辑
摘要: react build相对目录 "homepage": ".", package.json 阅读全文
posted @ 2019-09-27 16:59 彭成刚 阅读(2977) 评论(0) 推荐(0) 编辑
摘要: header.php comm.php select.php update.php insert.php delete.php 字符集: utf8 -- UTF-8 Unicode 排序规则: utf8_general_ci 阅读全文
posted @ 2019-09-27 12:03 彭成刚 阅读(238) 评论(0) 推荐(0) 编辑
摘要: mysqli_query($conn, "set names utf8"); //**设置字符集*** 不设置插入数据库就是乱码 阅读全文
posted @ 2019-09-26 16:26 彭成刚 阅读(2899) 评论(0) 推荐(0) 编辑
摘要: https://github.com/iview/iview-admin/tree/template 阅读全文
posted @ 2019-09-25 17:20 彭成刚 阅读(1037) 评论(0) 推荐(0) 编辑
摘要: interceptors (instance, url) { // 请求拦截 instance.interceptors.request.use(config => { // 添加全局的loading... if (!Object.keys(this.queue).length) { // Spin.show() // 不建议开启,因为界面不友好 } this.queue[url] = true 阅读全文
posted @ 2019-09-25 14:57 彭成刚 阅读(575) 评论(0) 推荐(0) 编辑
摘要: mysql 如果没有密码 就不能远程连接 阅读全文
posted @ 2019-09-25 14:55 彭成刚 阅读(477) 评论(0) 推荐(0) 编辑
摘要: 后端框架 KOA NESTjs Think.js 阅读全文
posted @ 2019-09-24 16:25 彭成刚 阅读(694) 评论(0) 推荐(0) 编辑
摘要: 如果是 *.vue:html 就有style自动提示,但是eslint就会报格式格式化的不对 空格个数不对 阅读全文
posted @ 2019-09-23 17:26 彭成刚 阅读(328) 评论(0) 推荐(0) 编辑
摘要: 解决问题: 点击相同的链接,会有一个重复key的报错 放在router 的 index.js 里 阅读全文
posted @ 2019-09-23 15:37 彭成刚 阅读(735) 评论(0) 推荐(0) 编辑
摘要: ret.data[0]._highlight = true iview table表格高亮 阅读全文
posted @ 2019-09-20 17:37 彭成刚 阅读(811) 评论(0) 推荐(0) 编辑
摘要: 迷你记事本 https://vladocar.github.io/Minimal-Notes/ 阅读全文
posted @ 2019-09-19 15:52 彭成刚 阅读(162) 评论(0) 推荐(0) 编辑
摘要: tomcat 对 vue的history默认支持 tomcat 开启步骤 1.build文件放入webapps目录 2.进入conf目录修改server.xml端口号改成8088 3.进入bin目录运行startup.bat 4.浏览器 localhost:8088/workName 访问即可 阅读全文
posted @ 2019-09-19 14:20 彭成刚 阅读(188) 评论(0) 推荐(0) 编辑
摘要: vscode灰暗色主题和 左侧加图标 Spacegray VSCode vscode-icons 阅读全文
posted @ 2019-09-19 11:51 彭成刚 阅读(1118) 评论(0) 推荐(1) 编辑
摘要: "eslint.autoFixOnSave": true, "eslint.validate": [ "javascript", "javascriptreact", { "language": "vue", "autoFix": true } ], 阅读全文
posted @ 2019-09-19 09:04 彭成刚 阅读(2181) 评论(0) 推荐(0) 编辑
摘要: <div class="inputReportIndex"> <div class="inner"> <div class="left"> <Card :bordered="false" style="height: 48%;">1</Card> <div style="height: 4%;"></div> <Card :bordered="false" style 阅读全文
posted @ 2019-09-18 11:35 彭成刚 阅读(487) 评论(0) 推荐(0) 编辑
摘要: <keep-alive> 大量异步数据嵌入在循环体内,会有大量相同异步请求,可以缓存下拉用。 阅读全文
posted @ 2019-09-17 08:53 彭成刚 阅读(267) 评论(0) 推荐(0) 编辑
摘要: const routerList = [] function importAll (r) { r.keys().map(value => { r(value).default.map(item => { routerList.push(item) }) }) } importAll(require.context('.', true, /\.router\.js/)) 阅读全文
posted @ 2019-09-16 15:45 彭成刚 阅读(539) 评论(0) 推荐(0) 编辑
摘要: 某些时候 v-if 会导致 v-modal 内部数据获取不到 也watch不到,这个时候用v-show即可,另外提一下数组要整体赋值才有双向绑定 阅读全文
posted @ 2019-09-12 17:28 彭成刚 阅读(504) 评论(0) 推荐(0) 编辑
摘要: 表单配置项写法,表单写成JSON数组套对象,一行是一个数组单位,一列是一个对象单位,然后再写一个公共组件读取这个配置,循环加载slot,外层载入slot的自定义部分,比如input select等,这种写法就是把组件嵌套改为配置方式 阅读全文
posted @ 2019-09-12 16:06 彭成刚 阅读(159) 评论(0) 推荐(0) 编辑
摘要: @on-row-click="$emit('on-row-click', arguments[0], arguments[1])" 阅读全文
posted @ 2019-09-12 16:03 彭成刚 阅读(449) 评论(0) 推荐(0) 编辑
摘要: rimraf node_modules 删除目录 超快 阅读全文
posted @ 2019-09-06 10:27 彭成刚 阅读(214) 评论(0) 推荐(0) 编辑
摘要: https://space.bilibili.com/20291891/channel/detail?cid=29424 阅读全文
posted @ 2019-09-05 19:59 彭成刚 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 前端架构 技术栈nodewebpackvueiviewaxios 架构框架(核心)iview-adminhttps://github.com/iview/iview-admin 架构框架2reactAnt Designhttps://github.com/ant-design/ant-design- 阅读全文
posted @ 2019-09-02 10:44 彭成刚 阅读(376) 评论(0) 推荐(0) 编辑
摘要: getReceiveListAPI (param) { return new Promise(resolve => { let params = { // idCard: this.idCard, // typeFlag: this.typeFlag ...param } ... 阅读全文
posted @ 2019-08-30 11:03 彭成刚 阅读(1202) 评论(0) 推荐(0) 编辑
摘要: 对象数组化 Object.values(this.totalValueObj).forEach(value => { 阅读全文
posted @ 2019-08-30 10:01 彭成刚 阅读(444) 评论(0) 推荐(0) 编辑
摘要: 禅道 阅读全文
posted @ 2019-08-30 09:00 彭成刚 阅读(133) 评论(0) 推荐(0) 编辑
摘要: https://www.yuque.com/ant-design/course/ig6mzb 阅读全文
posted @ 2019-08-29 19:50 彭成刚 阅读(451) 评论(0) 推荐(0) 编辑
摘要: $ cnpm install -g create-react-app $ create-react-app my-app (eslint报错 换下面的) npx create-react-app my-app --use-npm $ cd my-app/ $ npm start 阅读全文
posted @ 2019-08-27 14:14 彭成刚 阅读(157) 评论(0) 推荐(0) 编辑
摘要: return DiscountMap[discountType] && DiscountMap[discountType](price) 阅读全文
posted @ 2019-08-26 14:08 彭成刚 阅读(210) 评论(0) 推荐(0) 编辑
摘要: computed 里面 不能写箭头函数 都要写 function () {} 否则页面会都不显示 阅读全文
posted @ 2019-08-22 19:43 彭成刚 阅读(566) 评论(0) 推荐(0) 编辑
摘要: webStorm -> Version Control _> Repository -> Filter By User 查看svn日志 阅读全文
posted @ 2019-08-22 12:44 彭成刚 阅读(457) 评论(0) 推荐(0) 编辑
摘要: created:异步初始化数据都应该放到 created里面 阅读全文
posted @ 2019-08-22 09:27 彭成刚 阅读(646) 评论(0) 推荐(0) 编辑
摘要: 钱丢丢- B站 https://space.bilibili.com/12820125?from=search&seid=18407415679930662331 阅读全文
posted @ 2019-08-21 13:19 彭成刚 阅读(114) 评论(0) 推荐(0) 编辑
摘要: keep-alive 必须 页面有name 要不缓存不住数据 阅读全文
posted @ 2019-08-21 08:46 彭成刚 阅读(570) 评论(0) 推荐(0) 编辑
摘要: consoleInfo (...args) { // console.info('this', this) const name = this.$options.name let outName = name if (name === 'basicInformation') outName = '111况' let ... 阅读全文
posted @ 2019-08-20 14:31 彭成刚 阅读(352) 评论(0) 推荐(0) 编辑
摘要: 判断 tableZen 是否有 横向滚动条 阅读全文
posted @ 2019-08-20 11:05 彭成刚 阅读(315) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 28 下一页