Преглед изворни кода

自定义结束接待时间范围限制

newStyle
douzhuo пре 2 година
родитељ
комит
fb5beb2de5
2 измењених фајлова са 13 додато и 3 уклоњено
  1. +11
    -1
      src/views/building/index.vue
  2. +2
    -2
      vue.config.js

+ 11
- 1
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


+ 2
- 2
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 = {


Loading…
Откажи
Сачувај