|
@@ -28,6 +28,7 @@ app.controller("sysconfigCtrl", ["$rootScope", "$scope", "$state", "$timeout", "
|
28
|
28
|
arr.systemConfiguration.push(a.incidentWithConsumable);//是否需要绑定耗材
|
29
|
29
|
arr.systemConfiguration.push(a.wxIncidentWithCmdb);//是否需要绑定资产
|
30
|
30
|
arr.systemConfiguration.push(a.ifWorking);//是否开通上下班
|
|
31
|
+ arr.systemConfiguration.push(a.ifRoom);//是否增加房间号选择
|
31
|
32
|
arr.systemConfiguration.push(a.requesterLgoinType);//保修人登录方式
|
32
|
33
|
arr.systemConfiguration.push(a.autoCloseIncidentHour);//自动关单小时
|
33
|
34
|
console.log(arr,99999);
|
|
@@ -115,6 +116,9 @@ app.controller("sysconfigCtrl", ["$rootScope", "$scope", "$state", "$timeout", "
|
115
|
116
|
if (v.keyconfig == 'ifWorking') {
|
116
|
117
|
a.ifWorking = v;//是否开通上下班
|
117
|
118
|
}
|
|
119
|
+ if (v.keyconfig == 'ifRoom') {
|
|
120
|
+ a.ifRoom = v;//是否增加房间号选择
|
|
121
|
+ }
|
118
|
122
|
if (v.keyconfig == 'requesterLgoinType') {
|
119
|
123
|
a.requesterLgoinType = v;//报修人登录方式
|
120
|
124
|
}
|