摘要: 场景:electron做个welink那种会议功能,需要集成第三方去进入会议,需要做的是在electron里面打开这个通道 对方给了一个文件夹,里面含有.exe,需要调用shell命令去打开这个exe传些参数 1.把整个会议文件夹放在/resources下 主要是记住三个环境变量的路径方法(因为在e 阅读全文
posted @ 2024-04-11 15:26 影思密达ing 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 1.>目前有electron 然后自己根据vue项目集成的,需要自己配置各种文件(目前跟网上的帖子走了几个发现各种问题卡在了run 白屏这里,不知道是包的问题,还是版本语法的问题) https://www.electronjs.org/zh/ 2.>https://cn-evite.netlify. 阅读全文
posted @ 2024-03-26 16:52 影思密达ing 阅读(18) 评论(0) 推荐(0) 编辑
摘要: function Chenqiguo(){ alert('qiguo'); } Chenqiguo.prototype.getName = function(){ alert('prototype qiguo'); } 我们分别用new实例化构造函数和用普通的函数执行对原型求值 var chenqi 阅读全文
posted @ 2024-03-20 11:29 影思密达ing 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 参考 https://www.runoob.com/w3cnote/js-call-apply-bind.html https://www.cnblogs.com/mc-congxueda/p/16724671.html 阅读全文
posted @ 2024-03-20 11:15 影思密达ing 阅读(2) 评论(0) 推荐(0) 编辑
摘要: <el-form :rules="rules" ref="formTableRef" :model="formTable" label-position="top" label-width="100px"> <el-table :data="formTable.tableData" style="w 阅读全文
posted @ 2024-03-15 10:19 影思密达ing 阅读(1) 评论(0) 推荐(0) 编辑
摘要: https://bpmn.io/ 阅读全文
posted @ 2024-03-08 09:45 影思密达ing 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 原理就是在鼠标浮动到el-tootip包裹的元素时判断该元素的scrollWidth(元素内容的实际宽度)有没有超过clientWidth(元素的可是宽度)超出时显示省略号并设置disabled属性为false否则为true代码如下: 链接:https://www.jianshu.com/p/b39 阅读全文
posted @ 2024-02-28 11:21 影思密达ing 阅读(6) 评论(0) 推荐(0) 编辑
摘要: watch( () => [props.allData, props.typeName], (newvalue: any) => { if (newvalue[0] && newvalue[1]) { getAllDataList(newvalue[0]); } }, { deep: true } 阅读全文
posted @ 2024-01-31 11:23 影思密达ing 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 思路focus会滚动条自动定位到这里 <el-input ref="introduceInput" v-model="formData.dutyRole" maxlength="100" placeholder="请输入角色名" class="table-input" ></el-input> co 阅读全文
posted @ 2024-01-25 10:33 影思密达ing 阅读(4) 评论(0) 推荐(0) 编辑
摘要: const rowDrop = () => { let tbody: any = document.querySelector(".sortableArea .el-table__body-wrapper tbody"); sortable.value = Sortable.create(tbody 阅读全文
posted @ 2023-12-28 16:42 影思密达ing 阅读(60) 评论(0) 推荐(0) 编辑