File tree Expand file tree Collapse file tree 5 files changed +10
-7
lines changed Expand file tree Collapse file tree 5 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 43
43
transition : all 3s ;
44
44
}
45
45
.main {
46
- position : absolute ;
46
+ // position: absolute;
47
47
width : 100% ;
48
48
height : 100% ;
49
49
.unlock-con {
Original file line number Diff line number Diff line change 76
76
this .getpage ();
77
77
}
78
78
async getpage(){
79
- let where= Util .buildFilters (this .filters );
79
+ let where= Util .buildFilters (this .filters );// TODO@personball fix this sql injection
80
80
let pagerequest= new PageRequest ();
81
81
pagerequest .maxResultCount = this .pageSize ;
82
82
pagerequest .skipCount = (this .currentPage - 1 )* this .pageSize ;
Original file line number Diff line number Diff line change 89
89
this .getpage ();
90
90
}
91
91
async getpage(){
92
- let where= Util .buildFilters (this .filters );
92
+ let where= Util .buildFilters (this .filters );// TODO@personball fix this sql injection
93
93
let pagerequest= new PageRequest ();
94
94
pagerequest .maxResultCount = this .pageSize ;
95
95
pagerequest .skipCount = (this .currentPage - 1 )* this .pageSize ;
Original file line number Diff line number Diff line change 95
95
this .getpage ();
96
96
}
97
97
async getpage(){
98
- let where= Util .buildFilters (this .filters );
98
+ let where= Util .buildFilters (this .filters );// TODO@personball fix this sql injection
99
99
let pagerequest= new PageRequest ();
100
100
pagerequest .maxResultCount = this .pageSize ;
101
101
pagerequest .skipCount = (this .currentPage - 1 )* this .pageSize ;
Original file line number Diff line number Diff line change @@ -5,11 +5,14 @@ module.exports = {
5
5
return {
6
6
plugins :[
7
7
new CopyWebpackPlugin ( [ {
8
- from :'node_modules/@aspnet/signalr/dist/browser/signalr.min.js'
8
+ from :'node_modules/@aspnet/signalr/dist/browser/signalr.min.js' ,
9
+ to :'dist'
9
10
} , {
10
- from :'node_modules/abp-web-resources/Abp/Framework/scripts/libs/abp.signalr-client.js'
11
+ from :'node_modules/abp-web-resources/Abp/Framework/scripts/libs/abp.signalr-client.js' ,
12
+ to :'dist'
11
13
} , {
12
- from :'src/lib/abp.js'
14
+ from :'src/lib/abp.js' ,
15
+ to :'dist'
13
16
} ] )
14
17
]
15
18
}
You can’t perform that action at this time.
0 commit comments