|
|
@@ -55,6 +55,29 @@
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
+ <el-form-item label="回调ip白名单配置" prop="legalIPs">
|
|
|
+ <el-input
|
|
|
+ v-model="form40.legalIPs"
|
|
|
+ style="width:800px"
|
|
|
+ type="textarea"
|
|
|
+ :autosize="{ minRows: 2, maxRows: 6}"
|
|
|
+ placeholder="多个IP用逗号或换行分隔"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="线路呼入回调地址" prop="inboundCallbackUrl">
|
|
|
+ <el-input
|
|
|
+ v-model="form40.inboundCallbackUrl"
|
|
|
+ style="width:800px"
|
|
|
+ placeholder="例如: https://销售后台域名/company/xxx/inboundCallback"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="Ai外呼回调地址" prop="callbackUrl">
|
|
|
+ <el-input
|
|
|
+ v-model="form40.callbackUrl"
|
|
|
+ style="width:800px"
|
|
|
+ placeholder="例如: https://销售后台域名/company/companyVoiceRobotic/callerResult4EasyCall"
|
|
|
+ />
|
|
|
+ </el-form-item>
|
|
|
|
|
|
<div style="display: flex; justify-content: flex-end;">
|
|
|
<el-button type="primary" :disabled="saveLoading" :loading="saveLoading" @click="submitForm40">提 交</el-button>
|
|
|
@@ -83,6 +106,9 @@ export default {
|
|
|
modelName: null,
|
|
|
enableGateWayLimit: false,
|
|
|
showGatewayIds: null,
|
|
|
+ legalIPs: null,
|
|
|
+ inboundCallbackUrl: null,
|
|
|
+ callbackUrl: null,
|
|
|
},
|
|
|
saveLoading: false,
|
|
|
}
|