Commit 7317726a authored by danfuman's avatar danfuman

工程项目信息

parent 002433e5
...@@ -705,20 +705,6 @@ export const constantRoutes = [ ...@@ -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: '', // path: '',
......
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
</div> </div>
</template> </template>
<script> <script>
import InfoTable from './component/infoTable'; import InfoTable from '../../../../component/infoTable';
export default { export default {
name: "projectInformation", name: "projectInformation",
components: {InfoTable}, components: {InfoTable},
......
...@@ -8,6 +8,9 @@ ...@@ -8,6 +8,9 @@
<div class="project-cost-ledger-detail-module"> <div class="project-cost-ledger-detail-module">
<!-- 放入组件 v-if current == ‘xxxx’ 详情变量 this.detailInfo 需要深度监听--> <!-- 放入组件 v-if current == ‘xxxx’ 详情变量 this.detailInfo 需要深度监听-->
<!-- 工程项目信息 -->
<engineering-information v-if="current == 'basicEngineeringInformation'"></engineering-information>
<!-- 供料汇总 --> <!-- 供料汇总 -->
<feed-summary v-if="current == 'feedSummary'"></feed-summary> <feed-summary v-if="current == 'feedSummary'"></feed-summary>
...@@ -18,6 +21,8 @@ ...@@ -18,6 +21,8 @@
<script> <script>
import ProjectDetailHeader from "@/views/projectCostLedger/detail/components/ProjectDetailHeader"; import ProjectDetailHeader from "@/views/projectCostLedger/detail/components/ProjectDetailHeader";
import DskTabToggle from "@/components/DskTabToggle"; import DskTabToggle from "@/components/DskTabToggle";
// 工程项目信息
import EngineeringInformation from "@/views/projectCostLedger/detail/components/EngineeringInformation";
// 供料汇总 // 供料汇总
import FeedSummary from "@/views/projectCostLedger/detail/components/FeedSummary"; import FeedSummary from "@/views/projectCostLedger/detail/components/FeedSummary";
import { v4 } from "uuid"; import { v4 } from "uuid";
...@@ -26,7 +31,8 @@ export default { ...@@ -26,7 +31,8 @@ export default {
components: { components: {
ProjectDetailHeader, ProjectDetailHeader,
DskTabToggle, DskTabToggle,
FeedSummary FeedSummary,
EngineeringInformation
}, },
data() { data() {
return { 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