|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
<template>
|
|
|
|
|
<a-modal
|
|
|
|
|
title="BC引入编辑"
|
|
|
|
|
:width="1500"
|
|
|
|
|
:width="1700"
|
|
|
|
|
:visible="visible"
|
|
|
|
|
:confirmLoading="confirmLoading"
|
|
|
|
|
:maskClosable="false"
|
|
|
|
@ -11,7 +11,7 @@
|
|
|
|
|
<a-spin :spinning="formLoading">
|
|
|
|
|
<a-button type="primary" @click="handleSubimt">确认引入</a-button>
|
|
|
|
|
<a-button style="margin-left: 20px;" type="primary" @click="handleCan(1)">取消</a-button>
|
|
|
|
|
<a-button style="margin-left: 570px;" type="primary" @click="handleCan(2)">取消</a-button>
|
|
|
|
|
<a-button style="margin-left: 670px;" type="primary" @click="handleCan(2)">取消</a-button>
|
|
|
|
|
<a-button style="margin-left: 20px;" type="primary" @click="visible2 = true">引入</a-button>
|
|
|
|
|
<div class="box">
|
|
|
|
|
<div class="left">
|
|
|
|
@ -25,8 +25,11 @@
|
|
|
|
|
<div v-if="row">{{ row }} <a-icon style="color: red;" type="close" @click="handleClose(index, 1)" /></div>
|
|
|
|
|
<a v-else @click="handleZD(1, index)">指定</a>
|
|
|
|
|
</span>
|
|
|
|
|
<span slot="cutSingleTime" slot-scope="row,record">
|
|
|
|
|
{{ record.cutSingleTime?record.cutSingleTime.slice(0,13):'' }}
|
|
|
|
|
</span>
|
|
|
|
|
<span slot="vessel" slot-scope="row,record">
|
|
|
|
|
{{ record.vessel }} / {{ record.voyNo }}
|
|
|
|
|
{{ record.vessel }}/{{ record.voyNo }}
|
|
|
|
|
</span>
|
|
|
|
|
</a-table>
|
|
|
|
|
</div>
|
|
|
|
@ -41,8 +44,11 @@
|
|
|
|
|
<div v-if="row">{{ row }}<a-icon style="color: red;" type="close" @click="handleClose(index, 2)" /></div>
|
|
|
|
|
<a v-else @click="handleZD(2, index)">指定</a>
|
|
|
|
|
</span>
|
|
|
|
|
<span slot="cutSingleTime" slot-scope="row,record">
|
|
|
|
|
{{ record.cutSingleTime?record.cutSingleTime.slice(0,13):'' }}
|
|
|
|
|
</span>
|
|
|
|
|
<span slot="vessel" slot-scope="row,record">
|
|
|
|
|
{{ record.vessel }} / {{ record.voyno }}
|
|
|
|
|
{{ record.vessel }}/{{ record.voyno }}
|
|
|
|
|
</span>
|
|
|
|
|
</a-table>
|
|
|
|
|
</div>
|
|
|
|
@ -60,7 +66,10 @@
|
|
|
|
|
<a v-if="!record.bcIndx" @click="handleSelectRow(record)">选择</a>
|
|
|
|
|
</span>
|
|
|
|
|
<span slot="vessel" slot-scope="row,record">
|
|
|
|
|
{{ record.vessel }} / {{ record.voyNo }}
|
|
|
|
|
{{ record.vessel }}/{{ record.voyNo }}
|
|
|
|
|
</span>
|
|
|
|
|
<span slot="cutSingleTime" slot-scope="row,record">
|
|
|
|
|
{{ record.cutSingleTime?record.cutSingleTime.slice(0,13):'' }}
|
|
|
|
|
</span>
|
|
|
|
|
<span slot="operat" slot-scope="row">
|
|
|
|
|
<div v-if="row">{{ row }} </div>
|
|
|
|
@ -71,7 +80,7 @@
|
|
|
|
|
<a v-if="!record.bkOrderIndx" @click="handleSelectRow(record)">选择</a>
|
|
|
|
|
</span>
|
|
|
|
|
<span slot="vessel" slot-scope="row,record">
|
|
|
|
|
{{ record.vessel }} / {{ record.voyNo }}
|
|
|
|
|
{{ record.vessel }}/{{ record.voyNo }}
|
|
|
|
|
</span>
|
|
|
|
|
<span slot="operat" slot-scope="row">
|
|
|
|
|
<div v-if="row">{{ row }} </div>
|
|
|
|
@ -184,18 +193,19 @@ export default {
|
|
|
|
|
title: '船名航次',
|
|
|
|
|
dataIndex: 'vessel',
|
|
|
|
|
scopedSlots: { customRender: 'vessel' },
|
|
|
|
|
width: 150
|
|
|
|
|
width: 200
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '截单时间',
|
|
|
|
|
dataIndex: 'cutSingleTime',
|
|
|
|
|
width: 130
|
|
|
|
|
scopedSlots: { customRender: 'cutSingleTime' },
|
|
|
|
|
width: 100
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '关联订舱',
|
|
|
|
|
dataIndex: 'bkOrderIndx',
|
|
|
|
|
scopedSlots: { customRender: 'operat' },
|
|
|
|
|
width: 80,
|
|
|
|
|
width: 70,
|
|
|
|
|
align: 'center'
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
@ -214,18 +224,19 @@ export default {
|
|
|
|
|
title: '船名航次',
|
|
|
|
|
dataIndex: 'vessel',
|
|
|
|
|
scopedSlots: { customRender: 'vessel' },
|
|
|
|
|
width: 150
|
|
|
|
|
width: 200
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '截单时间',
|
|
|
|
|
dataIndex: 'cutSingleTime',
|
|
|
|
|
width: 130
|
|
|
|
|
scopedSlots: { customRender: 'cutSingleTime' },
|
|
|
|
|
width: 100
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '关联BC',
|
|
|
|
|
dataIndex: 'bcIndx',
|
|
|
|
|
scopedSlots: { customRender: 'operat' },
|
|
|
|
|
width: 80,
|
|
|
|
|
width: 70,
|
|
|
|
|
align: 'center'
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|