血翼残飞

导航

2020年8月20日 #

cmd 安装jar命令

摘要: mvn install:install-file -Dfile=commons-httpclient-3.1.jar -DgroupId=commons-httpclient -DartifactId=commons-httpclient -Dversion=3.1 -Dpackaging=jar 阅读全文

posted @ 2020-08-20 10:22 血翼残飞 阅读(307) 评论(0) 推荐(0)

2020年7月31日 #

vue中@change函数传自定义参数

摘要: @change="changeFunc($event,'自定义参数')" 阅读全文

posted @ 2020-07-31 14:44 血翼残飞 阅读(6149) 评论(0) 推荐(0)

vue column设置字段状态

摘要: { title: '报名审核状态', align: 'center', dataIndex: 'auditStatus', customRender: function (text) { if (text == 0) { return "未审核"; } else if (text == 1) { r 阅读全文

posted @ 2020-07-31 14:43 血翼残飞 阅读(3504) 评论(0) 推荐(0)

2020年7月17日 #

将数据集合按某个字段分组,分别导出excel

摘要: Map<String, List<Map<String, Object>>> listGroupMao = listGroup(list,"QXDMKDDM"); String[] headers = new String[]{"区县代码", "区县名称", "考点代码", "考点简称", "考试时 阅读全文

posted @ 2020-07-17 13:10 血翼残飞 阅读(993) 评论(0) 推荐(0)

2020年7月10日 #

http超链接获取图片转base64字符串,把base64字符串保存为本地文件,及读取base64文件

摘要: package org.jeecg.common.util; import sun.misc.BASE64Decoder; import sun.misc.BASE64Encoder; import java.io.*; import java.net.HttpURLConnection; impo 阅读全文

posted @ 2020-07-10 15:56 血翼残飞 阅读(2571) 评论(0) 推荐(0)

2020年6月9日 #

idea 中编写修改的代码不小心丢失找回

摘要: 找到节点还原 阅读全文

posted @ 2020-06-09 08:59 血翼残飞 阅读(1262) 评论(0) 推荐(0)

mysql 删除某字段重复数据并保留id最小的数据

摘要: delete from table where order_no in (select orderno from (select order_no as orderno from table group by order_no having count(order_no) > 1) a) and i 阅读全文

posted @ 2020-06-09 08:54 血翼残飞 阅读(378) 评论(0) 推荐(0)

2020年5月27日 #

ant design vue 表格纵向动态合并单元格

摘要: js const temp = {} // 当前重复的值,支持多列 const mergeCellKey = (text, array, columns) => { let i = 0 if (text !== temp[columns]) { temp[columns] = text array. 阅读全文

posted @ 2020-05-27 10:41 血翼残飞 阅读(6165) 评论(3) 推荐(0)

2020年5月20日 #

Java 判断图片色彩

摘要: package cardshibie; import java.awt.image.BufferedImage; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java 阅读全文

posted @ 2020-05-20 09:00 血翼残飞 阅读(2222) 评论(0) 推荐(0)

2020年5月12日 #

vue Ant Design of Vue 行编辑表格

摘要: <template> <a-table :columns="columns" :data-source="data" bordered> <template v-for="col in ['name', 'age', 'address']" :slot="col" slot-scope="text, 阅读全文

posted @ 2020-05-12 18:51 血翼残飞 阅读(3439) 评论(0) 推荐(0)