1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
| (function(vc){
| vc.extends({
| data:{
| staffData:[],
|
| },
| _initMethod:function(){
| vc.component.loadData(1,10);
| },
| _initEvent:function(){
| vc.component.$on('pagination_page_event',function(_currentPage){
| vc.component.currentPage(_currentPage);
| });
| vc.component.$on('addStaff_reload_event',function(){
| vc.component.loadData(1,10);
| });
| vc.component.$on('editStaff_reload_event',function(){
| vc.component.loadData(1,10);
| });
| vc.component.$on('deleteStaff_reload_event',function(){
| vc.component.loadData(1,10);
| });
|
|
| },
| methods:{
| loadData:function(_page,_rows){
| var param = {
| params:{
| page:_page,
| rows:_rows
| }
| };
|
| //发送get请求
| vc.http.get('staff',
| 'loadData',
| param,
| function(json){
| var _staffInfo = JSON.parse(json);
| vc.component.staffData = _staffInfo.datas;
| vc.component.$emit('pagination_info_event',{
| total:_staffInfo.records,
| currentPage:_staffInfo.page
| });
|
| },function(){
| console.log('请求失败处理');
| }
| );
|
| },
| currentPage:function(_currentPage){
| vc.component.loadData(_currentPage,10);
| },
| openEditStaff:function(_staffInfo){
| vc.component.$emit('edit_staff_event',_staffInfo);
| },
| openDeleteStaff:function(_staffInfo){
| vc.component.$emit('delete_staff_event',_staffInfo);
| }
|
| }
|
|
| });
|
| })(window.vc);
|
|