摘要: public class PosSaleReportDataShopComparer: IEqualityComparer<PosSaleReportData> { private double dayDiff=365; public PosSaleReportDataShopComparer(do 阅读全文
posted @ 2022-09-29 15:28 龙7龙 阅读(71) 评论(0) 推荐(0) 编辑
摘要: .gitignore文件通用规则 C# [Dd]ebug/[Dd]ebugPublic/[Rr]elease/[Rr]eleases/x64/x86/bld/[Bb]in/[Oo]bj/[Ll]og/ 阅读全文
posted @ 2022-06-29 14:52 龙7龙 阅读(392) 评论(0) 推荐(0) 编辑
摘要: Sub xixixixi() Dim dDate As DocumentProperty Dim wb As Workbook Dim str As String For i = 1 To 2 str = Sheet1.Cells(i, 3) Set wb = GetObject(ThisWorkb 阅读全文
posted @ 2020-07-24 15:07 龙7龙 阅读(1027) 评论(0) 推荐(0) 编辑
摘要: 配置域名: config-index.js- dev{ host:****} 设置IP访问:package.json-scripts-dev: --host 0.0.0.0 加在--line前面 阅读全文
posted @ 2020-05-14 13:07 龙7龙 阅读(113) 评论(0) 推荐(0) 编辑
摘要: layui的一些模块可以弄成全局,外部的事件就可以调用 layui.use(['table'],function(){ table = layui.table }) input 框加 autocomplete="off"可以关闭自动提示,用layui时间选择控件的时候会有冲突; 很多地方不是按所想的 阅读全文
posted @ 2019-09-29 16:49 龙7龙 阅读(138) 评论(0) 推荐(0) 编辑
摘要: Application["name"] = name; Application.Lock(); string name = Application["name"].ToString(); Application.UnLock(); HttpContext.Current.Session["name" 阅读全文
posted @ 2019-09-26 11:34 龙7龙 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 字体阴影 text-shadow:1px 1px 2px #666666; 左右偏移 上下偏移 模糊尺寸 颜色 字体省略号: overflow :hidden white-space: nowrap text-overflow: ellipsis 父级元素要设置overflow:hidden或者mi 阅读全文
posted @ 2019-08-13 11:58 龙7龙 阅读(124) 评论(0) 推荐(0) 编辑
摘要: @using RatuoX.Common@using RatuoX.Core@using XCode@{ ViewBag.Title = "网站地图"; Layout = "~/Views/Shared/_SitemapLayout.cshtml"; string url = Utils.GetSe 阅读全文
posted @ 2019-07-15 19:01 龙7龙 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 存表情的字段要用utf8mb4_general_ci排序规则 --mysql 清空表(ID重置) truncate table 表名 --mssql mysql(没试过) 存储过程中用in匹配多个条件,要用FIND_IN_SET(列名,匹配字段) 例子:select * from 表名 where  阅读全文
posted @ 2019-07-12 10:41 龙7龙 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 后台代码 前端 顺便记录一下网上查的修改excel的格式 文本:vnd.ms-excel.numberformat:@ 日期:vnd.ms-excel.numberformat:yyyy/mm/dd 数字:vnd.ms-excel.numberformat:#,##0.00 货币:vnd.ms-ex 阅读全文
posted @ 2019-06-14 17:19 龙7龙 阅读(158) 评论(0) 推荐(0) 编辑