168 lines
4.4 KiB
Vue
168 lines
4.4 KiB
Vue
|
|
<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>
|
|
<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="row.types" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="执行人">
|
|
{{ formData.admin_id }}
|
|
</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>
|
|
<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({
|
|
id: '',
|
|
name: '',
|
|
custom_id: '',
|
|
custom_name: '',
|
|
contacts: '',
|
|
date: '',
|
|
types: '',
|
|
admin_id: '',
|
|
description: '',
|
|
annex: '',
|
|
coordinate: '',
|
|
next_follow_date: '',
|
|
status: '',
|
|
})
|
|
|
|
|
|
|
|
// 获取详情
|
|
const setFormData = async (data: Record<any, any>) => {
|
|
for (const key in formData) {
|
|
if (data[key] != null && data[key] != undefined) {
|
|
//@ts-ignore
|
|
formData[key] = data[key]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
console.log(formData, '2222222222')
|
|
|
|
|
|
}
|
|
|
|
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>
|