Constants部分常量添加final修饰

master
RuoYi 6 years ago committed by Limy
parent 4c5d5c2dd4
commit 1f0a37a65e

@ -48,7 +48,7 @@ public class CommonController
{ {
if (!FileUtils.isValidFilename(fileName)) if (!FileUtils.isValidFilename(fileName))
{ {
throw new Exception(StringUtils.format(" 文件名称({})非法,不允许下载。 ", fileName)); throw new Exception(StringUtils.format("文件名称({})非法,不允许下载。 ", fileName));
} }
String realFileName = System.currentTimeMillis() + fileName.substring(fileName.indexOf("_") + 1); String realFileName = System.currentTimeMillis() + fileName.substring(fileName.indexOf("_") + 1);
String filePath = Global.getDownloadPath() + fileName; String filePath = Global.getDownloadPath() + fileName;

@ -1085,7 +1085,6 @@
notAllowLastLevel: function(_tree) { notAllowLastLevel: function(_tree) {
var nodes = _tree.getSelectedNodes(); var nodes = _tree.getSelectedNodes();
for (var i = 0; i < nodes.length; i++) { for (var i = 0; i < nodes.length; i++) {
//if (nodes[i].level == nodes.length + 1)判断是否是最后层级节点该条件判定四级组织结构时失效如下只需判定选择的节点isParent == false即可 modify by weidu 2019-04-10
if (!nodes[i].isParent) { if (!nodes[i].isParent) {
$.modal.msgError("不能选择最后层级节点(" + nodes[i].name + ""); $.modal.msgError("不能选择最后层级节点(" + nodes[i].name + "");
return false; return false;

@ -40,25 +40,25 @@ public class Constants
/** /**
* *
*/ */
public static String AUTO_REOMVE_PRE = "true"; public static final String AUTO_REOMVE_PRE = "true";
/** /**
* *
*/ */
public static String PAGE_NUM = "pageNum"; public static final String PAGE_NUM = "pageNum";
/** /**
* *
*/ */
public static String PAGE_SIZE = "pageSize"; public static final String PAGE_SIZE = "pageSize";
/** /**
* *
*/ */
public static String ORDER_BY_COLUMN = "orderByColumn"; public static final String ORDER_BY_COLUMN = "orderByColumn";
/** /**
* "desc" "asc". * "desc" "asc".
*/ */
public static String IS_ASC = "isAsc"; public static final String IS_ASC = "isAsc";
} }

Loading…
Cancel
Save