177 lines
5.5 KiB
Vue
177 lines
5.5 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.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.material_budget_code }}</el-descriptions-item>
|
|
<el-descriptions-item label="备注" label-align="left" align="left" label-class-name="my-label"> {{ formData.remark
|
|
}}</el-descriptions-item>
|
|
|
|
|
|
<el-descriptions-item label="附件" label-align="left" align="left" label-class-name="my-label">
|
|
<div v-if="formData.annex.length > 0">
|
|
<div v-for="(item, index) in formData.annex" style="margin-left: 5px;display: block;">
|
|
<el-link style="margin-left: 10px; color: #4a5dff; align-self: flex-start" :href="item" target="_blank">文件{{ index + 1 }}查看</el-link>
|
|
|
|
</div>
|
|
</div>
|
|
<div v-else>
|
|
暂无附件
|
|
</div>
|
|
</el-descriptions-item>
|
|
</el-descriptions>
|
|
|
|
<div>
|
|
<el-table :data="tableData" stripe style="width: 100%">
|
|
<el-table-column label="类型" prop='budget_type' width="180" />
|
|
<el-table-column label="材料大类" prop='material_first_level' width="180" />
|
|
<el-table-column label="材料名称" prop='material_name' />
|
|
<el-table-column label="材料编码" prop='material_code' />
|
|
<el-table-column label="规格型号" prop='material_specs' />
|
|
|
|
<el-table-column label="品牌" prop='material_brand' />
|
|
<el-table-column label="参数说明" prop='material_parameter_description' width="200px" />
|
|
<el-table-column label="单位" prop='material_unit' />
|
|
<el-table-column label="数量" prop='num' />
|
|
<el-table-column label="单价" prop='price' />
|
|
<el-table-column label="金额" prop='amount' />
|
|
<el-table-column label="备注" prop='remark' />
|
|
</el-table>
|
|
</div>
|
|
<div style="margin: 10px 0;">
|
|
<el-pagination v-model:current-page="pager1.page_no" v-model:page-size="pager1.page_size" :page-sizes="[10, 20, 30, 40]" layout="total, sizes, prev, pager, next, jumper" :total="total" @size-change="handleSizeChange1" @current-change="handleCurrentChange1" />
|
|
</div>
|
|
</popup>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup name="customdetail">
|
|
import { MaterialbudgetDetailLists } from '@/api/project_material_budget_detail'
|
|
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 pager1 = reactive({
|
|
page_size: 10,
|
|
page_no: 1,
|
|
customer_demand_id: ""
|
|
})
|
|
const total = ref(0)
|
|
const datas = reactive({
|
|
provinceOptions: [],
|
|
cityOptions: [],
|
|
areaOptions: [],
|
|
});
|
|
|
|
const tableData = ref([])
|
|
// 表单数据
|
|
const formData = reactive({
|
|
|
|
})
|
|
|
|
//条数
|
|
const handleSizeChange1 = (val: number) => {
|
|
|
|
pager1.page_size = val
|
|
budgetDetailLists(formData.id)
|
|
}
|
|
|
|
//分页
|
|
const handleCurrentChange1 = (val: number) => {
|
|
console.log(`current page: ${val}`)
|
|
pager1.page_no = val
|
|
budgetDetailLists(formData.id)
|
|
}
|
|
|
|
//获取预算明细列表
|
|
const budgetDetailLists = (id) => {
|
|
MaterialbudgetDetailLists({ 'page_no': pager1.page_no, 'page_size': pager1.page_size, material_budget_id: id }).then((res) => {
|
|
tableData.value = res.lists
|
|
total.value = res.count
|
|
})
|
|
|
|
}
|
|
|
|
// 获取详情
|
|
const setFormData = async (data: Record<any, any>) => {
|
|
Object.assign(formData, data)
|
|
budgetDetailLists(data.id)
|
|
if (data.annex && data.annex.length > 0) {
|
|
|
|
const arry1 = data.annex.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 = () => {
|
|
console.log('1111111')
|
|
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>
|