Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
RuoYi Vue
Commits
19eaad01
Commit
19eaad01
authored
Dec 23, 2022
by
RuoYi
Browse files
v3最新版本不需要render-after-expand
parent
565cbb8c
Changes
2
Hide whitespace changes
Inline
Side-by-side
ruoyi-common/src/main/java/com/ruoyi/common/filter/XssHttpServletRequestWrapper.java
View file @
19eaad01
...
...
@@ -34,13 +34,13 @@ public class XssHttpServletRequestWrapper extends HttpServletRequestWrapper
if
(
values
!=
null
)
{
int
length
=
values
.
length
;
String
[]
escap
s
eValues
=
new
String
[
length
];
String
[]
escape
s
Values
=
new
String
[
length
];
for
(
int
i
=
0
;
i
<
length
;
i
++)
{
// 防xss攻击和过滤前后空格
escap
s
eValues
[
i
]
=
EscapeUtil
.
clean
(
values
[
i
]).
trim
();
escape
s
Values
[
i
]
=
EscapeUtil
.
clean
(
values
[
i
]).
trim
();
}
return
escap
s
eValues
;
return
escape
s
Values
;
}
return
super
.
getParameterValues
(
name
);
}
...
...
ruoyi-generator/src/main/resources/vm/vue/v3/index-tree.vue.vm
View file @
19eaad01
...
...
@@ -166,7 +166,6 @@
value-key=
"
${
treeCode
}
"
placeholder=
"请选择
${
comment
}
"
check-strictly
:render-after-expand=
"false"
/>
</el-form-item>
#
elseif
($
column
.
htmlType
==
"input"
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment