工作流 工作流简介 工作流(Workflow): 工作流就是通过计算机技术对业务流程进行自动化管理。实现多个参与者按照预定的流程去自动执行业务流程。 定义: 通过计算机对业务流程自动化执行管理 主要解决的是: 使在多个参与者之间按照某种预定义的规则自动进行传递文档,信息或任务的过程.从而实现某个预期 ...
分类:
其他好文 时间:
2021-06-02 12:55:42
阅读次数:
0
目标 安全 稳定 廉价 快速 容灾 扩展 服务器 基础数据 腾讯云 2核 8GB 5Mbps 安全组配置 开放80、443,允许全部ip访问 开放22、6443,开放当前ip访问 环境 # 卸载firewalld,由安全组统一管理端口 sudo dnf remove firewalld # 关闭交换 ...
分类:
其他好文 时间:
2021-06-02 12:19:37
阅读次数:
0
讨论部分代码: # Q1: Jacket Weather? def wears_jacket_with_if(temp, raining): """ >>> wears_jacket_with_if(90, False) False >>> wears_jacket_with_if(40, Fals ...
分类:
其他好文 时间:
2021-06-02 12:09:33
阅读次数:
0
从目前找到的资料来看,这个模拟不能起到所有的作用,主要体现在键盘的有一些事件不能完整的体现 出来 先做个记录吧。 //这个就是用来输入字科符的 var inpEle=document.getElementById("stockCode"); var st ='000001' var evt = ne ...
分类:
Web程序 时间:
2021-06-02 12:08:21
阅读次数:
0
You have n boxes. You are given a binary string boxes of length n, where boxes[i] is '0' if the ith box is empty, and '1' if it contains one ball. In ...
分类:
其他好文 时间:
2021-06-02 10:37:12
阅读次数:
0
装饰者模式: 在不改变原有对象的基础上,将功能附加到对象上 /** * 装饰者模式 */ public class decoratorTest { public static void main(String[] args) { Component component = new ConcreteD ...
分类:
其他好文 时间:
2021-05-24 17:01:12
阅读次数:
0
一、方法一 安装1:npm i postcss-px2rem --save -dev 安装2:npm i lib-flexible --save 配置1:入口文件main.js中引入:import 'lib-flexible' 配置2: 在vue.config.js添加以下代码(没有则自己在项目根目 ...
分类:
移动开发 时间:
2021-05-24 14:09:12
阅读次数:
0
querySelector() 返回匹配指定选择器的第一个元素。 querySelectorAll() 返回所有的节点元素 语法document.querySelector(CSS selectors) getElementsByTagName() //返回的是所有的节点,是一个类数组对象 getE ...
分类:
Web程序 时间:
2021-05-24 13:50:49
阅读次数:
0
概况 启动不带参数线程的方法 启动带参数线程的方法 线程更新UI 线程锁同步共享数据 启动不带参数线程的方法 第一种快速启动 1 2 3 4 Thread t = new Thread(()=>{ //下面写一些在线程中处理的方法 }); t.Start(); 第二种启动方法 1 2 3 4 5 6 ...
分类:
编程语言 时间:
2021-05-24 10:51:20
阅读次数:
0
Nginx 下载与安装 Nginx 下载地址:http://nginx.org/en/download.html 选择windows版本,我使用的是 nginx/Windows-1.18.0 这个版本 下载完成后, 直接解压缩 将Nginx 添加到服务中去 下载工具 winsw: http://re ...