摘要: 下载夜神模拟器: 菜单运行-》运行到手机或模拟器->运行到android基座 真机,需要在设置里面打开开发者调试这种 发布 发行->原生APP云打包,打包出来就是APK 阅读全文
posted @ 2024-10-09 16:14 影思密达ing 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 1.文件上传 uni.uploadFile 在H5端可以上传成功,在APP无法上传成功, 1.先检查url:必须是全路径,之前是 url: '/api/test' 所以上传不上去, 2,manifest配置权限 <uses-feature android:name="android.hardware 阅读全文
posted @ 2024-10-09 16:10 影思密达ing 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 场景:electron做个welink那种会议功能,需要集成第三方去进入会议,需要做的是在electron里面打开这个通道 对方给了一个文件夹,里面含有.exe,需要调用shell命令去打开这个exe传些参数 1.把整个会议文件夹放在/resources下 主要是记住三个环境变量的路径方法(因为在e 阅读全文
posted @ 2024-04-11 15:25 影思密达ing 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 1.>目前有electron 然后自己根据vue项目集成的,需要自己配置各种文件(目前跟网上的帖子走了几个发现各种问题卡在了run 白屏这里,不知道是包的问题,还是版本语法的问题) https://www.electronjs.org/zh/ 2.>https://cn-evite.netlify. 阅读全文
posted @ 2024-03-26 16:52 影思密达ing 阅读(135) 评论(0) 推荐(0) 编辑
摘要: function Chenqiguo(){ alert('qiguo'); } Chenqiguo.prototype.getName = function(){ alert('prototype qiguo'); } 我们分别用new实例化构造函数和用普通的函数执行对原型求值 var chenqi 阅读全文
posted @ 2024-03-20 11:29 影思密达ing 阅读(19) 评论(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 阅读(5) 评论(0) 推荐(0) 编辑
摘要: https://bpmn.io/ 阅读全文
posted @ 2024-03-08 09:45 影思密达ing 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 原理就是在鼠标浮动到el-tootip包裹的元素时判断该元素的scrollWidth(元素内容的实际宽度)有没有超过clientWidth(元素的可是宽度)超出时显示省略号并设置disabled属性为false否则为true代码如下: 链接:https://www.jianshu.com/p/b39 阅读全文
posted @ 2024-02-28 11:21 影思密达ing 阅读(62) 评论(0) 推荐(0) 编辑
摘要: watch( () => [props.allData, props.typeName], (newvalue: any) => { if (newvalue[0] && newvalue[1]) { getAllDataList(newvalue[0]); } }, { deep: true } 阅读全文
posted @ 2024-01-31 11:22 影思密达ing 阅读(143) 评论(0) 推荐(0) 编辑