摘要: ssh公钥生成 ssh-keygen 设置邮箱账号 git config --global user.email "you@example.com" 设置码云昵称 git config --global user.name "Your Name" 阅读全文
posted @ 2021-01-18 13:53 JacobYUN 阅读(279) 评论(0) 推荐(0)
摘要: git init 初始化 git add . 添加所有文件 git commit -m '1' 提交文件 git remote add origin https://github.com/OliveKong/poster.git 连接远程仓库 git push -u origin master 把本 阅读全文
posted @ 2020-11-19 16:49 JacobYUN 阅读(95) 评论(0) 推荐(0)
摘要: var option = { xAxis: { data: ["苹果","小米","华为","其他"] }, yAxis: { splitLine:{ show:false} //改设置不显示坐标区域内的y轴分割线 }, series: [{ name: '手机品牌', type: 'bar', d 阅读全文
posted @ 2020-11-19 14:19 JacobYUN 阅读(1484) 评论(0) 推荐(0)
摘要: <template> <view class="page"> <!-- 菜单 --> <view class="menu"> <view class="leftScroll"> <view :class="isActive==index?'itemLeftTwo':'itemLeft'" :styl 阅读全文
posted @ 2020-11-18 10:59 JacobYUN 阅读(5419) 评论(0) 推荐(0)
摘要: /deep/.uni-scroll-view::-webkit-scrollbar { /* 隐藏滚动条,但依旧具备可以滚动的功能 */ display: none } 阅读全文
posted @ 2020-11-18 10:27 JacobYUN 阅读(2674) 评论(0) 推荐(0)