Commit 7317726a authored by danfuman's avatar danfuman

工程项目信息

parent 002433e5
......@@ -705,20 +705,6 @@ export const constantRoutes = [
}
]
},
{
path: '/projectCostLedger',
component: Layout,
hidden: true,
redirect: 'noredirect',
children: [
{
path: '/projectCostLedger/projectInformation/:id',
component: () => import('@/views/projectCostLedger/projectInformation'),
name: 'projectInformation',
meta: { title: '项目成本台账详情', icon: 'radar' }
}
]
},
// 子系统
// {
// path: '',
......
......@@ -43,7 +43,7 @@
</div>
</template>
<script>
import InfoTable from './component/infoTable';
import InfoTable from '../../../../component/infoTable';
export default {
name: "projectInformation",
components: {InfoTable},
......
......@@ -8,6 +8,9 @@
<div class="project-cost-ledger-detail-module">
<!-- 放入组件 v-if current == ‘xxxx’ 详情变量 this.detailInfo 需要深度监听-->
<!-- 工程项目信息 -->
<engineering-information v-if="current == 'basicEngineeringInformation'"></engineering-information>
<!-- 供料汇总 -->
<feed-summary v-if="current == 'feedSummary'"></feed-summary>
......@@ -18,6 +21,8 @@
<script>
import ProjectDetailHeader from "@/views/projectCostLedger/detail/components/ProjectDetailHeader";
import DskTabToggle from "@/components/DskTabToggle";
// 工程项目信息
import EngineeringInformation from "@/views/projectCostLedger/detail/components/EngineeringInformation";
// 供料汇总
import FeedSummary from "@/views/projectCostLedger/detail/components/FeedSummary";
import { v4 } from "uuid";
......@@ -26,7 +31,8 @@ export default {
components: {
ProjectDetailHeader,
DskTabToggle,
FeedSummary
FeedSummary,
EngineeringInformation
},
data() {
return {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment