摘要:
<!-- * @Author: Simoon.jia * @Date: 2024-12-13 17:38:51 * @LastEditors: Simoon.jia * @LastEditTime: 2024-12-13 19:00:34 * @Description: 描述 --> <!DOCTY 阅读全文
摘要:
filterOption={(input, option) => option.props.children.toLowerCase().indexOf(input.toLowerCase()) >= 0} 阅读全文
摘要:
1.直接在表单项书写: rules={[ { required: true, message: '请选择指标类型', }, { validator: (_, value) => { const num = form.getFieldValue('itemList')[field.name]['fil 阅读全文
摘要:
alertConfig:Form.List的name name:子项中filed的name属性 alarmType:子项内的某一表单项name form.validateFields([['alertConfig', name, 'alarmType']]) 单个List重置表单值: form.re 阅读全文
摘要:
& 也代表父选择器的引用,可以继续使用 & 来引用父级选择器,但要确保正确地应用 :first-child 伪类。 .titleLeft { width: 70%; display: flex; align-items: center; &:first-child { margin-right: 2 阅读全文
摘要:
使用 Git 的 rebase 命令将两次提交合并成一个提交 1. 使用交互式 rebase 首先,确保你处于需要操作的分支上。 git rebase -i HEAD~2 HEAD~2 表示最近的两个提交。你可以根据需要调整数字。 2. 选择合并提交 运行这个命令后,Git 会打开一个编辑器,显示类 阅读全文
摘要:
直接下载:适用于简单场景,不发送请求直接使用浏览器获取文件 /** * @description: 下载图片/文件 * @return {*} */ export const download = (url = '', newUrl) => { const iframe = document.cre 阅读全文
摘要:
background-image:linear-gradient(110deg, rgb(1, 228, 161) 49%, rgb(0, 0, 0) 2% 51%, rgb(226, 237, 251) 49%); linear-gradient详解: 简单实例:从头部开始的线性渐变,从红色开始, 阅读全文
摘要:
监听事件 ThreeDom.current.addEventListener('mousemove', mousemoveFunc, false); 监听方法 const mousemoveFunc = (event) => { event.preventDefault(); // 计算鼠标在屏幕上 阅读全文
摘要:
sceneRef.current.addEventListener('click', clickFunc, false); sceneRef.current.addEventListener('dblclick', dblclickFunc, false); sceneRef.current.add 阅读全文