摘要: 一、下载安装C-LODOP https://www.lodop.net/download.html 解压文件后点击exe程序,启用服务 将上述的 LodopFuncs.js 文件放到工程某个文件下 二、修改LodopFuncs.js文件 并对该文件做一点点小的处理,以下是自己的处理。 该插件可直接放 阅读全文
posted @ 2023-01-10 16:47 cmooc 阅读(5438) 评论(0) 推荐(0) 编辑
摘要: 1、需要聚焦的el-input输入框设置ref值: ref="getfcous" <el-input v-model="workorder" ref="getfocus" :clearable="true" @keyup.enter.native="fill()" placeholder="请扫码或 阅读全文
posted @ 2023-01-10 16:17 cmooc 阅读(10731) 评论(0) 推荐(0) 编辑
摘要: PHP用CURL发送Content-type为application/json的POST请求方法 function json_post($url, $data = NULL) { $curl = curl_init(); curl_setopt($curl, CURLOPT_URL, $url); 阅读全文
posted @ 2022-12-09 11:03 cmooc 阅读(1654) 评论(0) 推荐(0) 编辑
摘要: 1、控制器 header("Access-Control-Allow-Origin: *"); class Index extends Api {} 2、app/admin/config.php //允许跨域的域名,多个以,分隔 'cors_request_domain' => 'localhost 阅读全文
posted @ 2022-12-08 16:55 cmooc 阅读(282) 评论(0) 推荐(0) 编辑
摘要: 1、类文件 <?php namespace app\admin\controller; use think\Cache; /** * 阿里云短信验证码发送类 * @author Administrator * */ class Sample { // 保存错误信息 public $error; // 阅读全文
posted @ 2022-12-08 16:46 cmooc 阅读(78) 评论(0) 推荐(0) 编辑
摘要: //1.类中定义静态方法 class FtpService{ /** * 请求外网 * @param $url 外网接口url * @param bool $params 参数,拼接字符串 post请求可以为数组 * @param int $ispost 是否是post请求 * @return ar 阅读全文
posted @ 2022-12-08 15:52 cmooc 阅读(347) 评论(0) 推荐(0) 编辑
摘要: GET // 1. 创建一个xmlhttpRequest对象 var xmlhttp = null; var res; if (window.XMLHttpRequest) { xmlhttp = new XMLHttpRequest(); } else if (window.ActiveXObje 阅读全文
posted @ 2022-12-07 13:03 cmooc 阅读(72) 评论(0) 推荐(0) 编辑
摘要: vue 状态类展示使用红绿圆点通常对于一些在线、离线类的展示使用图标展示比使用文字描述会更加清晰直观。项目中使用的代码如下: HTML <el-table-column prop="status" label="状态" width="70%" > <template slot-scope="scop 阅读全文
posted @ 2022-11-23 15:09 cmooc 阅读(639) 评论(0) 推荐(0) 编辑
摘要: resetFields是用于针对整个表单的 Form Methods(整个表单) resetField 是针对表单项的 Form-Item Methods(表单的某一个项) this.$refs['elFormRef'].resetFields(); 阅读全文
posted @ 2022-11-18 17:00 cmooc 阅读(334) 评论(0) 推荐(0) 编辑
摘要: 1、安装 npm install print-js --save 2、引用 import print from 'print-js' 3、编写打印函数 const enterDialog = async () => { const style = '@page {margin:0mm 10mm};' 阅读全文
posted @ 2022-11-18 16:22 cmooc 阅读(2714) 评论(0) 推荐(0) 编辑