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
| (function(vc){
| vc.extends({
| data:{
| searchStaffInfo:{
| staffs:[],
| _currentStaffName:'',
| }
| },
| _initMethod:function(){
|
| },
| _initEvent:function(){
| vc.on('searchStaff','openSearchStaffModel',function(_param){
| console.log("打开定位员工界面")
| $('#searchStaffModel').modal('show');
| vc.component._loadAllStaffInfo(1,10);
| });
| },
| methods:{
| _loadAllStaffInfo:function(_page,_rows,_staffName){
| var param = {
| params:{
| page:_page,
| rows:_rows,
| staffName:_staffName
| }
| };
|
| //发送get请求
| vc.http.get('searchStaff',
| 'listStaff',
| param,
| function(json){
| var _staffInfo = JSON.parse(json);
| vc.component.searchStaffInfo.staffs = _staffInfo.datas;
| },function(){
| console.log('请求失败处理');
| }
| );
| },
| chooseStaff:function(_staff){
| vc.emit('privilegeStaffInfo','chooseStaff',_staff);
| $('#searchStaffModel').modal('hide');
| },
| searchStaffs:function(){
| vc.component._loadAllStaffInfo(1,10,vc.component.searchStaffInfo._currentStaffName);
| }
| }
|
| });
| })(window.vc);
|
|