Commit f5df9180 authored by jingnan's avatar jingnan 👀

AO标识维护的批量签审里面左侧需要去掉

parent 8e561b4c
......@@ -13,7 +13,7 @@
</div>
<div class="table">
<div>
<div>
<div class="dee-table">
<el-table
ref="table"
:data="tableData"
......@@ -63,6 +63,13 @@
:width="120"
sortable
/>
<el-table-column
prop="positionNumber"
align="center"
label="站位"
:width="120"
sortable
/>
<el-table-column
prop="firstCheckFlag"
align="center"
......@@ -157,7 +164,7 @@
/>
</div>
<div>
<div>
<div class="dee-table">
<el-table
:data="workProcedureData"
height="100%"
......@@ -294,6 +301,7 @@ export default {
created() {
this.jurisdId = this.$route.query.taskDefinitionKey
this.getTools()
this.getSearchTableData()
},
mounted() {
this.$bus.$on('getPlanData', (data, level) => {
......@@ -589,16 +597,16 @@ export default {
pageSize: this.tablePagination.pageSize,
searchItems: {
children: [
{
items: [
{
fieldName: 'sorties',
operator: 'EQ',
value: data.serialNo
}
],
operator: 'AND'
},
// {
// items: [
// {
// fieldName: 'sorties',
// operator: 'EQ',
// value: data.serialNo
// }
// ],
// operator: 'AND'
// },
{
'items': [
{
......@@ -625,14 +633,14 @@ export default {
}
]
}
if (level === 2) {
params.searchItems.children[0].items.push(
{
fieldName: 'positionNumber',
operator: 'EQ',
value: data.title
})
}
// if (level === 2) {
// params.searchItems.children[0].items.push(
// {
// fieldName: 'positionNumber',
// operator: 'EQ',
// value: data.title
// })
// }
post('/ExtProcessPlan/searchBatchExamineAo?taskDefinitionKey=' + this.$route.query.taskDefinitionKey, params)
.then((res) => {
if (res && res.items && res.items.content) {
......@@ -644,7 +652,8 @@ export default {
number: p.pbo.serialNumber,
name: p.pbo.name,
gaceVersion: p.pbo.gaceVersion,
sorties: data.serialNo,
sorties: p.pbo.sorties,
positionNumber: p.pbo.positionNumber,
firstCheckFlag: p.pbo.firstCheckFlag,
firstCheckFlagSelect: false,
workHour: p.pbo.workHour,
......
<template>
<section v-loading="instructionIdentificationShow" class="single-sortie-instruction-identification">
<dee-fold-pane :min-percent="18" :default-percent="18" split="vertical" class="detail-pane">
<!-- <dee-fold-pane :min-percent="18" :default-percent="18" split="vertical" class="detail-pane">
<template slot="paneL">
<div class="left">
<left
......@@ -10,22 +10,22 @@
/>
</div>
</template>
<template slot="paneR">
<div class="right">
<right ref="right" />
</div>
</template>
</dee-fold-pane>
<template slot="paneR"> -->
<div class="right">
<right ref="right" />
</div>
<!-- </template>
</dee-fold-pane> -->
</section>
</template>
<script>
import left from './components/left/index'
// import left from './components/left/index'
import right from './components/right/index'
export default {
components: {
left,
// left,
right
},
data() {
......@@ -82,21 +82,21 @@ export default {
</script>
<style lang="scss" >
.single-sortie-instruction-identification {
display: flex;
// display: flex;
height: 100%;
.detail-pane{
width: 100%;
.left{
height: 100%;
overflow-x: hidden;
}
// .detail-pane{
// width: 100%;
// .left{
// height: 100%;
// overflow-x: hidden;
// }
.right {
height: 100%;
.table {
margin-top: 0;
}
}
}
// }
}
</style>
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