1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
| function view(id) {
| window.location.href = "/tssw/dbInfo/edit?id="+id;
| }
|
| function searchByAccount() {
| window.location.href = "/tssw/dbInfo/list?account="+$("#account").val();
| }
|
| function add() {
| window.location.href = "/tssw/dbInfo/edit";
| }
|
| function del(id) {
| if(confirm('你确定要删除吗?同时也将删除数据源对应的数据表')) {
| window.location.href = "/tssw/dbInfo/del?id=" + id;
| }
| }
|
| function cancel(){
| history.back();
| }
|
|