165 lines
6.2 KiB
Vue
165 lines
6.2 KiB
Vue
![]() |
<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="projectName">
|
|||
|
<el-input class="!w-300px" placeholder="项目名称" v-model="formData.projectName" disabled />
|
|||
|
</el-form-item>
|
|||
|
</el-col>
|
|||
|
<el-col :span="6">
|
|||
|
<el-form-item label="子项目名称" prop="name">
|
|||
|
<el-input class="!w-300px" placeholder="项目名称" v-model="formData.name" 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="matName" min-width="200" label="物料名称" align="center"/>
|
|||
|
<el-table-column prop="nickname" min-width="120" label="责任人" align="center"/>
|
|||
|
<el-table-column prop="boomAmount" min-width="100" label="需求数量" align="center"/>
|
|||
|
<el-table-column prop="boomArriveDate" min-width="200" label="需求到货日期" align="center" :formatter="dateFormatter1"/>
|
|||
|
<el-table-column prop="boomSpec" min-width="200" label="规格类型" align="center"/>
|
|||
|
<el-table-column prop="mplanStatus" min-width="100" label="需求状态" align="center">
|
|||
|
<template #default="scope">
|
|||
|
<dict-tag :type="DICT_TYPE.HELI_PROJECT_MATERIAL_PLAN_BOOM_STATUS" :value="scope.row.mplanStatus" />
|
|||
|
</template>
|
|||
|
</el-table-column>
|
|||
|
<el-table-column prop="description" min-width="200" 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 { getIntDictOptions, DICT_TYPE } from '@/utils/dict'
|
|||
|
import * as MaterialPlanApi from '@/api/heli/materialplan'
|
|||
|
import * as MaterialPlanDetailApi from '@/api/heli/materialplandetail'
|
|||
|
import * as MaterialPlanBoomApi from '@/api/heli/materialplanboom'
|
|||
|
import type { UploadUserFile } from 'element-plus'
|
|||
|
import * as PlanApi from '@/api/heli/plan'
|
|||
|
import * as PlanSubApi from '@/api/heli/plansub'
|
|||
|
import * as ProjectOrderApi from '@/api/heli/projectorder'
|
|||
|
import * as UserApi from '@/api/system/user'
|
|||
|
import * as MaterialApi from '@/api/heli/material'
|
|||
|
import { deleteFile, downloadFile, getFilePage } from '@/api/infra/file'
|
|||
|
import download from '@/utils/download'
|
|||
|
import { getAccessToken, getTenantId } from '@/utils/auth'
|
|||
|
import {dateFormatter, dateFormatter1, formatDate} from '@/utils/formatTime'
|
|||
|
import { useUserStore } from '@/store/modules/user'
|
|||
|
import { useTagsViewStore } from '@/store/modules/tagsView'
|
|||
|
import MaterialSelect from '@/views/heli/hlvuestyle/materialSelect.vue'
|
|||
|
import booms from './boom.vue'
|
|||
|
|
|||
|
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: []
|
|||
|
})
|
|||
|
|
|||
|
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 () => {
|
|||
|
router.push({ path: '/purchase/management' })
|
|||
|
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>
|