上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: 1.官网地址 http://mozilla.github.io/pdf.js/getting_started/ 2.下载旧版本 3.复制到项目地址中使用<a>标签 <a href="../content/pdfjs-3.4.120-dist/web/viewer.html?file=xxx.pdf" 阅读全文
posted @ 2023-03-08 16:48 微风吹过~ 阅读(137) 评论(0) 推荐(0) 编辑
摘要: ls | grep -E "^[0-9]+" | xargs rm -r 阅读全文
posted @ 2023-01-08 15:20 微风吹过~ 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 一 、expect 语法 1.spawn 开启新的进程 2.expect 捕获系统输出 3.send 控制台发送命令 4.interact 结束 先新建test.sh ,然后放入下文命令,send中\r代表换行 ,修改send中密码,执行。 spawn sudo su - expect "*:*" 阅读全文
posted @ 2022-12-12 10:57 微风吹过~ 阅读(134) 评论(0) 推荐(0) 编辑
摘要: <script> //选择框:pzpn 选择框文本:pzpnwb var pzpnfieldid = WfForm.convertFieldNameToId("pzpn"); var pzpnwbfieldid = WfForm.convertFieldNameToId("pzpnwb"); WfF 阅读全文
posted @ 2022-12-09 11:08 微风吹过~ 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 1.nuget引入Swashbuckle.AspNetCore <ItemGroup> <PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" /> </ItemGroup> 2.添加配置中间件Startup public 阅读全文
posted @ 2022-12-07 15:20 微风吹过~ 阅读(163) 评论(0) 推荐(1) 编辑
摘要: <script> //序号 const xh_id = WfForm.convertFieldNameToId('xh', "detail_1"); WfForm.registerAction(WfForm.ACTION_ADDROW+"1", function(index){ //获取当前行号 c 阅读全文
posted @ 2022-11-30 18:14 微风吹过~ 阅读(557) 评论(0) 推荐(0) 编辑
摘要: <script> var ksrqFileid = WfForm.convertFieldNameToId("ksrq", "detail_1");//开始日期 var jsrqFileid = WfForm.convertFieldNameToId("jsrq", "detail_1");//结束 阅读全文
posted @ 2022-11-07 15:57 微风吹过~ 阅读(273) 评论(0) 推荐(0) 编辑
摘要: <el-dialog title="" :visible.sync="dialogFormVisible"> <div slot="title" class="header-title"> <img src="../../../../images/ico1.png" /> <span class=" 阅读全文
posted @ 2022-11-03 09:40 微风吹过~ 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 因为执行计划缓存的存在,导致不会根据变量值重新制定执行计划。在SQL末尾添加OPTION(RECOMPILE),可以使执行计划重新编译,提高查询性能。 SELECT * FROM TABLE WHERE 1=1 OPTION(RECOMPILE) 阅读全文
posted @ 2022-11-01 13:19 微风吹过~ 阅读(127) 评论(0) 推荐(1) 编辑
摘要: 本地引用element-ui和vue <link rel="stylesheet" type="text/css" href="./element.css"> <script src="./js/vue.js"></script> <script src="./js/element.js"></sc 阅读全文
posted @ 2022-10-20 18:01 微风吹过~ 阅读(248) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页