142 lines
3.6 KiB
Vue
142 lines
3.6 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_type_name
|
|
}}
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="科目编码">
|
|
{{ formData.subject_code
|
|
}}
|
|
</el-form-item>
|
|
</el-col> <el-col :span="12">
|
|
<el-form-item label="一级科目">
|
|
{{ formData.first_level_subject }}
|
|
</el-form-item>
|
|
</el-col>
|
|
|
|
<el-col :span="12">
|
|
<el-form-item label="二级科目">
|
|
{{ formData.second_level_subject }}
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="三级科目">
|
|
{{ formData.third_level_subject }}
|
|
</el-form-item>
|
|
</el-col>
|
|
|
|
<el-col :span="12">
|
|
<el-form-item label="单位">
|
|
{{ formData.unit
|
|
}}
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="12">
|
|
<el-form-item label="是否属于差旅科目">
|
|
{{ formData.is_travel == 1 ? '是' : '否' }}
|
|
</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 = () => {
|
|
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>
|