请上传宽度大于 1200px,高度大于 164px 的封面图片
    调整图片尺寸与位置
    滚轮可以放大缩小图片尺寸,按住图片拖动可调整位置,多余的会自动被裁剪掉
取消
kisskings(uid:58304)
职业资格认证:FCA-FineReport
  • 对部署不懂,都是基于宝塔一键部署,Nginx配置文件如下:麻烦帮忙配置下WebSocket,谢谢!按照官方的设定方法保存不了配置文件,报错server {     listen 80;  listen 443 ssl http2;     server_name 192.168.1.108;     index index.php index.html index.htm default.php default.htm default.html;     root /www/wwwroot/WC;          #SSL-START SSL相关配置,请勿删除或修改下一行带注释的404规则     #error_page 404/404.html;     ssl_certificate    /www/server/panel/vhost/cert/WC/fullchain.pem;     ssl_certificate_key    /www/server/panel/vhost/cert/WC/privkey.pem;     ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3;     ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:HIGH:!aNULL:!MD5:!RC4:!DHE;     ssl_prefer_server_ciphers on;     ssl_session_cache shared:SSL:10m;     ssl_session_timeout 10m;     error_page 497  https://$host$request_uri;     #SSL-END          #ERROR-PAGE-START  错误页配置,可以注释、删除或修改     #error_page 404 /404.html;     #error_page 502 /502.html;     #ERROR-PAGE-END          #PHP-INFO-START  PHP引用配置,可以注释或修改     #TOMCAT-START     location /     {         proxy_pass "http://192.168.1.108:8080";         proxy_set_header Host 192.168.1.108;         proxy_set_header X-Forwarded-For $remote_addr;     }          location ~ .*\.(gif|jpg|jpeg|bmp|png|ico|txt|js|css)$     {         expires      12h;     }          location ~ .*\.war$     {         return 404;     }     #TOMCAT-END     include enable-php-74.conf;     #PHP-INFO-END          #REWRITE-START URL重写规则引用,修改后将导致面板设置的伪静态规则失效     include /www/server/panel/vhost/rewrite/WC.conf;     #REWRITE-END          #禁止访问的文件或目录     location ~ ^/(\.user.ini|\.htaccess|\.git|\.svn|\.project|LICENSE|README.md)     {         return 404;     }          #一键申请SSL证书验证目录相关设置     location ~ \.well-known{         allow all;     }          location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$     {         expires      30d;         error_log off;         access_log /dev/null;     }          location ~ .*\.(js|css)?$     {         expires      12h;         error_log off;         access_log /dev/null;      }     access_log  /www/wwwlogs/WC.log;     error_log  /www/wwwlogs/WC.error.log; }
  • 如何实现移动APP填报成功后将填报部分信息以文字形式分享至微信群?移动端APP可以实现吗?
  • 如何利用JS实现获取单元格值后复制到手机剪切板?如:点击按键控件后获取“A1”,然后复制到手机剪切板,谢谢!其实最终思路是将提报后的一些信息分享到微信群内,有写过相关的麻烦分享下,谢谢!
  • 如扫码获取一段字符:&我&是&字&符&串& 如何在SQL查询时拆分筛选 数据1=我 数据2=是 数据1=字 。。。。。。
  • 请问图中数据库查询为什么不能成功? 114599
  • 刚刚通过单选按钮组控件来控制参数区域其他控件的可见性,PC端可以实现,但是移动端不能实现,帮助文档中却显示支持,请问是我代码有问题还是本身不支持?var k = this.options.form.getWidgetByName("radioGroup0").getValue(); var a1= this.options.form.getWidgetByName("label0"); var a2= this.options.form.getWidgetByName("textEditor0");//新增工厂 var b1= this.options.form.getWidgetByName("label1"); var b2= this.options.form.getWidgetByName("textEditor1");//工厂代码 var c1= this.options.form.getWidgetByName("label2"); var c2= this.options.form.getWidgetByName("textEditor2");//新增客户 var d1= this.options.form.getWidgetByName("label3"); var d2= this.options.form.getWidgetByName("textEditor3");//客户代码 var e1= this.options.form.getWidgetByName("label4"); var e2= this.options.form.getWidgetByName("comboBox0");//工厂选择 var f1= this.options.form.getWidgetByName("label5"); var f2= this.options.form.getWidgetByName("comboBox1");//胶类选择 var g1= this.options.form.getWidgetByName("label6"); var g2= this.options.form.getWidgetByName("textEditor4");//胶厂名称 var a = this.options.form.getWidgetByName("textEditor0"); //新增工厂值 var b = this.options.form.getWidgetByName("textEditor1"); //工厂代码值 var c = this.options.form.getWidgetByName("textEditor2"); //新增客户值 var d = this.options.form.getWidgetByName("textEditor3"); //客户代码值 var e = this.options.form.getWidgetByName("comboBox0"); //工厂选择值 var f = this.options.form.getWidgetByName("comboBox1"); //胶类选择值 var g = this.options.form.getWidgetByName("textEditor4"); //胶厂名称值 if (1==1) { a.reset(); b.reset(); c.reset(); d.reset(); e.reset(); f.reset(); g.reset(); } if (k==1) { a1.setVisible(true) a2.setVisible(true) b1.setVisible(true) b2.setVisible(true) c1.setVisible(false) c2.setVisible(false) d1.setVisible(false) d2.setVisible(false) e1.setVisible(false) e2.setVisible(false) f1.setVisible(false) f2.setVisible(false) g1.setVisible(false) g2.setVisible(false) } else if (k==2) { a1.setVisible(false) a2.setVisible(false) b1.setVisible(false) b2.setVisible(false) c1.setVisible(true) c2.setVisible(true) d1.setVisible(true) d2.setVisible(true) e1.setVisible(false) e2.setVisible(false) f1.setVisible(false) f2.setVisible(false) g1.setVisible(false) g2.setVisible(false) } else if (k==3) { a1.setVisible(false) a2.setVisible(false) b1.setVisible(false) b2.setVisible(false) c1.setVisible(false) c2.setVisible(false) d1.setVisible(false) d2.setVisible(false) e1.setVisible(true) e2.setVisible(true) f1.setVisible(true) f2.setVisible(true) g1.setVisible(true) g2.setVisible(true) } else { a1.setVisible(false) a2.setVisible(false) b1.setVisible(false) b2.setVisible(false) c1.setVisible(false) c2.setVisible(false) d1.setVisible(false) d2.setVisible(false) e1.setVisible(false) e2.setVisible(false) f1.setVisible(false) f2.setVisible(false) g1.setVisible(false) g2.setVisible(false) }
  • 23338 23339 试过=today() =now() 都不起用,麻烦解答一下
  • 请问微信集成需要什么级别的公众号? 需要服务号、订阅号还是企业号? 最好提供集成教程,谢谢! PS:发帖扣F豆也太不人性化了吧!

8

9

8

10

没有更多
个人成就
内容被浏览23,321
加入社区9年239天
返回顶部