|
|
@@ -86,12 +86,12 @@
|
|
86
|
86
|
</label>-->
|
|
87
|
87
|
</div>
|
|
88
|
88
|
</li>
|
|
89
|
|
- <li class="form-group">
|
|
|
89
|
+ <!--<li class="form-group">
|
|
90
|
90
|
<label for="greetingTitle" class="col-md-2">坐席组编号</label>
|
|
91
|
91
|
<div class="col-md-4">
|
|
92
|
92
|
<input id="GroupCode" class="form-control" type="text" autofocus="true" autocomplete="off" />
|
|
93
|
93
|
</div>
|
|
94
|
|
- </li>
|
|
|
94
|
+ </li>-->
|
|
95
|
95
|
<!--<li class="form-group">
|
|
96
|
96
|
<label for="greetingTimes" class="col-md-2"><b class="text_require">*</b>生效时间</label>
|
|
97
|
97
|
<div class="col-md-4 time-box">
|
|
|
@@ -133,7 +133,6 @@
|
|
133
|
133
|
$('#greetingSave').on('click',saveGreetingsContent);
|
|
134
|
134
|
|
|
135
|
135
|
});
|
|
136
|
|
-
|
|
137
|
136
|
//获取欢迎词信息
|
|
138
|
137
|
function getIVRWords(ids){
|
|
139
|
138
|
$.getJSON(huayi.config.callcenter_url + "IVRWords/GetInfo", {
|
|
|
@@ -184,7 +183,7 @@
|
|
184
|
183
|
id: greetingId, //主键ID
|
|
185
|
184
|
Title: $('#greetingTitle').val(),//标题
|
|
186
|
185
|
Content: $('#greetingContent').val(),//内容
|
|
187
|
|
- GroupCode:$('#GroupCode').val(),//坐席组编号
|
|
|
186
|
+ GroupCode:window.localStorage.getItem('F_SeartGroup'),//坐席组编号
|
|
188
|
187
|
IsState: $('#greetingStart').find('input[type="radio"]:checked').val(),//是否启动生效(0不启动,1启动)
|
|
189
|
188
|
StartDate: $('#greetingTimes').val() && $('#greetingTimes').val().split('~')[0],//生效时间
|
|
190
|
189
|
EndDate: $('#greetingTimes').val() && $('#greetingTimes').val().split('~')[1],//失效时间
|
|
|
@@ -207,7 +206,7 @@
|
|
207
|
206
|
id: greetingId, //主键ID
|
|
208
|
207
|
Title: $('#greetingTitle').val(),//标题
|
|
209
|
208
|
Content: $('#greetingContent').val(),//内容
|
|
210
|
|
- GroupCode:$('#GroupCode').val(),//坐席组编号
|
|
|
209
|
+ GroupCode:window.localStorage.getItem('F_SeartGroup'),//坐席组编号
|
|
211
|
210
|
IsState: $('#greetingStart').find('input[type="radio"]:checked').val(),//是否启动生效(0不启动,1启动)
|
|
212
|
211
|
StartDate: $('#greetingTimes').val() && $('#greetingTimes').val().split('~')[0],//生效时间
|
|
213
|
212
|
EndDate: $('#greetingTimes').val() && $('#greetingTimes').val().split('~')[1],//失效时间
|