摘要: 参考链接 https://www.cnblogs.com/jpfss/p/9105119.html 阅读全文
posted @ 2020-05-15 14:53 Alex_Mercer 阅读(643) 评论(0) 推荐(0) 编辑
摘要: 参考地址 http://www.86y.org/art_detail.aspx?id=655 https://www.cnblogs.com/luckyting/articles/5821394.html https://ask.csdn.net/questions/768287 页面网格不显示调整 阅读全文
posted @ 2020-05-15 11:29 Alex_Mercer 阅读(2385) 评论(0) 推荐(0) 编辑
摘要: 参考地址 https://xuliangzhan_admin.gitee.io/vxe-table/#/table/tree/groupSummary Vxe官方文档 http://jsrun.net/KVWKp/edit 在线调试 样式我用的是打印A4样式,只要看grid数据和结构就行 <!DOC 阅读全文
posted @ 2020-05-15 11:20 Alex_Mercer 阅读(7263) 评论(0) 推荐(0) 编辑
摘要: 列名复制 DataTable temp = dt.Clone();//dt为原先的DataTable,temp得到dt的结构,但是没有数据 删除列 result.Columns.Remove("列名"); 排序 result.DefaultView.Sort = "哈哈 ASC";//根据排序,多个 阅读全文
posted @ 2020-05-15 10:01 Alex_Mercer 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 参考地址 https://www.cnblogs.com/mybk/p/10475170.html 1.获得实体的属性名称 foreach (PropertyInfo propertyInfo in typeof(实体).GetProperties()) { fields.Add(propertyI 阅读全文
posted @ 2020-05-15 10:00 Alex_Mercer 阅读(674) 评论(0) 推荐(0) 编辑
摘要: ``` /// /// 时间转换 毫秒级别的时间戳 /// /// /// public static string GetChinaTicks(DateTime dateTime) { //北京时间相差8小时 DateTime startTime ... 阅读全文
posted @ 2020-05-15 09:54 Alex_Mercer 阅读(6306) 评论(0) 推荐(0) 编辑
摘要: 1.了解钉钉审批流API接口的使用 "钉钉审批流API" 安装 RestSharp 包 2.建立请求和接受的Dto 3.创建调用钉钉审批流API的方法 需要获取钉钉的ACCESSTOken,看官网即可 4.使用例子 阅读全文
posted @ 2020-05-15 09:24 Alex_Mercer 阅读(2676) 评论(0) 推荐(1) 编辑