e 自定义表单不显示 输入值
需要设置默认值 ` let formData = {}; this.formColumns.forEach(col => { if (col.columnType === 'checkbox') { formData[col.columnCode] = []; } else { formData[col.columnCode] = null;…
armbian安装 1panel
https://1panel.cn/ 1.安装 bash -c "$(curl -sSL https://resource.fit2cloud.com/1panel/package/v2/quick_start.sh)" 命令 1pctl update 修改面板信息 Usage: 1panel update [command] …
armbian各版本区别
参考 https://github.com/ophub/amlogic-s9xxx-armbian/issues/1473 镜像的代号。armbian有2个系列,一个是ubuntu系列的,一个是debian系列的。 ubuntu系列有2个,jammy是2022年发布的,lunar是2023年发布的。 debian系列有2个,bullseye是202…
Armbian固定IP
参考:https://blog.5625.cn/index.php/archives/51/ 版本:Armbian_25.08.0_rockchip_wxy-oect_bookworm_6.12.40_server_2025.08.01 找到 netplan 配置文件 ls /etc/netplan/ sudo cp /etc/netplan/&l…
OECT安装pve踩坑
参考: https://masuc.cn/46113.html https://docs.pxvirt.lierfang.com/zh/installfromdebian.html 1.添加key curl https://mirrors.apqa.cn/proxmox/debian/pveport.gpg -o /etc/apt/trusted.…
RustDesk部署 非docker版
下载服务端的包 wget https://github.com/rustdesk/rustdesk-server/releases/download/1.1.11-1/rustdesk-server-linux-amd64.zip 然后解压 unzip rustdesk-server-linux-amd64.zip mv amd64/ rustde…
npm编译 vue devtools
参考:https://blog.csdn.net/weixin_44315181/article/details/131580858 1.下载地址 github地址:https://github.com/vuejs/devtools/tree/v6.5.0 2.编译 1)npm版本是8.5.0(npm -v查看npm版本) 2)安装Vue-Devt…
npm源管理器nrm
什么是nrm nrm 是一个 npm 源管理器,允许你快速地在 npm 源间切换。 安装nrm npm install -g nrm 1 使用 查看可选的源 nrm ls 1 切换 如果要切换到taobao源,执行命令 nrm use taobao 1 测试速度 nrm test
java通用返回实体类
public class ResponseData<T> { private boolean success; private String message; private T data; public ResponseData(boolean success, String message, T data) { this.succe…
docker的nginx配置过程
启动 docker run -d --name nginx --privileged -p 8000:8000 -p 8091:8091 \ -v /docker/nginx/html/ruoyi-ui:/usr/share/nginx/html/ruoyi-ui \ -v /docker/nginx/html/samr-ui:/usr/share…