113 lines
2.9 KiB
Vue
113 lines
2.9 KiB
Vue
<template>
|
|
<div class="detail-popup">
|
|
<popup ref="popupRef" title="安全规范详情" :async="true" width="550px" @close="handleClose" @confirm="handleClose">
|
|
<el-descriptions :column="1" border>
|
|
<el-descriptions-item label="组织名称" label-align="left" align="left" label-class-name="my-label">
|
|
{{ formData.org_name }}
|
|
</el-descriptions-item>
|
|
<el-descriptions-item label="部门名称" label-align="left" align="left" label-class-name="my-label">
|
|
{{ formData.dept_name }}
|
|
</el-descriptions-item>
|
|
<el-descriptions-item label="规范类别" label-align="left" align="left" label-class-name="my-label">
|
|
{{ formData.type }}
|
|
</el-descriptions-item>
|
|
<el-descriptions-item label="发布部门" label-align="left" align="left" label-class-name="my-label">
|
|
{{ formData.publish_dep }}
|
|
</el-descriptions-item>
|
|
<el-descriptions-item label="内容" label-align="left" align="left" label-class-name="my-label">
|
|
{{ formData.content }}
|
|
</el-descriptions-item>
|
|
<el-descriptions-item label="附件" label-align="left" align="left" label-class-name="my-label">
|
|
|
|
<annexLink :annex="formData.file"></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 formDataannex = reactive([])
|
|
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>
|