摘要: function formatToTwoDecimals(value) { if (value '' || value null) return ''; let num = parseFloat(value); if (isNaN(num)) return ''; return num.toFixe 阅读全文
posted @ 2025-10-22 09:12 许我半夏 阅读(7) 评论(0) 推荐(0)
摘要: 看板娘(2025.06.30) 方法一 <html> <head> <meta charset="utf-8"> <title>看板娘</title> </head> <body> <script src="https://cdn.jsdelivr.net/npm/live2d-widget@3.0.4/lib/L2Dwidget 阅读全文
posted @ 2025-06-30 10:14 许我半夏 阅读(26) 评论(0) 推荐(0)
摘要: 1.查询端口 netstat -ano | findstr :8080 2.清理端口 taskkill /PID 19128 /F 阅读全文
posted @ 2025-06-10 10:52 许我半夏 阅读(74) 评论(0) 推荐(0)
摘要: 建立主子表(请点击) -- -- 客户表 -- drop table if exists sys_customer; create table sys_customer ( customer_id bigint(20) not null auto_increment comment '客户id', 阅读全文
posted @ 2025-06-09 14:51 许我半夏 阅读(67) 评论(0) 推荐(0)
摘要: <tr> <td rowspan="2" style="padding: 40px" >校准结果 </td> <td colspan="2">标准实际值(kg)</td> <td colspan="2" class="formDataTableLeft" > <el-input v-model="f 阅读全文
posted @ 2025-06-09 14:26 许我半夏 阅读(18) 评论(0) 推荐(0)
摘要: 添加入口 <el-col :xs="24" :sm="12" :md="8" :lg="6" :xl="6" > <el-form-item label="使用部门" prop="deptId" > <el-tree-select v-model="queryParams.deptId" :data 阅读全文
posted @ 2025-06-09 09:54 许我半夏 阅读(27) 评论(0) 推荐(0)