本文分类:news发布日期:2024/12/26 12:22:50
相关文章
uniapp-自定义navigationBar
封装导航栏自定义组件 创建 nav-bar.vue
<script setup>import {onReady} from dcloudio/uni-appimport {ref} from vue;const propsdefineProps([navBackgroundColor])const statusBarHeight ref()const navHeight ref()onReady(() > {uni.getSystemInfo({success…
建站知识
2024/12/13 7:04:18
部署 harbor 创建私有项目
一在 Docker harbor 节点(192.168.11.)上操作
1 关闭防火墙防护 systemctl stop firewalld.service
systemctl disable firewalld.service
setenforce 0
2 安装docker
yum install -y yum-utils device-mapper-persistent-data lvm2
yum-config-ma…
建站知识
2024/12/11 4:53:50
JetLinks物联网平台在windows 7搭建(前后端)部署教程
近期对接TCP、modbusTCP等自定义解析,做了很多万能解析的方法,却都不遂人意,而一直在用的ThingsBoard不能直接对接TCP透传(企业版除外),需要在外围做一些自定义解析,然后转json再mqtt上传,感觉来说比较麻烦…
建站知识
2024/11/22 3:49:14
Anti Desgin Vue 实现 表格可编辑、新增、删除功能
1、效果图 新增: 删除: 修改: 代码:
<template><div><button click"add">添加</button><span style"margin-left: 8px"><template v-if"hasSelected">{…
建站知识
2024/11/22 4:09:14
代码随想录-Day16
104. 二叉树的最大深度
方法一:深度优先搜索
class Solution {public int maxDepth(TreeNode root) {if (root null) {return 0;} else {int leftHeight maxDepth(root.left);int rightHeight maxDepth(root.right);return Math.max(leftHeight, rightHeight) …
建站知识
2024/11/25 5:30:48
通过python读取并发送二进制文件到串口
代码
#!python.exe
"""
filename send_bin.py
brief According to the users input, read bin file, subpackage and send the file by UART.
HowToUse send_bin.py -h
author shadowThreeDgmail.com
data 20220224
&q…
建站知识
2024/12/23 17:33:09