|
@@ -78,7 +78,7 @@
|
|
|
<!-- 子表单区域 -->
|
|
|
<a-tabs v-model:activeKey="activeKey" animated style=" padding: 24px;padding-top: 0px;">
|
|
|
<a-tab-pane tab="其他入库 - 船明细(ship details)" key="otherInShip" :forceRender="true">
|
|
|
- <a-button type="primary" style="margin-right: 1%;margin-bottom: 1%;" @click="selectShip"> 选择船(select ship)</a-button>
|
|
|
+ <a-button type="primary" style="margin-right: 1%;margin-bottom: 1%;" @click="selectShip" :disabled="disabled"> 选择船(select ship)</a-button>
|
|
|
<j-vxe-table
|
|
|
:keep-source="true"
|
|
|
resizable
|
|
@@ -97,7 +97,7 @@
|
|
|
</j-vxe-table>
|
|
|
</a-tab-pane>
|
|
|
<a-tab-pane tab="其他入库 - 入库明细(arrive details)" key="stockIn" :forceRender="true">
|
|
|
- <a-button type="primary" style="margin-right: 1%;margin-bottom: 1%;" @click="selectProductList"> 选择产品(select product)</a-button>
|
|
|
+ <a-button type="primary" style="margin-right: 1%;margin-bottom: 1%;" @click="selectProductList" :disabled="disabled"> 选择产品(select product)</a-button>
|
|
|
<j-vxe-table
|
|
|
:keep-source="true"
|
|
|
resizable
|
|
@@ -112,7 +112,7 @@
|
|
|
asyncRemove
|
|
|
>
|
|
|
<template #action="props">
|
|
|
- <a-popconfirm title="确定删除吗?" @confirm="handleDelete(props)">
|
|
|
+ <a-popconfirm title="确定删除吗?" @confirm="handleDelete(props)" v-if="!disabled">
|
|
|
<a>删除(delete)</a>
|
|
|
</a-popconfirm>
|
|
|
<!-- 逻辑不通暂时取消次功能 -->
|