124 lines
3.0 KiB
Vue
124 lines
3.0 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.project_name }}
|
||
|
</el-form-item>
|
||
|
</el-col>
|
||
|
<el-col :span="12">
|
||
|
<el-form-item label="项目编码">
|
||
|
{{ formData.project_code }}
|
||
|
</el-form-item>
|
||
|
</el-col>
|
||
|
|
||
|
<el-col :span="12">
|
||
|
<el-form-item label="计划开始日期">
|
||
|
{{ formData.start_time }}
|
||
|
</el-form-item>
|
||
|
</el-col>
|
||
|
<el-col :span="12">
|
||
|
<el-form-item label="计划结束日期">
|
||
|
{{ formData.deliver_time }}
|
||
|
</el-form-item>
|
||
|
</el-col>
|
||
|
<el-col :span="12">
|
||
|
<el-form-item label="负责人">
|
||
|
{{ formData.project_manager_name }}
|
||
|
</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({
|
||
|
|
||
|
})
|
||
|
|
||
|
|
||
|
|
||
|
// 获取详情
|
||
|
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 = () => {
|
||
|
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>
|