摘要: 阅读全文
posted @ 2021-02-01 16:21 yy0403 阅读(82) 评论(0) 推荐(0) 编辑
摘要: 打开JeecgListMixin.js文件,修改 阅读全文
posted @ 2021-01-25 09:26 yy0403 阅读(1392) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/zagwk/p/14015102.html 阅读全文
posted @ 2020-11-23 17:52 yy0403 阅读(67) 评论(0) 推荐(0) 编辑
摘要: String str = "abcd,12,3/4"; 1、从第3位开始截取字符串 str = str.substring(3); 输出结果:d,12,3/4 2、从第一个逗号开始截取字符串 str = str.substring(str.indexOf(",")+1); 输出结果:12,3/4 3 阅读全文
posted @ 2020-11-23 17:49 yy0403 阅读(1719) 评论(0) 推荐(0) 编辑
摘要: 导航栏的样式在 src/components/tools/setting.js 文件内导航栏默认样式都在 src/defaultSettings.js 文件内 阅读全文
posted @ 2020-11-07 14:56 yy0403 阅读(2983) 评论(0) 推荐(0) 编辑
摘要: 1、打开 src/views/user/Login.vue 文件 注释掉以下代码 2、在 src/views/user/Login.vue 页面 找到 登陆按钮所调用的方法 handleSubmit() 注释掉验证码模块 3、打开后端代码 org/jeecg/modules/system/contr 阅读全文
posted @ 2020-11-07 14:52 yy0403 阅读(4480) 评论(0) 推荐(1) 编辑
摘要: String str = xxx; 1、判断一个字符串是否为空,首先就要确保他不是null,然后再判断他的长度。 if(str != null && str.length() != 0) { } 2、isEmpty完全等同于string.length()==0 if(string ==null || 阅读全文
posted @ 2020-09-25 18:22 yy0403 阅读(2114) 评论(0) 推荐(0) 编辑