摘要: [root@l01 ~]# passwd -S pispread pispread PS 2020-04-30 7 99999 15 -1 (Password set, SHA512 crypt.)用户锁定 [root@l01 ~]# passwd -l pispread Locking passw 阅读全文
posted @ 2020-08-06 11:50 醒日是归时 阅读(2540) 评论(0) 推荐(0) 编辑
摘要: vue中 把一段长数组按照指定份数 均分 sliceArray(array, size) { var result = []; for (var x = 0; x < Math.ceil(array.length / size); x++) { var start = x * size; var e 阅读全文
posted @ 2020-08-03 17:01 醒日是归时 阅读(2019) 评论(0) 推荐(0) 编辑
摘要: 模式可做操作若文件不存在是否覆盖 r 只能读 报错 - r+ 可读可写 报错 是 w 只能写 创建 是 w+ 可读可写 创建 是 a 只能写 创建 否,追加写 a+ 可读可写 创建 否,追加写 阅读全文
posted @ 2020-07-31 17:49 醒日是归时 阅读(1723) 评论(0) 推荐(0) 编辑
摘要: 方式一: <span class="person_name">{{item.type_name == '车商' ? item.title : item.type_name == '车型' ? item.card_title : '暂无数据'}}</span> 方式2:v-if <span v-if= 阅读全文
posted @ 2020-07-31 10:55 醒日是归时 阅读(617) 评论(0) 推荐(0) 编辑
摘要: 经常会遇到远程排序,需要去掉null状态的排序,当设置sortable='custom'时,设置sort-orders为['ascending', 'descending']是不生效的。然后查到了一种解决办法,如下: element表格排序有三种状态,升序、降序、null,现在想要实现的效果为只要升 阅读全文
posted @ 2020-07-31 10:43 醒日是归时 阅读(673) 评论(0) 推荐(0) 编辑
摘要: 一、typeof判断数据类型(判断数组跟对象都返回object) console.log(typeof null); // "object" console.log(typeof function () { return 1; }); // "function" console.log(typeof 阅读全文
posted @ 2020-07-30 18:40 醒日是归时 阅读(12072) 评论(0) 推荐(0) 编辑
摘要: 当 v-if 与 v-for 一起使用时,v-for 具有比 v-if 更高的优先级,这意味着 v-if 将分别重复运行于每个 v-for 循环中 所以,不推荐v-if和v-for同时使用 使用推荐方式: <div v-if="proxyconfig.ip instanceof Object "> 阅读全文
posted @ 2020-07-30 18:37 醒日是归时 阅读(1141) 评论(0) 推荐(0) 编辑
摘要: 跳转到别的页面带参数 const space = this.pageHelperspace['search'] = this.searchconst query_params = Object.assign({}, row, space)this.$router.push({name: 'ansib 阅读全文
posted @ 2020-07-30 15:20 醒日是归时 阅读(355) 评论(0) 推荐(0) 编辑
摘要: 环境: 后端,python+uwsgi启动 前端:vue 用nginx运行,指定静态目录 问题 :发布后带路径打开页面报404问题,带路径打开即不是打开的主页 解决方案: https://router.vuejs.org/zh/guide/essentials/history-mode.html#% 阅读全文
posted @ 2020-07-28 17:30 醒日是归时 阅读(2379) 评论(0) 推荐(0) 编辑
摘要: 在直接使用 ansible 时候有-B -p 参数可以启用异步操作,然后返回一个 job_id 值 [root@master ansible]# ansible node1 -B 3600 -P 0 -m yum -a "name=ansible" -vv Using /etc/ansible/an 阅读全文
posted @ 2020-07-23 16:50 醒日是归时 阅读(408) 评论(0) 推荐(0) 编辑