|
|
@@ -656,7 +656,7 @@ export default { |
|
|
|
provinceId: "", //省id |
|
|
|
cityId: "", //市id |
|
|
|
agentId: localStorage.getItem("agentId"), |
|
|
|
closeTime: '', // 接待时长(自动结束) |
|
|
|
closeTime: '120', // 接待时长(自动结束) |
|
|
|
}, |
|
|
|
ruleForm1: {}, |
|
|
|
optionsagentId: [], |
|
|
@@ -933,6 +933,16 @@ export default { |
|
|
|
return; |
|
|
|
} |
|
|
|
this.loadingFlag = true; |
|
|
|
if (this.ruleForm.closeTime && this.ruleForm.closeTime < 30) { |
|
|
|
this.$message.error('自动结束接待时长限制最小为30分钟') |
|
|
|
this.loadingFlag = false; |
|
|
|
return |
|
|
|
} |
|
|
|
if (this.ruleForm.closeTime && this.ruleForm.closeTime > 720) { |
|
|
|
this.$message.error('自动结束接待时长限制最大为720分钟') |
|
|
|
this.loadingFlag = false; |
|
|
|
return |
|
|
|
} |
|
|
|
// 编辑 |
|
|
|
if (this.editFlag) { |
|
|
|
this.$api.api |
|
|
|