摘要:
问题描述:父页面抽屉引用子页面,子页面的a-modal框被遮住 解决办法是降低父页面的层级,提高子页面的层级,父页面:z-index="99",子页面:z-index="100" 阅读全文
摘要:
1.接口传值是list类型,代码如下 <foreach item="id" collection="array" open="(" separator="," close=")"> #{id} </foreach> 2.接口传值是hashmap类型并且包含类型,代码如下 <foreach item= 阅读全文
摘要:
判断一个时间加30天是否比当前时间大,代码如下: //repTaskResult.getStartDate() 2024-6-1 //new Date() 2024-6-5 Calendar calendar=Calendar.getInstance(); calendar.setTime(repT 阅读全文
摘要:
由于业务需求,需要把身份证一部分隐藏掉,首先判断是不是身份证号,正则如下: String regex = "^(\\d{15}$|^\\d{18}$|^\\d{17}(\\d|X|x)$)"; 替换中间需要隐藏问题 String regex = "^(\\d{15}$|^\\d{18}$|^\\d{ 阅读全文
摘要:
<span @click="showModal(item)" :title="item.title" style="color:#4040f3;"> <span v-if="item.isTop!=null&&item.isTop==1" style="color:red;"> <b>[顶]</b> 阅读全文
摘要:
Vue项目中遇到如下报错 Duplicate keys detected: ''. This may cause an update error. Vue官网: v-for的默认行为会尝试原地修改元素而不是移动它们。要强制其重新排序元素,你需要用特殊attribute key 来提供一个排序提示 也 阅读全文
摘要:
a-upload 隐藏删除图标和功能,添加属性 :show-upload-list="{showPreviewIcon:false,showRemoveIcon:false}" <a-upload :multiple="true" :file-list="dataFileList" :show-up 阅读全文
摘要:
回显:报’id’ does not exist in the tree 解决办法如下: setTimeout(() => { this.checkedKeys=checkedDatas }, 500); 阅读全文
摘要:
遇见a-date-picker控件回显,不操作再保存报错问题,后台是date类型会报下面这个错误 Field error in object 'notice' on field 'endTime': rejected value [2024-05-31T07:32:24.000+00:00]; co 阅读全文
摘要:
拼接方法 var checkedValues[] var test =checkedValues.join(',') 字符串分解方法 var tempstr=str.split(',') 阅读全文