上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 23 下一页
摘要: // autoHeight 必须有高度 :scroll-y="true" 设置横向竖向滚动 <scroll-view :style="{height:autoHeight}" :scroll-y="true" @scroll="scroll" :scroll-with-animation="true 阅读全文
posted @ 2021-02-23 20:07 Panax 阅读(295) 评论(0) 推荐(0)
摘要: // 说白了 body 参数通常在post请求方式下 query 在get请求方式下 ,以问号? 有的时候接口会query 和body参数混用,就需要在请求url 拼上 阅读全文
posted @ 2021-02-23 19:38 Panax 阅读(2811) 评论(0) 推荐(1)
摘要: jsonAjaxGet(url,type,param,successfn,errorfn){ var _this = this ; $.ajax({ type: type, url: _this.API_BASE_URL + url, data: param, dataType: 'json', h 阅读全文
posted @ 2021-02-23 17:21 Panax 阅读(174) 评论(0) 推荐(0)
摘要: <el-table ref="filterTable" :data="tableData" :header-cell-style="rowClass" :cell-style="set_cell_style" :height='heightTable' style="width: 100%"> </ 阅读全文
posted @ 2021-02-23 16:59 Panax 阅读(9242) 评论(1) 推荐(0)
摘要: tipsBox ( option ) { var _this = this ; if(_this.platForm){ //_this.platForm 判断平台 _this.$message.error(option.message); // 运用了elementUI 的组件 }else{ var 阅读全文
posted @ 2021-02-23 16:50 Panax 阅读(105) 评论(0) 推荐(0)
摘要: mounted: function () { let _this = this ; var str = window.navigator.userAgent; // 判断设备 console.log(str,' str') if(str.toLowerCase().indexOf("mobile") 阅读全文
posted @ 2021-02-23 16:45 Panax 阅读(633) 评论(0) 推荐(0)
摘要: wx.showToast({ title: '需要您授权用户信息用于注册或登陆', icon: 'none', }) 阅读全文
posted @ 2020-08-07 16:43 Panax 阅读(292) 评论(0) 推荐(0)
摘要: wx.navigateToMiniProgram({ appId: '', success(res) { }, }) 阅读全文
posted @ 2020-08-07 16:42 Panax 阅读(169) 评论(0) 推荐(0)
摘要: 1. 刷新远程分支的命令行:git remote update origin -p 2. 获取远程分支,需要切换:git fetch origin branch_name3. 指定远程分支,便于git pull git push ,使用 git branch --set-upstream-to=or 阅读全文
posted @ 2020-08-07 16:37 Panax 阅读(1927) 评论(2) 推荐(1)
摘要: 解决办法: git config --system --unset credential.helper 此后又会重复让输入账号,密码,很烦,然后: git config --global credential.helper store 输入账号密码,下次就不会让重复输入了。 阅读全文
posted @ 2020-08-07 16:32 Panax 阅读(1123) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 23 下一页