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

站位计划执行页面调整

parent 2e01e64e
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
:label="item.name" :label="item.name"
:disabled="disabled" :disabled="disabled"
:name="(index+1)+''" :name="(index+1)+''"
:lazy="true" :lazy="isLazy"
> >
<!-- <el-scrollbar class="scroll_dee_tab"> --> <!-- <el-scrollbar class="scroll_dee_tab"> -->
<span v-if="item.id" slot="label" @dblclick="dblclickTab(item)"><img :src="item.icon" class="imgStyle" alt=""><span>{{ item.name }}</span></span> <span v-if="item.id" slot="label" @dblclick="dblclickTab(item)"><img :src="item.icon" class="imgStyle" alt=""><span>{{ item.name }}</span></span>
...@@ -221,6 +221,12 @@ export default { ...@@ -221,6 +221,12 @@ export default {
defaultActiveName: { defaultActiveName: {
type: String, type: String,
default: () => '' default: () => ''
},
isLazy: {
type: Boolean,
default: function() {
return true
}
} }
}, },
data() { data() {
......
...@@ -4,18 +4,19 @@ ...@@ -4,18 +4,19 @@
<div slot="0" style="height:100%;box-sizing:border-box"> <div slot="0" style="height:100%;box-sizing:border-box">
<split-pane <split-pane
:min-percent="18" :min-percent="18"
:default-percent="78" :default-percent="85"
split="vertical" split="vertical"
class="detail-pane" class="detail-pane"
> >
<template slot="paneL"> <template slot="paneL">
<div class="three-member-wrap"> <div class="three-member-wrap">
<dee-as-com <!-- <dee-as-com
ref="detailCom" ref="detailCom"
:key="layConfig.typeName" :key="layConfig.typeName"
:lay-config="layConfig" :lay-config="layConfig"
@row-click="rowClick" @row-click="rowClick"
/> /> -->
<stationPlanList @getMissData="getMissData" />
</div> </div>
</template> </template>
<template slot="paneR"> <template slot="paneR">
...@@ -40,9 +41,10 @@ import searchBar from './searchBar.vue' ...@@ -40,9 +41,10 @@ import searchBar from './searchBar.vue'
import station from './station.vue' 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'
export default { export default {
name: 'StationPlanMaintenance', name: 'StationPlanMaintenance',
components: { searchBar, station, gantt, missingParts }, components: { searchBar, station, gantt, missingParts, stationPlanList },
data() { data() {
return { return {
sortiesId: '', sortiesId: '',
...@@ -98,7 +100,7 @@ export default { ...@@ -98,7 +100,7 @@ export default {
}, },
methods: { methods: {
rowClick(data) { getMissData(data) {
this.rowData = data this.rowData = data
this.getMissInfo(data.row.extProcessPlan) this.getMissInfo(data.row.extProcessPlan)
}, },
......
<template> <template>
<div class="missing-parts"> <div class="missing-parts">
<div class="search-box"> <!-- <div class="search-box">
<div class="title">生产准备符合项</div> <div class="title">生产准备符合项</div>
<div class="num">{{ detailInfo.leftItem }}/<span class="blue">{{ detailInfo.rightItem }} </span></div> <div class="num">{{ detailInfo.leftItem }}/<span class="blue">{{ detailInfo.rightItem }} </span></div>
</div> </div> -->
<div class=""> <div class="">
<h4>缺件信息列表</h4> <h4>缺件信息列表</h4>
<el-table <el-table
......
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