提交
This commit is contained in:
@@ -1,18 +1,39 @@
|
||||
<template>
|
||||
<el-form :model="form" ref="formRef" label-width="auto">
|
||||
<el-form-item>
|
||||
<el-form-item v-if="getConfig('usePhoneConfig')">
|
||||
<template #label>
|
||||
<Tooltip message="请联系客服开通或关闭,客服电话:15955599959" />使用外呼
|
||||
<Tooltip
|
||||
v-if="getConfig('usePhoneConfig').remark"
|
||||
:message="getConfig('usePhoneConfig').remark"
|
||||
/>
|
||||
<span>使用外呼</span>
|
||||
</template>
|
||||
<el-radio-group v-model="form.callEnable" disabled>
|
||||
<el-radio :label="1"> 使用 </el-radio>
|
||||
<el-radio :label="0"> 不使用 </el-radio>
|
||||
<el-radio-group v-model="form.usePhoneConfig">
|
||||
<el-radio
|
||||
v-for="(item, index) in getConfig('usePhoneConfig').options"
|
||||
:key="index"
|
||||
:label="item.id"
|
||||
>
|
||||
{{ item.name }}
|
||||
</el-radio>
|
||||
</el-radio-group>
|
||||
</el-form-item>
|
||||
<el-form-item label="跟进信息">
|
||||
<el-radio-group v-model="form.followType">
|
||||
<el-radio :label="1"> 展示所有 </el-radio>
|
||||
<el-radio :label="2"> 仅展示本人 </el-radio>
|
||||
<el-form-item v-if="getConfig('showFollowConfig')">
|
||||
<template #label>
|
||||
<Tooltip
|
||||
v-if="getConfig('showFollowConfig').remark"
|
||||
:message="getConfig('showFollowConfig').remark"
|
||||
/>
|
||||
<span>跟进信息</span>
|
||||
</template>
|
||||
<el-radio-group v-model="form.showFollowConfig">
|
||||
<el-radio
|
||||
v-for="(item, index) in getConfig('showFollowConfig').options"
|
||||
:key="index"
|
||||
:label="item.id"
|
||||
>
|
||||
{{ item.name }}
|
||||
</el-radio>
|
||||
</el-radio-group>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
@@ -23,23 +44,42 @@
|
||||
</template>
|
||||
|
||||
<script setup name="BasicSettingClue">
|
||||
import * as ConfigApi from '@/api/system/set'
|
||||
|
||||
const message = useMessage()
|
||||
|
||||
const form = ref({
|
||||
followType: 1,
|
||||
callEnable: 1
|
||||
})
|
||||
const form = ref({})
|
||||
|
||||
const configList = ref([])
|
||||
|
||||
function getConfig(val) {
|
||||
return configList.value.find((it) => it.configKey == val)
|
||||
}
|
||||
|
||||
function getData() {
|
||||
form.value = {
|
||||
followType: 1,
|
||||
callEnable: 1
|
||||
}
|
||||
ConfigApi.getConfigList({ module: 100 }).then((data) => {
|
||||
configList.value = data
|
||||
// 获取所有配置项
|
||||
data.map((it) => {
|
||||
form.value[it.configKey] = it.configValue
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
function onSubmit() {
|
||||
message.success('保存成功')
|
||||
const params = configList.value.map((it) => ({
|
||||
configId: it.configId,
|
||||
configKey: it.configKey,
|
||||
configValue: form.value[it.configKey]
|
||||
}))
|
||||
ConfigApi.updateConfig(params).then(() => {
|
||||
message.success('保存成功')
|
||||
})
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
getData()
|
||||
})
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped></style>
|
||||
|
||||
Reference in New Issue
Block a user