|
@@ -118,18 +118,18 @@
|
|
|
<a-button
|
|
|
size="small"
|
|
|
type="link"
|
|
|
- v-else-if="record.state == 'WAIT_PUT_WAREHOUSE'"
|
|
|
+ v-if="record.state == 'WAIT_PUT_WAREHOUSE'"
|
|
|
@click="handleWarehouse(record)"
|
|
|
class="button-warning"
|
|
|
id="bulkWarehousingOrderList-warehouse-btn">入库</a-button>
|
|
|
<a-button
|
|
|
size="small"
|
|
|
type="link"
|
|
|
- v-else-if="record.state != 'FINISH'"
|
|
|
+ v-if="record.state != 'FINISH'"
|
|
|
@click="handleDel(record)"
|
|
|
class="button-error"
|
|
|
id="bulkWarehousingOrderList-del-btn">删除</a-button>
|
|
|
- <span v-else>--</span>
|
|
|
+ <span v-if="(record.state == 'FINISH') && (record.state != 'WAIT_PUT_WAREHOUSE')">--</span>
|
|
|
</template>
|
|
|
</s-table>
|
|
|
<!-- 选择基本信息弹框 -->
|