166 lines
5.0 KiB
Vue
166 lines
5.0 KiB
Vue
<template>
|
|
<div class="detail-popup">
|
|
<popup ref="popupRef" title="项目更近记录详情" :async="true" width="80%" @confirm="handleSubmit" @close="handleClose">
|
|
|
|
<el-descriptions :column="2" border>
|
|
<el-descriptions-item label="客户名称" label-align="left" align="left" label-class-name="my-label">{{
|
|
formData.custom_name }}</el-descriptions-item>
|
|
<el-descriptions-item label="项目名称" label-align="left" align="left" label-class-name="my-label"> {{
|
|
formData.project_name }}</el-descriptions-item>
|
|
<el-descriptions-item label="项目编码" label-align="left" align="left" label-class-name="my-label"> {{
|
|
formData.project_code }}</el-descriptions-item>
|
|
<el-descriptions-item label="执行人" label-align="left" align="left" label-class-name="my-label">
|
|
{{ formData.executor }}
|
|
</el-descriptions-item>
|
|
<el-descriptions-item label="联系人" label-align="left" align="left" label-class-name="my-label"> {{
|
|
formData.contacts
|
|
}}</el-descriptions-item>
|
|
<el-descriptions-item label="联系方式" label-align="left" align="left" label-class-name="my-label"> {{
|
|
formData.contact_information
|
|
|
|
}}</el-descriptions-item>
|
|
|
|
<el-descriptions-item label="项目角色" label-align="left" align="left" label-class-name="my-label"> {{
|
|
formData.project_role
|
|
|
|
|
|
}}</el-descriptions-item>
|
|
|
|
<el-descriptions-item label="职位" label-align="left" align="left" label-class-name="my-label"> {{
|
|
formData.position
|
|
|
|
}}</el-descriptions-item>
|
|
<el-descriptions-item label="日期" label-align="left" align="left" label-class-name="my-label"> {{
|
|
formData.follow_date
|
|
|
|
}}</el-descriptions-item>
|
|
|
|
<el-descriptions-item label="主题" label-align="left" align="left" label-class-name="my-label"> {{
|
|
formData.theme
|
|
|
|
}}</el-descriptions-item>
|
|
<el-descriptions-item label="行动描述" label-align="left" align="left" label-class-name="my-label"> {{
|
|
formData.action_description
|
|
|
|
|
|
}}</el-descriptions-item>
|
|
<el-descriptions-item label="项目把握度" label-align="left" align="left" label-class-name="my-label"> {{
|
|
formData.project_assurance_text
|
|
|
|
|
|
}}</el-descriptions-item>
|
|
<el-descriptions-item label="状态" label-align="left" align="left" label-class-name="my-label"> {{
|
|
formData.follow_status_text
|
|
|
|
|
|
}}</el-descriptions-item>
|
|
|
|
<el-descriptions-item label="阶段" label-align="left" align="left" label-class-name="my-label"> {{
|
|
formData.follow_stage_text
|
|
|
|
|
|
}}</el-descriptions-item>
|
|
<el-descriptions-item label="备注" label-align="left" align="left" label-class-name="my-label"> {{
|
|
formData.notes
|
|
|
|
}}</el-descriptions-item><el-descriptions-item label="下次回访日期" label-align="left" align="left"
|
|
label-class-name="my-label"> {{ formData.next_follow_up_date
|
|
|
|
}}</el-descriptions-item>
|
|
<el-descriptions-item label="附件" label-align="left" align="left" label-class-name="my-label">
|
|
<annexLink :annex="formData.annex"></annexLink>
|
|
</el-descriptions-item>
|
|
</el-descriptions>
|
|
|
|
</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({
|
|
|
|
})
|
|
|
|
|
|
|
|
// 获取详情
|
|
const setFormData = async (data: Record<any, any>) => {
|
|
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 = () => {
|
|
popupRef.value?.open()
|
|
}
|
|
|
|
// 关闭回调
|
|
const handleClose = () => {
|
|
emit('close')
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
defineExpose({
|
|
open,
|
|
setFormData,
|
|
getDetail
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.tit {
|
|
font-size: 1.2em;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
:deep(.my-label) {
|
|
width: 150px;
|
|
}
|
|
</style>
|