public static Boolean is18Card(String idCard18) { //证件省份 HashMap<String, String> aCity = new HashMap<>(); aCity.put("11","北京"); aCity.put("12","天津"); Read More
posted @ 2023-02-22 16:20 Li_ll Views(21) Comments(0) Diggs(0) Edit
<vxe-table @cell-click="handleClickCell" :span-method="spanMethods" //自动合并单元格 :data="tableData2"> </vxe-table> spanMethods({row, $rowIndex, column, da Read More
posted @ 2022-11-01 11:15 Li_ll Views(1880) Comments(0) Diggs(0) Edit
getBeforeDate(n) {//传入天数 var n = n; var d = new Date(); var year = d.getFullYear(); var mon = d.getMonth() + 1; var day = d.getDate(); if (Number(mon) Read More
posted @ 2022-08-06 16:29 Li_ll Views(141) Comments(0) Diggs(0) Edit
getLastMonth(date) { var now = new Date(date) var year = now.getFullYear(); var month = now.getMonth() + 1; var day = now.getDate(); var nowMonthDay = Read More
posted @ 2022-07-20 09:19 Li_ll Views(365) Comments(0) Diggs(0) Edit
Map<String,Object> pbclwhMainMap = (Map<String,Object>)param.get("pbclwhMain"); PbclwhVo pbclwhVo=new PbclwhVo(); BeanUtil.fillBeanWithMap(pbclwhMainM Read More
posted @ 2022-07-05 15:20 Li_ll Views(972) Comments(0) Diggs(0) Edit
1. input 代码 ,我们项目组的input封装了,不过不影响使用 通过 @keyup 事件绑定show方法,需要将当前行的信息以及index传递,方便操作 另外要单独给这些需要操作的输入框添加class,方便后面获取 <el-table-column className="mycell" mi Read More
posted @ 2022-07-04 17:09 Li_ll Views(604) Comments(0) Diggs(0) Edit
子 async update(res){ //this.$refs.child.animates(); this.userform = res; }, 主 <DetailEdit @detailData="func" ref="dadjCKDASYXXEdit" :addType="resultTy Read More
posted @ 2022-07-01 18:03 Li_ll Views(131) Comments(0) Diggs(0) Edit
package com.hopedove.processserver.util; /** * 字符串格式化 * * @author ruoyi */ public class StrFormatter { public static final String EMPTY_JSON = "{}"; p Read More
posted @ 2022-06-13 09:51 Li_ll Views(90) Comments(0) Diggs(0) Edit
package com.hopedove.processserver.util; import java.util.*; /** * 字符串工具类 * * @author ruoyi */ public class StringUtils extends org.apache.commons.lan Read More
posted @ 2022-06-13 09:50 Li_ll Views(9) Comments(0) Diggs(0) Edit
package com.hopedove.processserver.util; import org.apache.commons.lang3.time.DateFormatUtils; import java.lang.management.ManagementFactory; import j Read More
posted @ 2022-06-13 09:49 Li_ll Views(76) Comments(0) Diggs(0) Edit