吴学文
2019-06-05 465b1e79e6585e8c76e3f9f743b8645b976b0085
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
(function(vc){
 
    vc.extends({
        data:{
            addStaffInfo:{
                username:'',
                email:'',
                tel:'',
                sex:'',
                address:'',
                errorInfo:''
            }
        },
         _initMethod:function(){
 
         },
         _initEvent:function(){
 
        },
        methods:{
            addStaffValidate(){
                return vc.validate.validate({
                    addStaffInfo:vc.component.addStaffInfo
                },{
                    'addStaffInfo.username':[
                        {
                            limit:"required",
                            param:"",
                            errInfo:"用户名不能为空"
                        },
                        {
                            limit:"maxin",
                            param:"2,10",
                            errInfo:"用户名长度必须在2位至10位"
                        },
                    ],
                    'addStaffInfo.email':[
                        {
                            limit:"required",
                            param:"",
                            errInfo:"密码不能为空"
                        },
                        {
                            limit:"email",
                            param:"",
                            errInfo:"不是有效的邮箱"
                        },
                    ],
                    'addStaffInfo.tel':[
                        {
                            limit:"required",
                            param:"",
                            errInfo:"手机号不能为空"
                        },
                        {
                            limit:"phone",
                            param:"",
                            errInfo:"不是有效的手机号"
                        }
                    ],
                    'addStaffInfo.sex':[
                        {
                            limit:"required",
                            param:"",
                            errInfo:"性别不能为空"
                        }
                    ],
                    'addStaffInfo.address':[
                        {
                            limit:"required",
                            param:"",
                            errInfo:"地址不能为空"
                        },
                        {
                            limit:"maxLength",
                            param:"200",
                            errInfo:"地址长度不能超过200位"
                        },
                    ]
 
                });
            },
            saveStaffInfo:function(){
                if(!vc.component.addStaffValidate()){
                    vc.component.addStaffInfo.errorInfo = vc.validate.errInfo;
                    return ;
                }
 
                vc.component.addStaffInfo.errorInfo = "";
                vc.http.post(
                    'addStaff',
                    'saveStaff',
                    JSON.stringify(vc.component.addStaffInfo),
                    {
                        emulateJSON:true
                     },
                     function(json,res){
                        //vm.menus = vm.refreshMenuActive(JSON.parse(json),0);
                        if(res.status == 200){
                            //关闭model
                            $('#addStaffModel').modal('hide');
                            vc.component.clearAddStaffInfo();
                            vc.component.$emit('addStaff_reload_event',{});
                            return ;
                        }
                        vc.component.addStaffInfo.errorInfo = json;
                     },
                     function(errInfo,error){
                        console.log('请求失败处理');
 
                        vc.component.addStaffInfo.errorInfo = errInfo;
                     });
            },
            clearAddStaffInfo:function(){
                vc.component.addStaffInfo = {
                                            username:'',
                                            email:'',
                                            tel:'',
                                            sex:'',
                                            address:'',
                                            errorInfo:''
                                        };
            }
        }
    });
 
})(window.vc);