164 lines
4.5 KiB
Vue
Raw Normal View History

<template>
<div class="detail-popup">
<popup ref="popupRef" title="客户跟进记录详情" :async="true" width="80%" @confirm="handleSubmit" @close="handleClose">
<el-form ref="formRef" :model="formData" label-width="120px">
<el-card class="mb-2">
<el-row>
<el-col :span="12">
<el-form-item label="主题">
{{ formData.name }}
</el-form-item>
</el-col>
2024-01-04 11:36:48 +08:00
<el-col :span="12">
<el-form-item label="客户名称" prop="notes">
{{ formData.custom_name
}}
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="联系人">
{{ formData.contacts }}
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="日期">
{{ formData.date }}
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="类型">
<dict-value :options="dictData.follow_type" :value="formData.types" />
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="执行人">
2024-01-04 11:36:48 +08:00
{{ formData.executor }}
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="行动描述" prop="email">
{{ formData.description }}
</el-form-item>
</el-col>
<el-col :span="12">
<el-form-item label="位置" prop="notes">
{{ formData.coordinate }}
</el-form-item>
</el-col>
2024-01-04 11:36:48 +08:00
<el-col :span="12">
<el-form-item label="下次回访日期" prop="notes">
{{ formData.next_follow_date }}
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item label="下次回访日期" prop="notes">
<material-picker v-model="formData.annex" />
</el-form-item>
</el-col>
</el-row>
</el-card>
</el-form>
</popup>
</div>
</template>
<script lang="ts" setup name="customdetail">
import type { FormInstance } from 'element-plus'
import Popup from '@/components/popup/index.vue'
import { apiCustomDetail } from '@/api/custom'
import { timeFormat } from '@/utils/util'
import type { PropType } from 'vue'
defineProps({
dictData: {
type: Object as PropType<Record<string, any[]>>,
default: () => ({})
}
})
const emit = defineEmits(['success', 'close'])
const formRef = shallowRef<FormInstance>()
const popupRef = shallowRef<InstanceType<typeof Popup>>()
const datas = reactive({
provinceOptions: [],
cityOptions: [],
areaOptions: [],
});
// 表单数据
const formData = reactive({
2024-01-04 11:36:48 +08:00
})
// 获取详情
const setFormData = async (data: Record<any, any>) => {
2024-01-04 11:36:48 +08:00
// for (const key in formData) {
// if (data[key] != null && data[key] != undefined) {
// //@ts-ignore
// formData[key] = data[key]
2024-01-04 11:36:48 +08:00
// }
2024-01-04 11:36:48 +08:00
// }
2024-01-04 11:36:48 +08:00
Object.assign(formData, data)
}
const getDetail = async (row: Record<string, any>) => {
const data = await apiCustomDetail({
id: row.id
})
setFormData(data)
}
// 提交按钮
const handleSubmit = async () => {
popupRef.value?.close()
}
//打开弹窗
const open = () => {
console.log('1111111')
popupRef.value?.open()
}
// 关闭回调
const handleClose = () => {
emit('close')
}
defineExpose({
open,
setFormData,
getDetail
})
</script>
<style lang="scss">
.tit {
font-size: 1.2em;
margin-bottom: 10px;
}
</style>