上一页 1 2 3 4 5 6 7 8 9 ··· 16 下一页
摘要: 这时候看一下面板的安全 这时候可以看见端口在开着,但是你需要将它删除重新添加才会生效。 气死我了,找了好久才发现 阅读全文
posted @ 2022-01-28 20:21 小不点灬 阅读(229) 评论(0) 推荐(0) 编辑
摘要: 将第二行替换成 location ~* \.(php|jsp|cgi|asp|aspx)$ 如下图 阅读全文
posted @ 2022-01-20 18:59 小不点灬 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 1、使用命令 —save 或者说不写命令 —save ,都会把信息记录到 dependencies中;--save <=> -S 2、dependencies 中记录的都是项目在运行时需要的文件;(jq) 3、使用命令 —save-dev 则会把信息记录到 devDependencies中 --sa 阅读全文
posted @ 2021-12-20 16:25 小不点灬 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 首先解决阴影的问题: 在el-dialog上加上属性: 1.1在属性内加上这段代码 :append-to-body= 'true' 1.2 . :modal-append-to-body= 'false' 也可以 后来加上:append-to-body= 'true' 之后阴影显示正常,但是ios手 阅读全文
posted @ 2021-12-15 16:07 小不点灬 阅读(470) 评论(0) 推荐(0) 编辑
摘要: 显示格式化的数据首先要是用pre标签否则不识别换行空格字符,样式设置white-space: pre,设置缩进 方法1. <pre id="infoDiv3" style="white-space: pre"> </pre> 在页面中直接使用 <el-dialog title="提示" :visib 阅读全文
posted @ 2021-09-08 14:03 小不点灬 阅读(709) 评论(0) 推荐(0) 编辑
摘要: { //不改变原数组的方法:concat(),join(),slice(),toString() let arr1 = [1,2],arr2=[3,4],arr3 = [1,2,3,4,5,6]; console.log(arr1.concat(arr2),arr1,arr2) //[1, 2, 3 阅读全文
posted @ 2021-08-31 11:34 小不点灬 阅读(808) 评论(0) 推荐(0) 编辑
摘要: 1.setState更新状态的两种写法: (1). setState(stateChange, [callback]) 对象式的setState 1.stateChange为状态改变对象(该对象可以体现出状态的更改) 2.callback是可选的回调函数, 它在状态更新完毕、界面也更新后(rende 阅读全文
posted @ 2021-07-27 17:06 小不点灬 阅读(1621) 评论(0) 推荐(0) 编辑
摘要: 理解:react-Redux将所有组件分成两大类 · UI组件 1)只负责UI的呈现,不带有任何的业务逻辑 2)通过props接收数据(一般数据和函数) 3)不使用任何Redux的API ·容器组件 1)负责管理数据和业务逻辑,不负责UI的呈现 2) 使用Redux的API 3)一般保存在conta 阅读全文
posted @ 2021-07-26 17:56 小不点灬 阅读(324) 评论(0) 推荐(0) 编辑
摘要: .ellipsis { display: inline-block; width: 150px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; word-break: normal !important } <el-t 阅读全文
posted @ 2021-07-26 16:58 小不点灬 阅读(727) 评论(0) 推荐(0) 编辑
摘要: 1. <el-input v-show="scope.row.edit" @keyup.native="pree(scope.row)" v-model="scope.row.supperHighCost" @blur="edit(scope.row)" style="width: 60px" > 阅读全文
posted @ 2021-07-23 16:19 小不点灬 阅读(1461) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 16 下一页