|
@@ -5,13 +5,14 @@
|
|
|
<template slot="subTitle" v-if="!outBizSubSn&&!bizSn">
|
|
|
<a href="javascript:;" @click="handleBack"><a-icon type="left"></a-icon> 返回列表</a>
|
|
|
</template>
|
|
|
- <template slot="extra" v-if="$hasPermissions('B_dispatchPrint')">
|
|
|
+ <template slot="extra">
|
|
|
<a-button
|
|
|
key="3"
|
|
|
type="primary"
|
|
|
class="button-info"
|
|
|
id="purchaseOrderDetail-export-btn"
|
|
|
:disabled="localDataSource.length==0"
|
|
|
+ v-if="$hasPermissions('B_dispatchExport')"
|
|
|
@click="openExcelModal=true">导出Excel</a-button>
|
|
|
<a-divider type="vertical" />
|
|
|
<a-button
|
|
@@ -20,6 +21,7 @@
|
|
|
class="button-info"
|
|
|
id="salesDetail-fhdy-print-btn"
|
|
|
:disabled="localDataSource.length==0"
|
|
|
+ v-if="$hasPermissions('B_dispatchPrint')"
|
|
|
@click="handlePrint('DISPATCH_BILL')">发货打印</a-button>
|
|
|
<a-button
|
|
|
key="1"
|
|
@@ -27,6 +29,7 @@
|
|
|
class="button-info"
|
|
|
id="salesDetail-fhfl-print-btn"
|
|
|
:disabled="localDataSource.length==0"
|
|
|
+ v-if="$hasPermissions('B_dispatchTypePrint')"
|
|
|
@click="handlePrint('DISPATCH_BILL_TYPE')">发货分类打印</a-button>
|
|
|
</template>
|
|
|
</a-page-header>
|