摘要: module.exports = { plugins: { autoprefixer: {}, // 用来给不同的浏览器自动添加相应前缀,如-webkit-,-moz-等等 "postcss-px-to-viewport": { unitToConvert: "px", // 要转化的单位 view 阅读全文
posted @ 2022-09-22 15:19 820820820 阅读(127) 评论(0) 推荐(0)
摘要: EU9MJRUXRK-eyJsaWNlbnNlSWQiOiJFVTlNSlJVWFJLIiwibGljZW5zZWVOYW1lIjoi5rmW5Y2X5a6J5YWo5oqA5pyv6IGM5Lia5a2m6ZmiIiwiYXNzaWduZWVOYW1lIjoibGkgeGluIiwiYXNzaWd 阅读全文
posted @ 2022-09-16 16:28 820820820 阅读(123) 评论(0) 推荐(0)
摘要: let newArr=this.originArr.map(item=>{ return item.id; }) 更改对象属性 if (this.$route.query.type == 5) { // 说明是通知负责人 debugger const templist=this.paramTaskM 阅读全文
posted @ 2022-09-13 17:46 820820820 阅读(217) 评论(0) 推荐(0)
摘要: 1.首先确定setting配置 2.打开项目pom.xml 3.页面内按Alt+insert 4.点击dependency,搜索需要依赖包即可 阅读全文
posted @ 2022-09-03 13:12 820820820 阅读(307) 评论(0) 推荐(0)
摘要: #!/bin/bash APP_NAME=app_api.jar #使用说明,用来提示输入参数 usage() { echo "please enter the corresponding parameters [start|stop|restart|status]" exit 1 } #检查程序是 阅读全文
posted @ 2022-08-30 17:09 820820820 阅读(76) 评论(0) 推荐(0)
摘要: 1.在线下载jdk wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java 阅读全文
posted @ 2022-08-30 17:07 820820820 阅读(601) 评论(0) 推荐(0)
摘要: 一.安装nginx前的准备工作 在linux下安装nginx,首先需要安装 gcc-c++编译器。然后安装nginx依赖的pcre和zlib包。最后安装nginx即可。(有很多同学直接下载nginx开始安装,出现各种错误!) 二.安装gcc-c++编译器 yum install gcc-c++ yu 阅读全文
posted @ 2022-08-30 17:02 820820820 阅读(2076) 评论(0) 推荐(0)
摘要: Linux安装mysql5.7 一.安装前的检查和准备工作。 1.1检查自己的liunx是否安装过mysql rpm -qa | grep mysql 1.1.1如果有的话,就删除(XXXX是自己的mysql目录) rpm -e --nodeps mysql-xxxx 1.2查询所有的mysql对应 阅读全文
posted @ 2022-08-30 16:44 820820820 阅读(351) 评论(0) 推荐(0)
摘要: 当在Linux中安装Mysql后,不管是在根目录下还是在安装mysql的bin下执行mysql -uroot -p结果都是command not found,如下图所示:问题原因,linux默认启动Mysql,会在根目录下的bin中去启动,因此需要创建一个软连接执行以下命令:ln -s /usr/l 阅读全文
posted @ 2022-08-22 13:54 820820820 阅读(585) 评论(0) 推荐(0)
摘要: private String change2(Double runliaoCost) { if (runliaoCost == null) { return ""; } //保留两位小数 BigDecimal b = new BigDecimal(runliaoCost); DecimalForma 阅读全文
posted @ 2022-08-04 17:34 820820820 阅读(39) 评论(0) 推荐(0)