2025-06-25 19:09:52 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<el-card class="hl-card" style="position: relative">
|
|
|
|
|
|
<template #header>
|
|
|
|
|
|
<span>详情页</span>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<el-form ref="formRef" :model="formData" label-width="160px" v-loading="formLoading">
|
|
|
|
|
|
<!-- 基础信息 -->
|
|
|
|
|
|
<el-card class="hl-card-info">
|
|
|
|
|
|
<template #header>
|
|
|
|
|
|
<div class="hl-card-info-icona"></div><span class="hl-card-info-text">基础信息</span>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
|
<el-row>
|
|
|
|
|
|
|
|
|
|
|
|
<el-col :span="6">
|
|
|
|
|
|
<el-row>
|
|
|
|
|
|
<el-col :span="24">
|
|
|
|
|
|
<el-form-item label="需求计划号" prop="projectMaterialPlanNo">
|
|
|
|
|
|
<el-input class="!w-300px" placeholder="系统自动生成" v-model="formData.projectMaterialPlanNo" disabled />
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
<el-col :span="6">
|
|
|
|
|
|
<el-form-item label="单据日期" prop="matPlanDate">
|
|
|
|
|
|
<el-date-picker
|
|
|
|
|
|
v-model="formData.matPlanDate"
|
|
|
|
|
|
type="date"
|
|
|
|
|
|
value-format="x"
|
|
|
|
|
|
placeholder="单据日期"
|
|
|
|
|
|
disabled
|
|
|
|
|
|
/>
|
|
|
|
|
|
</el-form-item>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 需求单信息 -->
|
|
|
|
|
|
<el-card class="hl-card-info">
|
|
|
|
|
|
<template #header>
|
|
|
|
|
|
<div class="hl-card-info-icona"></div><span class="hl-card-info-text">需求单信息</span>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<el-row>
|
|
|
|
|
|
<el-col>
|
|
|
|
|
|
<el-card class="hl-incard">
|
|
|
|
|
|
<el-table :data="formData.matBoomDOList" class="hl-table" v-loading="loading">
|
|
|
|
|
|
<el-table-column type="index" label="序号" fixed align="center" min-width="60" />
|
|
|
|
|
|
<el-table-column prop="matCode" min-width="200" label="物料编码" align="center"/>
|
|
|
|
|
|
<el-table-column prop="matName" min-width="200" label="物料名称" align="center"/>
|
|
|
|
|
|
<el-table-column prop="matSpec" min-width="120" label="规格型号" align="center"/>
|
|
|
|
|
|
<el-table-column prop="matUnit" label="系统单位">
|
|
|
|
|
|
<template #default="scope">
|
|
|
|
|
|
<dict-tag
|
|
|
|
|
|
:type="DICT_TYPE.HELI_MATERIAL_UNIT"
|
|
|
|
|
|
:value="scope.row.matUnit"
|
|
|
|
|
|
/>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
<el-table-column prop="boomAmount" min-width="100" label="需求数量" align="center"/>
|
|
|
|
|
|
</el-table>
|
|
|
|
|
|
<Pagination :total="total" v-model:page="queryParams.pageNo" v-model:limit="queryParams.pageSize"
|
|
|
|
|
|
@pagination="getList" />
|
|
|
|
|
|
</el-card>
|
|
|
|
|
|
</el-col>
|
|
|
|
|
|
</el-row>
|
|
|
|
|
|
</el-card>
|
|
|
|
|
|
</el-form>
|
|
|
|
|
|
<div class="hl-footer text-center">
|
|
|
|
|
|
<el-button @click="closeForm" size="large">取 消</el-button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</el-card>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 表单弹窗:物料列表 -->
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
|
import { DICT_TYPE } from '@/utils/dict'
|
|
|
|
|
|
import * as MaterialPlanApi from '@/api/heli/materialplan'
|
|
|
|
|
|
import * as MaterialPlanBoomApi from '@/api/heli/materialplanboom'
|
|
|
|
|
|
|
|
|
|
|
|
import * as UserApi from '@/api/system/user'
|
|
|
|
|
|
|
|
|
|
|
|
import { useTagsViewStore } from '@/store/modules/tagsView'
|
|
|
|
|
|
|
|
|
|
|
|
const reload: any = inject('reload')
|
|
|
|
|
|
const { t } = useI18n() // 国际化
|
|
|
|
|
|
const message = useMessage() // 消息弹窗
|
|
|
|
|
|
const { query } = useRoute()
|
|
|
|
|
|
const router = useRouter()
|
|
|
|
|
|
const tagsViewStore = useTagsViewStore()
|
|
|
|
|
|
const dialogVisible = ref(false) // 弹窗的是否展示
|
|
|
|
|
|
const formLoading = ref(false) // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
|
|
|
|
|
|
const formData = ref({
|
|
|
|
|
|
id: undefined,
|
|
|
|
|
|
projectMaterialPlanNo: undefined,
|
|
|
|
|
|
projectId: undefined,
|
|
|
|
|
|
projectPlanId: undefined,
|
|
|
|
|
|
projectPlanNo: undefined,
|
|
|
|
|
|
projectCode: undefined,
|
|
|
|
|
|
auditor: undefined,
|
|
|
|
|
|
createTime: new Date(),
|
|
|
|
|
|
status: undefined,
|
|
|
|
|
|
description: undefined,
|
|
|
|
|
|
boomItemDOList: [],
|
|
|
|
|
|
boomItemRemoveList: [],
|
|
|
|
|
|
matBoomDOList: [],
|
|
|
|
|
|
matItemRemoveList: [],
|
|
|
|
|
|
attachments: [],
|
|
|
|
|
|
matPlanDate:undefined
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
const formRef = ref() // 表单 Ref
|
|
|
|
|
|
const subFormRef = ref() // 表单 Ref
|
|
|
|
|
|
const loading = ref(true) // 列表的加载中
|
|
|
|
|
|
const total = ref(0) // 列表的总页数
|
|
|
|
|
|
const subBoomFormLoading = ref(false)
|
|
|
|
|
|
const subBoomFormRef = ref()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const closeForm = async () => {
|
2025-07-01 17:55:06 +08:00
|
|
|
|
router.push({ path: '/purchase/supplementManagement' ,query: { ...query }})
|
2025-06-25 19:09:52 +08:00
|
|
|
|
tagsViewStore.delVisitedView(router.currentRoute.value)
|
|
|
|
|
|
}
|
|
|
|
|
|
const userList = ref<UserApi.UserVO[]>([]) // 用户列表
|
|
|
|
|
|
|
|
|
|
|
|
const queryParams = reactive({
|
|
|
|
|
|
pageNo: 1,
|
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
|
projectMaterialPlanId: query.id
|
|
|
|
|
|
})
|
|
|
|
|
|
// 页面数据加载初始化
|
|
|
|
|
|
onMounted(async () => {
|
|
|
|
|
|
// 获取物料需求计划信息
|
|
|
|
|
|
formData.value = await MaterialPlanApi.getMaterialPlan(query.id)
|
|
|
|
|
|
getList();
|
|
|
|
|
|
})
|
|
|
|
|
|
const getList = async () => {
|
|
|
|
|
|
loading.value = true
|
|
|
|
|
|
try {
|
|
|
|
|
|
const data = await MaterialPlanBoomApi.getMaterialPlanBoomPages(queryParams)
|
|
|
|
|
|
formData.value.matBoomDOList = data.list
|
|
|
|
|
|
total.value = data.total
|
|
|
|
|
|
} finally {
|
|
|
|
|
|
loading.value = false
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
</script>
|