wuxw
2019-10-03 f2f5556b656ed4b9b5f16ff507aa0c3c83526e9e
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
(function(vc,vm){
 
    vc.extends({
        data:{
            editOwnerRepairInfo:{
                repairId:'',
                repairType:'',
                repairName:'',
                tel:'',
                roomId:'',
                roomName:'',
                appointmentTime:'',
                context:'',
 
            }
        },
         _initMethod:function(){
               vc.component._initEditOwnerRepairInfo();
         },
         _initEvent:function(){
             vc.on('editOwnerRepair','openEditOwnerRepairModal',function(_params){
                vc.component.refreshEditOwnerRepairInfo();
                $('#editOwnerRepairModel').modal('show');
                vc.copyObject(_params, vc.component.editOwnerRepairInfo );
                vc.component.editOwnerRepairInfo.communityId = vc.getCurrentCommunity().communityId;
            });
        },
        methods:{
            editOwnerRepairValidate:function(){
                        return vc.validate.validate({
                            editOwnerRepairInfo:vc.component.editOwnerRepairInfo
                        },{
                            'editOwnerRepairInfo.repairType':[
                        {
                            limit:"required",
                            param:"",
                            errInfo:"报修类型不能为空"
                        },
                        {
                            limit:"maxin",
                            param:"2,50",
                            errInfo:"报修类型错误"
                        },
                    ],
                        'editOwnerRepairInfo.repairName':[
                        {
                            limit:"required",
                            param:"",
                            errInfo:"报修人不能为空"
                        },
 {
                            limit:"maxin",
                            param:"2,50",
                            errInfo:"报修人名称必须在2至50字符之间"
                        },
                    ],
'editOwnerRepairInfo.tel':[
{
                            limit:"required",
                            param:"",
                            errInfo:"联系方式不能为空"
                        },
 {
                            limit:"phone",
                            param:"",
                            errInfo:"联系方式格式不正确"
                        },
                    ],
'editOwnerRepairInfo.roomId':[
{
                            limit:"required",
                            param:"",
                            errInfo:"房屋ID不能为空"
                        },
 {
                            limit:"num",
                            param:"",
                            errInfo:"房屋ID错误"
                        },
                    ],
'editOwnerRepairInfo.appointmentTime':[
{
                            limit:"required",
                            param:"",
                            errInfo:"预约时间不能为空"
                        },
 {
                            limit:"dateTime",
                            param:"",
                            errInfo:"预约时间格式错误"
                        },
                    ],
'editOwnerRepairInfo.context':[
{
                            limit:"required",
                            param:"",
                            errInfo:"报修内容不能为空"
                        },
 {
                            limit:"maxLength",
                            param:"2000",
                            errInfo:"报修内容不能超过2000"
                        },
                    ],
'editOwnerRepairInfo.repairId':[
{
                            limit:"required",
                            param:"",
                            errInfo:"报修ID不能为空"
                        }]
 
                        });
             },
            editOwnerRepair:function(){
                if(!vc.component.editOwnerRepairValidate()){
                    vc.message(vc.validate.errInfo);
                    return ;
                }
                vc.component.editOwnerRepairInfo.communityId = vc.getCurrentCommunity().communityId;
 
                vc.http.post(
                    'editOwnerRepair',
                    'update',
                    JSON.stringify(vc.component.editOwnerRepairInfo),
                    {
                        emulateJSON:true
                     },
                     function(json,res){
                        //vm.menus = vm.refreshMenuActive(JSON.parse(json),0);
                        if(res.status == 200){
                            //关闭model
                            $('#editOwnerRepairModel').modal('hide');
                             vc.emit('ownerRepairManage','listOwnerRepair',{});
                            return ;
                        }
                        vc.message(json);
                     },
                     function(errInfo,error){
                        console.log('请求失败处理');
 
                        vc.message(errInfo);
                     });
            },
            refreshEditOwnerRepairInfo:function(){
                vc.component.editOwnerRepairInfo= {
                  repairId:'',
                    repairType:'',
                    repairName:'',
                    tel:'',
                    roomId:'',
                    appointmentTime:'',
                    context:'',
 
                }
            },
            _initEditOwnerRepairInfo:function(){
                    //vc.component.editOwnerRepairInfo.startTime = vc.dateFormat(new Date().getTime());
                     $('.editAppointmentTime').datetimepicker({
                        language: 'zh-CN',
                        format: 'yyyy-mm-dd HH:ii:ss',
                        initTime: true,
                        initialDate: new Date(),
                        autoClose: 1,
                        todayBtn: true
 
                    });
                    $('.editAppointmentTime').datetimepicker()
                        .on('changeDate', function (ev) {
                            var value = $(".editAppointmentTime").val();
                            vc.component.editOwnerRepairInfo.appointmentTime = value;
                    });
 
            }
        }
    });
 
})(window.vc,window.vc.component);