丰富demo示例(初始多表格),以使更有代表性

Signed-off-by: 刘继东 <wwwliujidong@163.com>
pull/446/head
刘继东 2023-03-29 01:28:05 +00:00 committed by Gitee
parent f67600df28
commit 681ba11e89
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 11 additions and 2 deletions

View File

@ -50,6 +50,9 @@
<li>
用户名称:<input type="text" name="userName"/>
</li>
新增测试条件:<input type="text" name="userName2"/>
</li>
<li>
<li>
<a class="btn btn-primary btn-rounded btn-sm" onclick="$.table.search('form2', 'bootstrap-table2')"><i class="fa fa-search"></i>&nbsp;搜索</a>
<a class="btn btn-warning btn-rounded btn-sm" onclick="$.form.reset('form2', 'bootstrap-table2')"><i class="fa fa-refresh"></i>&nbsp;重置</a>
@ -137,11 +140,17 @@
actions.push('<a class="btn btn-danger btn-xs" href="###" onclick="$.operate.remove(\'' + row.userId + '\')"><i class="fa fa-remove"></i>删除</a>');
return actions.join('');
}
}]
}],
onClickRow: function(row,$element){
subList(row.userName);
}
};
$.table.init(options);
});
function subList(value){
$("#form2 input").val(value);
$.table.search('form2', 'bootstrap-table2')
}
$(function() {
var options = {