Commit e724a8cf authored by “lixuyan”'s avatar “lixuyan”

添加物料配套管理

parent 03b68bad
<template> <template>
<div class="stationPlan-maintenance-page"> <div class="stationPlan-maintenance-page">
<dee-tab :tabs="tabItems" :show-swipe="false" :is-detail="false"> <dee-fold-pane
v-if="$route.path==='/dee-mes/material-supporting-management'"
:min-percent="18"
:default-percent="18"
split="vertical"
class="detail-pane"
fold-direction="false"
>
<template slot="paneL">
<div class="three-member-wrap">
<materialSupporting @getMissData="getMissData" />
</div>
</template>
<template slot="paneR">
<div class="resourceTable-wrap">
<missingParts :info="missInfo" />
</div>
</template>
</dee-fold-pane>
<dee-tab v-else :tabs="tabItems" :show-swipe="false" :is-detail="false">
<div slot="0" style="height:100%;box-sizing:border-box"> <div slot="0" style="height:100%;box-sizing:border-box">
<dee-fold-pane <dee-fold-pane
:min-percent="18" :min-percent="18"
...@@ -35,7 +54,6 @@ ...@@ -35,7 +54,6 @@
</dee-tab> </dee-tab>
</div> </div>
</template> </template>
<script> <script>
import { post } from '@/utils/http' import { post } from '@/utils/http'
import searchBar from './searchBar.vue' import searchBar from './searchBar.vue'
...@@ -43,9 +61,10 @@ import station from './station.vue' ...@@ -43,9 +61,10 @@ import station from './station.vue'
import gantt from './gantt.vue' import gantt from './gantt.vue'
import missingParts from './missingParts' import missingParts from './missingParts'
import stationPlanList from './stationPlanList' import stationPlanList from './stationPlanList'
import materialSupporting from './materialSupporting'
export default { export default {
name: 'DeeMesStationPlanMaintenance', name: 'DeeMesStationPlanMaintenance',
components: { searchBar, station, gantt, missingParts, stationPlanList }, components: { searchBar, station, gantt, missingParts, stationPlanList, materialSupporting },
data() { data() {
return { return {
sortiesId: '', sortiesId: '',
......
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