diff --git a/src/views/building/index.vue b/src/views/building/index.vue index 9e753a4..d0bfdab 100644 --- a/src/views/building/index.vue +++ b/src/views/building/index.vue @@ -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 diff --git a/vue.config.js b/vue.config.js index 33e6862..24cc19c 100644 --- a/vue.config.js +++ b/vue.config.js @@ -6,11 +6,11 @@ // const url = 'http://192.168.31.149:9999' // 胜浩 // const url = 'http://127.0.0.1:9999' // 本地 -const url = 'http://81.70.55.170:9999' // 测试服务器 +// const url = 'http://81.70.55.170:9999' // 测试服务器 // const url = 'http://62.234.122.43:9999' //正式服务器1 // const url = 'http://82.156.35.22:9999' // 正式服务器2 -// const url = 'https://zanyong.hfju.com' // 正式域名 +const url = 'https://zanyong.hfju.com' // 正式域名 const CompressionWebpackPlugin = require('compression-webpack-plugin') const productionGzipExtensions = ['js', 'css'] module.exports = {