|
@@ -32,6 +32,11 @@
|
|
|
<el-input-number v-model="state.ruleForm.missedCallCount" :min="1" :precision="0" class="w100" />
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
+ <el-col :xs="24" :sm="12" :md="12" :lg="8" :xl="6">
|
|
|
+ <el-form-item label="是否开启未办超期修改为未超期" prop="isUpdateExpiredTime" :rules="[{ required: true, message: '请选择是否开启未办超期修改为未超期', trigger: 'change' }]">
|
|
|
+ <el-switch v-model="state.ruleForm.isUpdateExpiredTime" inline-prompt active-text="是" inactive-text="否" />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
<el-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24">
|
|
|
<el-form-item>
|
|
|
<el-button type="primary" @click="onSubmit(ruleFormRef)" :loading="state.loading"> 保 存 </el-button>
|
|
@@ -52,7 +57,14 @@ import { editDataShareConfig, getDataShareConfig } from '@/api/dataShare';
|
|
|
// 定义变量内容
|
|
|
const state = reactive<any>({
|
|
|
loading: false, //加载状态
|
|
|
- ruleForm: {},
|
|
|
+ ruleForm: {
|
|
|
+ crntSeatNum: 0, // 在线服务代表数
|
|
|
+ crntTelNum: 0, // 通话服务代表数
|
|
|
+ seatNum: 0, // 坐席数量
|
|
|
+ seatHwyNum: 0, // 坐席话务员数
|
|
|
+ missedCallCount: 0, // 未接通通话记录记录最多上传条数
|
|
|
+ isUpdateExpiredTime:false
|
|
|
+ },
|
|
|
});
|
|
|
/** 获取用户列表 */
|
|
|
const getConfig = () => {
|