170 lines
4.5 KiB
Vue
170 lines
4.5 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="160px">
|
|
<el-card class="mb-2">
|
|
<el-row>
|
|
<el-col :span="12">
|
|
<el-form-item label="组织名称">
|
|
{{ formData.org_name }}
|
|
</el-form-item>
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="12">
|
|
<el-form-item label="部门名称">
|
|
{{ formData.dept_name
|
|
|
|
}}
|
|
</el-form-item>
|
|
</el-col>
|
|
|
|
<el-col :span="12">
|
|
<el-form-item label="规范名称">
|
|
{{ formData.name
|
|
}}
|
|
</el-form-item>
|
|
</el-col>
|
|
|
|
<el-col :span="12">
|
|
<el-form-item label="规范类别">
|
|
{{ formData.type
|
|
}}
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="发布部门">
|
|
{{ formData.publish_dep
|
|
|
|
}}
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="内容">
|
|
{{ formData.content }}
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="规范附件">
|
|
<!-- <div>
|
|
<div v-for="( item, index ) in formDataannex "
|
|
style="margin-left: 5px;display: block;">
|
|
<a style="margin-left: 10px; color: #4a5dff; align-self: flex-start"
|
|
:href="item.uri" target="_blank">{{ item.name }}</a>
|
|
<span style="cursor: pointer;margin-left: 5px;"
|
|
@click="delFileFn(index)">x</span>
|
|
</div>
|
|
</div> -->
|
|
<annexLink :annex='formData.file'></annexLink>
|
|
|
|
</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 formDataannex = reactive([])
|
|
const datas = reactive({
|
|
provinceOptions: [],
|
|
cityOptions: [],
|
|
areaOptions: [],
|
|
});
|
|
|
|
|
|
// 表单数据
|
|
const formData = reactive({
|
|
|
|
})
|
|
|
|
|
|
|
|
// 获取详情
|
|
const setFormData = async (data: Record<any, any>) => {
|
|
Object.assign(formData, data)
|
|
|
|
|
|
if (data.file && data.file.length > 0) {
|
|
|
|
const arry1 = data.file.map((item: any, index: any) => {
|
|
return {
|
|
name: `文件${index + 1}`,
|
|
uri: item
|
|
};
|
|
});
|
|
Object.assign(formDataannex, arry1)
|
|
|
|
}
|
|
}
|
|
|
|
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>
|