Files
ipms-sjy-ui/src/views/crm/contact/ContactForm.vue

311 lines
9.9 KiB
Vue
Raw Normal View History

2023-11-11 23:35:18 +08:00
<template>
<Dialog v-model="dialogVisible" :title="dialogTitle">
2023-11-27 20:33:53 +08:00
<el-form
ref="formRef"
v-loading="formLoading"
2023-11-27 20:33:53 +08:00
:model="formData"
:rules="formRules"
label-width="100px"
2023-11-27 20:33:53 +08:00
>
<el-row>
2023-11-26 21:54:50 +08:00
<el-col :span="12">
<el-form-item label="联系人姓名" prop="name">
<el-input v-model="formData.name" placeholder="请输入姓名" />
2023-11-26 21:54:50 +08:00
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="负责人" prop="ownerUserId">
2023-11-27 20:33:53 +08:00
<el-select
v-model="formData.ownerUserId"
:disabled="formType !== 'create'"
class="w-1/1"
2023-11-27 20:33:53 +08:00
>
<el-option
v-for="item in userOptions"
2023-11-27 20:33:53 +08:00
:key="item.id"
:label="item.nickname"
:value="item.id"
/>
2023-11-26 21:54:50 +08:00
</el-select>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="12">
<el-form-item label="客户名称" prop="customerId">
<el-select
:disabled="formData.customerDefault"
v-model="formData.customerId"
placeholder="请选择客户"
class="w-1/1"
>
2023-11-27 20:33:53 +08:00
<el-option
v-for="item in customerList"
:key="item.id"
:label="item.name"
:value="item.id"
/>
2023-11-26 21:54:50 +08:00
</el-select>
</el-form-item>
</el-col>
2024-01-03 23:30:29 +08:00
<el-col :span="12">
<el-form-item label="手机" prop="mobile">
<el-input v-model="formData.mobile" placeholder="请输入手机" />
2024-01-03 23:30:29 +08:00
</el-form-item>
</el-col>
2023-11-26 21:54:50 +08:00
</el-row>
<el-row>
<el-col :span="12">
<el-form-item label="电话" prop="telephone">
<el-input v-model="formData.telephone" placeholder="请输入电话" />
2023-11-26 21:54:50 +08:00
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="邮箱" prop="email">
<el-input v-model="formData.email" placeholder="请输入邮箱" />
2023-11-26 21:54:50 +08:00
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="12">
<el-form-item label="微信" prop="wechat">
<el-input v-model="formData.wechat" placeholder="请输入微信" />
2023-11-26 21:54:50 +08:00
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="QQ" prop="qq">
<el-input v-model="formData.qq" placeholder="请输入 QQ" />
2023-11-26 21:54:50 +08:00
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="12">
<el-form-item label="职位" prop="post">
<el-input v-model="formData.post" placeholder="请输入职位" />
2023-11-26 21:54:50 +08:00
</el-form-item>
</el-col>
2023-11-27 20:33:53 +08:00
<el-col :span="12">
<el-form-item label="关键决策人" prop="master" style="width: 400px">
<el-radio-group v-model="formData.master">
<el-radio
v-for="dict in getBoolDictOptions(DICT_TYPE.INFRA_BOOLEAN_STRING)"
:key="dict.value"
:value="dict.value"
>
{{ dict.label }}
</el-radio>
</el-radio-group>
2023-11-26 21:54:50 +08:00
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="12">
<el-form-item label="性别" prop="sex">
<el-select v-model="formData.sex" placeholder="请选择" class="w-1/1">
<el-option
v-for="dict in getIntDictOptions(DICT_TYPE.SYSTEM_USER_SEX)"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select>
2023-11-26 21:54:50 +08:00
</el-form-item>
2024-01-03 23:30:29 +08:00
</el-col>
2023-11-26 21:54:50 +08:00
<el-col :span="12">
<el-form-item label="直属上级" prop="parentId">
<el-select v-model="formData.parentId" placeholder="请选择直属上级" class="w-1/1">
2023-11-26 21:54:50 +08:00
<el-option
v-for="item in contactList"
2023-11-27 20:33:53 +08:00
:key="item.id"
:disabled="item.id == formData.id"
2023-11-27 20:33:53 +08:00
:label="item.name"
:value="item.id"
/>
2023-11-26 21:54:50 +08:00
</el-select>
</el-form-item>
</el-col>
</el-row>
<el-row>
2023-11-27 20:33:53 +08:00
<el-col :span="12">
<el-form-item label="地址" prop="areaId">
<el-cascader
v-model="formData.areaId"
:options="areaList"
:props="defaultProps"
class="w-1/1"
clearable
filterable
placeholder="请选择城市"
/>
2023-11-26 21:54:50 +08:00
</el-form-item>
2024-01-03 23:30:29 +08:00
</el-col>
<el-col :span="12">
<el-form-item label="详细地址" prop="detailAddress">
<el-input v-model="formData.detailAddress" placeholder="请输入详细地址" />
2023-11-26 21:54:50 +08:00
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="12">
<el-form-item label="下次联系时间" prop="contactNextTime">
<el-date-picker
v-model="formData.contactNextTime"
placeholder="选择下次联系时间"
type="datetime"
value-format="x"
/>
</el-form-item>
</el-col>
<el-col :span="12">
2024-01-03 23:30:29 +08:00
<el-form-item label="备注" prop="remark">
<el-input type="textarea" v-model="formData.remark" placeholder="请输入备注" />
2023-11-26 21:54:50 +08:00
</el-form-item>
</el-col>
</el-row>
2023-11-11 23:35:18 +08:00
</el-form>
<template #footer>
<el-button :disabled="formLoading" type="primary" @click="submitForm"> </el-button>
2023-11-11 23:35:18 +08:00
<el-button @click="dialogVisible = false"> </el-button>
</template>
</Dialog>
</template>
<script lang="ts" setup>
2023-11-11 23:35:18 +08:00
import * as ContactApi from '@/api/crm/contact'
import { DICT_TYPE, getBoolDictOptions, getIntDictOptions } from '@/utils/dict'
2023-11-11 23:35:18 +08:00
import * as UserApi from '@/api/system/user'
import * as CustomerApi from '@/api/crm/customer'
2023-11-26 21:54:50 +08:00
import * as AreaApi from '@/api/system/area'
import { defaultProps } from '@/utils/tree'
import { useUserStore } from '@/store/modules/user'
2023-11-11 23:35:18 +08:00
const { t } = useI18n() // 国际化
const message = useMessage() // 消息弹窗
2024-01-03 23:30:29 +08:00
2023-11-11 23:35:18 +08:00
const dialogVisible = ref(false) // 弹窗的是否展示
const dialogTitle = ref('') // 弹窗的标题
const formLoading = ref(false) // 表单的加载中1修改时的数据加载2提交的按钮禁用
const formType = ref('') // 表单的类型create - 新增update - 修改
2023-11-26 21:54:50 +08:00
const areaList = ref([]) // 地区列表
2023-11-11 23:35:18 +08:00
const formData = ref({
id: undefined,
name: undefined,
customerId: undefined,
2024-01-03 23:30:29 +08:00
contactNextTime: undefined,
ownerUserId: 0,
2023-11-11 23:35:18 +08:00
mobile: undefined,
telephone: undefined,
qq: undefined,
2023-11-26 21:54:50 +08:00
wechat: undefined,
email: undefined,
areaId: undefined,
detailAddress: undefined,
2023-11-11 23:35:18 +08:00
sex: undefined,
2023-11-26 21:54:50 +08:00
master: false,
post: undefined,
parentId: undefined,
remark: undefined,
businessId: undefined,
customerDefault: false
2023-11-11 23:35:18 +08:00
})
const formRules = reactive({
name: [{ required: true, message: '姓名不能为空', trigger: 'blur' }],
customerId: [{ required: true, message: '客户不能为空', trigger: 'blur' }],
ownerUserId: [{ required: true, message: '负责人不能为空', trigger: 'blur' }]
})
const formRef = ref() // 表单 Ref
const userOptions = ref<UserApi.UserVO[]>([]) // 用户列表
2023-11-26 21:54:50 +08:00
const customerList = ref<CustomerApi.CustomerVO[]>([]) // 客户列表
const contactList = ref<ContactApi.ContactVO[]>([]) // 联系人列表
2023-11-11 23:35:18 +08:00
/** 打开弹窗 */
const open = async (type: string, id?: number, customerId?: number, businessId?: number) => {
2023-11-11 23:35:18 +08:00
dialogVisible.value = true
dialogTitle.value = t('action.' + type)
formType.value = type
resetForm()
// 修改时,设置数据
if (id) {
formLoading.value = true
try {
formData.value = await ContactApi.getContact(id)
} finally {
formLoading.value = false
}
} else {
if (customerId) {
formData.value.customerId = customerId
formData.value.customerDefault = true // 默认客户的选择,不允许变
}
// 自动关联 businessId 商机编号
if (businessId) {
formData.value.businessId = businessId
}
2023-11-11 23:35:18 +08:00
}
// 获得联系人列表
contactList.value = await ContactApi.getSimpleContactList()
// 获得客户列表
customerList.value = await CustomerApi.getCustomerSimpleList()
// 获得地区列表
areaList.value = await AreaApi.getAreaTree()
// 获得用户列表
userOptions.value = await UserApi.getSimpleUserList()
// 默认新建时选中自己
if (formType.value === 'create') {
formData.value.ownerUserId = useUserStore().getUser.id
}
2023-11-11 23:35:18 +08:00
}
2023-11-18 21:08:00 +08:00
defineExpose({ open }) // 提供 open 方法,用于打开弹窗
2023-11-11 23:35:18 +08:00
/** 提交表单 */
const emit = defineEmits(['success']) // 定义 success 事件,用于操作成功后的回调
const submitForm = async () => {
// 校验表单
if (!formRef) return
const valid = await formRef.value.validate()
if (!valid) return
// 提交请求
formLoading.value = true
try {
const data = formData.value as unknown as ContactApi.ContactVO
if (formType.value === 'create') {
await ContactApi.createContact(data)
message.success(t('common.createSuccess'))
} else {
await ContactApi.updateContact(data)
message.success(t('common.updateSuccess'))
}
dialogVisible.value = false
// 发送操作成功的事件
emit('success')
} finally {
formLoading.value = false
}
}
/** 重置表单 */
const resetForm = () => {
formData.value = {
id: undefined,
name: undefined,
customerId: undefined,
2024-01-03 23:30:29 +08:00
contactNextTime: undefined,
ownerUserId: 0,
2023-11-11 23:35:18 +08:00
mobile: undefined,
telephone: undefined,
qq: undefined,
2023-11-26 21:54:50 +08:00
wechat: undefined,
email: undefined,
areaId: undefined,
detailAddress: undefined,
2023-11-11 23:35:18 +08:00
sex: undefined,
master: false,
post: undefined,
parentId: undefined,
remark: undefined,
businessId: undefined,
customerDefault: false
2023-11-11 23:35:18 +08:00
}
formRef.value?.resetFields()
}
</script>