未验证 提交 e963603d 编写于 作者: JEECG低代码平台's avatar JEECG低代码平台 提交者: GitHub

Merge pull request #1336 from wcdsdy/master

修复路由传参的值传送到jinput框被前后各截取了一位
......@@ -56,7 +56,10 @@
let text = this.value
switch (this.type) {
case JINPUT_QUERY_LIKE:
text = text.substring(1,text.length-1);
//修复路由传参的值传送到jinput框被前后各截取了一位
if(text.indexOf("*") != -1){
text = text.substring(1,text.length-1);
}
break;
case JINPUT_QUERY_NE:
text = text.substring(1);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册