摘要: 用postman调用接口上传文件流 1、accessToken 2、报文 阅读全文
posted @ 2025-08-27 10:42 中国结 阅读(13) 评论(0) 推荐(0)
摘要: vol框架页面全屏的实现方法 1、目标页面:/views/test/test.vue <template> <div>hello</div> </template> 2、添加路由:/router/index.js { path: '/test', name: 'test', component: ( 阅读全文
posted @ 2025-07-23 00:07 中国结 阅读(52) 评论(0) 推荐(0)
摘要: vol框架旧版本输入框实时更新数据的bug处理 1、找到文件:src\components\basic\VolForm.vue 搜索【keypress】 <el-input :size="size" clearable :ref="item.field" :input-style="item.inp 阅读全文
posted @ 2025-07-18 14:48 中国结 阅读(28) 评论(0) 推荐(0)
摘要: Electron-Vite环境搭建 1、视频资料 小鹿线前端 (7视频)https://www.bilibili.com/video/BV1X2ZcYCEgt?spm_id_from=333.788.videopod.episodes&vd_source=74966c5fb87bf4d74d890b 阅读全文
posted @ 2025-07-09 09:21 中国结 阅读(29) 评论(0) 推荐(0)
摘要: Python常用(日期、字符串等)小方法 1、日期转换 #21号之后的改为下月1号 if int(bizDate.split("-")[2])>=21: year=int(bizDate.split("-")[0]) month=int(bizDate.split("-")[1]) if month 阅读全文
posted @ 2025-06-17 14:33 中国结 阅读(8) 评论(0) 推荐(0)
摘要: Python二维数组常用方法汇总 1、字段类型转换 #将数量、金额等字符串转换为数字 floatcolumns = {16,25} # 需要转换为float的列索引 for row in listSource: for i in floatcolumns: # 确保数量是数值类型 try: row[ 阅读全文
posted @ 2025-06-16 16:27 中国结 阅读(16) 评论(0) 推荐(0)
摘要: 一沙框架 前端请求后端数据的实现方法 1、前端页面 function myclick(event) { var realName = document.getElementById('realName').value; if (event.key "Enter") { console.log("kk 阅读全文
posted @ 2025-01-10 09:46 中国结 阅读(237) 评论(0) 推荐(0)
摘要: VOL框架 流程审批 驳回 拒绝 的处理(框架中未对拒绝做处理) 将路径\.Net6\VOL.Core\WorkFlow内的WorkFlowManager.cs中的CheckAuditStatus方法更新为如下代码 private static bool CheckAuditStatus(Sys_W 阅读全文
posted @ 2024-11-04 15:41 中国结 阅读(227) 评论(0) 推荐(0)
摘要: 将对象的属性为数值型的转换为String 1、新建一个类 //注意:此处为待转换的类型,return true 不好用,必须将待转换的类型一一列出 using Newtonsoft.Json; namespace WinFormsApp1.Common { public class ToString 阅读全文
posted @ 2024-09-27 08:52 中国结 阅读(30) 评论(0) 推荐(0)
摘要: 金蝶云星空企业版 审核反写插件 亮点:只需配置好参数,代码无需改动 using Kingdee.BOS.Core.DynamicForm.PlugIn; using Kingdee.BOS.Core.Metadata; using Kingdee.BOS.Orm.DataEntity; using 阅读全文
posted @ 2024-09-18 23:12 中国结 阅读(130) 评论(0) 推荐(0)