2025年3月7日
摘要:
一、拼接List对象里某个属性的值 1 List<WxMpUser> wxMpUserlist =wxMpUserMapper.getWxMpUserList(saleOrder.getOrgId()); 2 //拼接字符串 3 String openIds=wxMpUserlist.stream(
阅读全文
posted @ 2025-03-07 14:20
SiegHeil
阅读(19)
推荐(0)
2023年11月1日
摘要:
现在gitee上新增了一个develop-v1.0.0 分支,新增的需求基于分支develop-v1.0.0 开发,需要把master分支切换到该分支,代码提交到该分支。 步骤一: 步骤二:查看分支 输入:git branch --remote 如果远程仓库新建了分支,但是本地查询不到。 使用语句
阅读全文
posted @ 2023-11-01 10:45
SiegHeil
阅读(479)
推荐(0)
2023年9月27日
摘要:
//判断选中的项是否有不相同的模型 const hasNameProperty = _this.selectedOrderList.filter(order => order.hasOwnProperty("item_model_id")); if (hasNameProperty.length >
阅读全文
posted @ 2023-09-27 15:23
SiegHeil
阅读(567)
推荐(0)
2023年9月19日
摘要:
//数组不去重 _this.incompleteData.map(e => e.order_id).join(',') //数组去重var order_ids = _this.incompleteData.map(e => e.order_id).removeRepeat().join(',');
阅读全文
posted @ 2023-09-19 15:01
SiegHeil
阅读(5)
推荐(0)
2023年9月15日
摘要:
IWorkbook workbook = new XSSFWorkbook(); IFont bodyCellFont = workbook.CreateFont(); bodyCellFont.FontName = "宋体"; bodyCellFont.FontHeightInPoints = 1
阅读全文
posted @ 2023-09-15 11:25
SiegHeil
阅读(138)
推荐(0)
2023年8月14日
posted @ 2023-08-14 11:55
SiegHeil
阅读(41)
推荐(0)
2023年6月6日
摘要:
需求:从数据库中随机获取一段话,一张图片,把两者合成一张图片。 HTML代码: <div style="width:30%;float:left;"> <canvas id="canvas"></canvas> </div> Js代码: 1 imgAddTextToImage(imagePath,
阅读全文
posted @ 2023-06-06 17:06
SiegHeil
阅读(280)
推荐(0)
2023年3月15日
摘要:
<el-form-item label="工序"> <el-autocomplete placeholder="" ref="el_auto" v-model="searchForm.processName" class="inline-input" :fetch-suggestions="quer
阅读全文
posted @ 2023-03-15 11:44
SiegHeil
阅读(470)
推荐(0)
2023年2月19日
摘要:
1 cmd管理员启动,输入命令,查询所有服务sc queryex type=service state=all 2、删除指定的服务 sc delete 自动关闭电脑 ·
阅读全文
posted @ 2023-02-19 13:31
SiegHeil
阅读(171)
推荐(0)
2022年12月8日
摘要:
<Table :columns="columns" :no-data-text="L('NoDatas')" border :data="list" :row-class-name="rowName" @on-row-click="selectChange"> </Table> JS: rowNam
阅读全文
posted @ 2022-12-08 10:30
SiegHeil
阅读(523)
推荐(0)