Commit 1b060f987cebf98d026c512ba1f660f46d0201e4
1 parent
cc9dad80
入库单页面问题修复
Signed-off-by: TanYibin <5491541@qq.com>
Showing
2 changed files
with
4 additions
and
7 deletions
ant-design-vue-jeecg/src/views/system/receipt/ReceiptDetailList.vue
1 | -<template> | |
1 | +、<template> | |
2 | 2 | <a-card :bordered="false" :class="'cust-erp-sub-tab'"> |
3 | 3 | <!-- 操作按钮区域 --> |
4 | 4 | <div class="table-operator" v-if="mainId"> |
5 | 5 | <a-button v-has="'receiptDetail:add'" @click="handleAdd" type="primary" icon="plus">新增</a-button> |
6 | 6 | <a-button v-has="'receiptDetail:export'" type="primary" icon="download" @click="handleExportXls('入库单详情')">导出</a-button> |
7 | - <a-button @click="batchPrint()" type="primary">打印</a-button> | |
7 | + <!-- <a-button @click="batchPrint()" type="primary">打印</a-button> --> | |
8 | 8 | <a-upload |
9 | 9 | v-has="'receiptDetail:import'" |
10 | 10 | name="file" |
... | ... | @@ -49,8 +49,6 @@ |
49 | 49 | :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}" |
50 | 50 | @change="handleTableChange"> |
51 | 51 | |
52 | - | |
53 | - | |
54 | 52 | <span slot="status_dictText" slot-scope="status_dictText"> |
55 | 53 | <a-tag :key="status_dictText" :color="getStatusColor(status_dictText)"> |
56 | 54 | {{ status_dictText }} |
... | ... |
ant-design-vue-jeecg/src/views/system/receipt/ReceiptHeaderList.vue
... | ... | @@ -97,11 +97,10 @@ |
97 | 97 | <div class="table-operator"> |
98 | 98 | <a-button v-has="'receiptHeader:add'" @click="handleAdd" type="primary" icon="plus">新增</a-button> |
99 | 99 | <a-button v-has="'receiptHeader:export'" type="primary" icon="download" @click="handleExportXls('入库表主表')">导出</a-button> |
100 | - <a-upload v-has="'receiptHeader:import'" name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" | |
101 | - @change="handleImportExcel"> | |
100 | + <a-upload v-has="'receiptHeader:import'" name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel"> | |
102 | 101 | <a-button type="primary" icon="import">导入</a-button> |
103 | - <a-button v-has="'receiptHeader:print'" @click="batchPrint()" type="primary">打印</a-button> | |
104 | 102 | </a-upload> |
103 | + <a-button v-has="'receiptHeader:print'" @click="batchPrint()" type="primary">打印</a-button> | |
105 | 104 | <j-super-query :fieldList="superFieldList" v-has="'receiptHeader:superQuery'" @handleSuperQuery="handleSuperQuery"/> |
106 | 105 | |
107 | 106 | </div> |
... | ... |